diff options
author | sylvio <sylvio@FreeBSD.org> | 2012-06-10 08:11:01 +0800 |
---|---|---|
committer | sylvio <sylvio@FreeBSD.org> | 2012-06-10 08:11:01 +0800 |
commit | 5062b56307f51b9db8cfbe3052a58c7ed339ba3d (patch) | |
tree | 0161552219fa11204869e11851a9f6496dbcf524 | |
parent | 13742545bab4351532be0f966e6f9d77aa71f6ba (diff) | |
download | freebsd-ports-gnome-5062b56307f51b9db8cfbe3052a58c7ed339ba3d.tar.gz freebsd-ports-gnome-5062b56307f51b9db8cfbe3052a58c7ed339ba3d.tar.zst freebsd-ports-gnome-5062b56307f51b9db8cfbe3052a58c7ed339ba3d.zip |
- * Switch NOPORTDOCS and NOPORTEXAMPLES to their OptionsNG
equivalents for devel/premake4, lang/ikarus, lang/stklos
and lang/ypsilon.
* Add mutual conflicts to lang/ikarus
- Only define NO_PACKAGE for lang/ikarus when PACKAGE_BUILDING
is set (i.e. on the pointyhat cluster).
PR: ports/168715
Submitted by: Vitaly Magerya <vmagerya@gmail.com> (maintainer)
-rw-r--r-- | lang/ikarus/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/ikarus/Makefile b/lang/ikarus/Makefile index c5bdc2335260..3bbf449c3cbd 100644 --- a/lang/ikarus/Makefile +++ b/lang/ikarus/Makefile @@ -19,6 +19,9 @@ COMMENT= Optimizing incremental native-code compiler for R6RS Scheme LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +# Both install bin/scheme-script +CONFLICTS= petite-chez-* + FETCH_ARGS= -Fpr USE_GMAKE= yes GNU_CONFIGURE= yes @@ -27,11 +30,13 @@ CONFIGURE_ARGS+=\ LDFLAGS="-L${LOCALBASE}/lib" ONLY_FOR_ARCHS= i386 +.if defined(PACKAGE_BUILDING) NO_PACKAGE= Pointyhat cluster CPUs do not support required SSE instruction set +.endif .include <bsd.port.pre.mk> -.if defined(NOPORTDOCS) +.if !${PORT_OPTIONS:MDOCS} EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile.in \ ${FILESDIR}/extra-patch-doc__Makefile.in .endif |