head 1.3; access; symbols pkgsrc-2015Q1:1.2.0.40 pkgsrc-2015Q1-base:1.2 pkgsrc-2014Q4:1.2.0.38 pkgsrc-2014Q4-base:1.2 pkgsrc-2014Q3:1.2.0.36 pkgsrc-2014Q3-base:1.2 pkgsrc-2014Q2:1.2.0.34 pkgsrc-2014Q2-base:1.2 pkgsrc-2014Q1:1.2.0.32 pkgsrc-2014Q1-base:1.2 pkgsrc-2013Q4:1.2.0.30 pkgsrc-2013Q4-base:1.2 pkgsrc-2013Q3:1.2.0.28 pkgsrc-2013Q3-base:1.2 pkgsrc-2013Q2:1.2.0.26 pkgsrc-2013Q2-base:1.2 pkgsrc-2013Q1:1.2.0.24 pkgsrc-2013Q1-base:1.2 pkgsrc-2012Q4:1.2.0.22 pkgsrc-2012Q4-base:1.2 pkgsrc-2012Q3:1.2.0.20 pkgsrc-2012Q3-base:1.2 pkgsrc-2012Q2:1.2.0.18 pkgsrc-2012Q2-base:1.2 pkgsrc-2012Q1:1.2.0.16 pkgsrc-2012Q1-base:1.2 pkgsrc-2011Q4:1.2.0.14 pkgsrc-2011Q4-base:1.2 pkgsrc-2011Q3:1.2.0.12 pkgsrc-2011Q3-base:1.2 pkgsrc-2011Q2:1.2.0.10 pkgsrc-2011Q2-base:1.2 pkgsrc-2011Q1:1.2.0.8 pkgsrc-2011Q1-base:1.2 pkgsrc-2010Q4:1.2.0.6 pkgsrc-2010Q4-base:1.2 pkgsrc-2010Q3:1.2.0.4 pkgsrc-2010Q3-base:1.2 pkgsrc-2010Q2:1.2.0.2 pkgsrc-2010Q2-base:1.2; locks; strict; comment @# @; 1.3 date 2015.05.23.15.59.14; author kefren; state dead; branches; next 1.2; commitid 9eeoci4etDPaqAmy; 1.2 date 2010.04.17.17.11.05; author kefren; state Exp; branches; next 1.1; 1.1 date 2010.04.16.10.44.20; author kefren; state Exp; branches; next ; desc @@ 1.3 log @Update to 5.0.1 - the latest compilable version until we get nuget and a newer nunit in pkgsrc Probably still needs a lot of love. @ text @$NetBSD: patch-ad,v 1.2 2010/04/17 17:11:05 kefren Exp $ --- tests/UnitTests/MonoDevelop.Projects/PackagingTests.cs.orig 2010-04-16 12:52:26.000000000 +0300 +++ tests/UnitTests/MonoDevelop.Projects/PackagingTests.cs 2010-04-16 12:52:40.000000000 +0300 @@@@ -248,10 +248,10 @@@@ namespace MonoDevelop.Deployment if (!Exec (Path.Combine (tarDir, "configure"), "--prefix=" + prefix, tarDir)) Assert.Fail ("Configure script failed"); - if (!Exec ("make", "all", tarDir)) + if (!Exec ("MAKEPROGRAM", "all", tarDir)) Assert.Fail ("Build failed"); - if (!Exec ("make", "install", tarDir)) + if (!Exec ("MAKEPROGRAM", "install", tarDir)) Assert.Fail ("Install failed"); CheckDirContents (prefix, expectedFiles); @ 1.2 log @Use ${MAKE_PROGRAM} instead of hardcoding gmake. The latter will cause problems on linux systems. Bump PKGREVISION. Noticed by Tobias Nygren @ text @d1 1 a1 1 $NetBSD: patch-ad,v 1.1 2010/04/16 10:44:20 kefren Exp $ @ 1.1 log @Make it use GNU make as it expects Bump PKGREVISION @ text @d1 1 a1 1 $NetBSD$ d9 1 a9 1 + if (!Exec ("gmake", "all", tarDir)) d13 1 a13 1 + if (!Exec ("gmake", "install", tarDir)) @