diff options
-rw-r--r-- | games/glasteroids/Makefile | 8 | ||||
-rw-r--r-- | games/kobodeluxe/Makefile | 8 | ||||
-rw-r--r-- | math/gnuplot+/Makefile | 8 |
3 files changed, 21 insertions, 3 deletions
diff --git a/games/glasteroids/Makefile b/games/glasteroids/Makefile index c0dae1f4edb9..87efb65cd33b 100644 --- a/games/glasteroids/Makefile +++ b/games/glasteroids/Makefile @@ -25,6 +25,12 @@ MAKE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" MAKEFILE= ${FILESDIR}/Makefile.FreeBSD +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + do-install: ${INSTALL_PROGRAM} -m 2755 -o root -g games ${WRKSRC}/Glasteroids ${PREFIX}/bin/glasteroids @${MKDIR} ${DATADIR} @@ -39,4 +45,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/games/kobodeluxe/Makefile b/games/kobodeluxe/Makefile index 4c9b84ceb54c..69701d504bc8 100644 --- a/games/kobodeluxe/Makefile +++ b/games/kobodeluxe/Makefile @@ -27,7 +27,13 @@ USE_AUTOMAKE_VER= 15 AUTOCONF= autoconf ACLOCAL= aclocal +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + pre-configure: cd ${WRKDIR}/${DISTNAME} && ${ACLOCAL} && ${AUTOCONF} && ${AUTOHEADER} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/math/gnuplot+/Makefile b/math/gnuplot+/Makefile index cc6f459d79cb..67f12d27055d 100644 --- a/math/gnuplot+/Makefile +++ b/math/gnuplot+/Makefile @@ -52,6 +52,12 @@ GP_DOCS= ${WRKSRC}/Copyright.plus \ ${WRKSRC}/gp+/plus.ps \ ${WRKSRC}/gp+/plus.tex +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not compile on amd64" +.endif + post-extract: ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/gnuplot3.7.1+${PORTVERSION}.patch.tar.gz ${EXTRACT_AFTER_ARGS} -C ${WRKSRC} @@ -77,4 +83,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/demo/* ${PREFIX}/share/examples/gnuplot+ @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |