diff options
Diffstat (limited to 'lang/mono/Makefile')
-rw-r--r-- | lang/mono/Makefile | 47 |
1 files changed, 3 insertions, 44 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index ca7f8fe13f4..4db5dbaf459 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.28 2004/07/13 14:45:33 recht Exp $ +# $NetBSD: Makefile,v 1.29 2004/08/27 22:02:47 recht Exp $ # -DISTNAME= mono-1.0 -PKGREVISION= 1 +DISTNAME= mono-1.0.1 CATEGORIES= lang -MASTER_SITES= http://mono2.ximian.com/archive/1.0/ +MASTER_SITES= http://www.go-mono.com/archive/1.0.1/ MAINTAINER= recht@NetBSD.org HOMEPAGE= http://www.mono-project.com/ @@ -18,8 +17,6 @@ CONFLICTS= pnet-[0-9]* NOT_FOR_PLATFORM= NetBSD-1.[0-5]*-* NOT_FOR_PLATFORM+= NetBSD-1.6-* NetBSD-1.6.*-* NOT_FOR_PLATFORM+= NetBSD-1.6[A-Z]-* NetBSD-1.6Z[AB]-* -# boehm-gc doesn't build on amd64/x86_64 -NOT_FOR_PLATFORM+= FreeBSD-*-amd64 FreeBSD-*-x86_64 USE_GNU_TOOLS+= make yacc USE_BUILDLINK3= yes @@ -52,51 +49,13 @@ CONF_FILES+= ${EGDIR}/machine.config ${PKG_SYSCONFDIR}/machine.config CONF_FILES+= ${EGDIR}/DefaultWsdlHelpGenerator.aspx \ ${PKG_SYSCONFDIR}/DefaultWsdlHelpGenerator.aspx -#DEINSTALL_EXTRA_TMPL= ${PKGDIR}/DEINSTALL - .include "../../mk/bsd.prefs.mk" -.if ${OPSYS} == "Linux" -. if defined(MONO_USE_NPTL) && !empty(MONO_USE_NPTL:M[yY][eE][sS]) -# Enable support for NPTL -CONFIGURE_ARGS+= --with-nptl=yes -. endif -BUILD_DEFS+= MONO_USE_NPTL -.else -CONFIGURE_ARGS+= --with-nptl=no -.endif - -# allow changing the gc_type -# allowed values: included, boehm, none -MONO_GC_TYPE?=included -.if ${MONO_GC_TYPE} == "boehm" -. include "../../devel/boehm-gc/buildlink3.mk" -.endif -CONFIGURE_ARGS+= --with-gc=${MONO_GC_TYPE} - -# mono debugger support is only available with the included gc -# patch the PLIST accordingly -.if ${MONO_GC_TYPE} == "boehm" || ${MONO_GC_TYPE} == "none" -PLIST_SUBST+= GC="@comment " -.else -PLIST_SUBST+= GC= -.endif - # mcs coredumps with sigaltstack .if ${OPSYS} == "NetBSD" CONFIGURE_ARGS+= --with-sigaltstack=no .endif -# Global Assembly Cache files are handled during (de)installation. -#PRINT_PLIST_AWK+= /^lib\/mono\/gac\// { next; } -#PRINT_PLIST_AWK+= /^@dirrm lib\/mono\/gac\// { next; } - -# GC files are only installed if GC was enabled. -PRINT_PLIST_AWK+= /^include\/mono\/private\/libgc/ \ - { print "$${GC}" $$0; next; } -PRINT_PLIST_AWK+= /^@dirrm include\/mono\/private/ \ - { print "$${GC}" $$0; next; } - .include "../../devel/glib2/buildlink3.mk" .include "../../devel/pkgconfig/buildlink3.mk" .include "../../textproc/icu/buildlink3.mk" |