diff options
-rw-r--r-- | devel/kBuild-devel/Makefile | 8 | ||||
-rw-r--r-- | devel/kBuild/Makefile | 8 | ||||
-rw-r--r-- | lang/g95/Makefile | 4 | ||||
-rw-r--r-- | sysutils/heirloom/Makefile | 4 | ||||
-rw-r--r-- | textproc/scew/Makefile | 8 |
5 files changed, 29 insertions, 3 deletions
diff --git a/devel/kBuild-devel/Makefile b/devel/kBuild-devel/Makefile index 2c1547ec0b7e..15e53b99211e 100644 --- a/devel/kBuild-devel/Makefile +++ b/devel/kBuild-devel/Makefile @@ -59,4 +59,10 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" +BROKEN= Does not compile on ia64 or powerpc +.endif + +.include <bsd.port.post.mk> diff --git a/devel/kBuild/Makefile b/devel/kBuild/Makefile index 2c1547ec0b7e..15e53b99211e 100644 --- a/devel/kBuild/Makefile +++ b/devel/kBuild/Makefile @@ -59,4 +59,10 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" +BROKEN= Does not compile on ia64 or powerpc +.endif + +.include <bsd.port.post.mk> diff --git a/lang/g95/Makefile b/lang/g95/Makefile index c949478d9602..abdc12b8d058 100644 --- a/lang/g95/Makefile +++ b/lang/g95/Makefile @@ -41,6 +41,10 @@ CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .endif +.if ${ARCH} == "powerpc" +IGNORE= Fails to install: not yet ported to powerpc +.endif + post-extract: cd ${WRKSRC} && ${TAR} xzf ${LIBF95}.tar.gz diff --git a/sysutils/heirloom/Makefile b/sysutils/heirloom/Makefile index 1db4127f2ab5..b60041a3d54c 100644 --- a/sysutils/heirloom/Makefile +++ b/sysutils/heirloom/Makefile @@ -31,6 +31,10 @@ REINPLACE_SUB= DATADIR="${DATADIR}" EXTRA_PATCHES= ${FILESDIR}/extra-utmpx .endif +.if ${ARCH} == "powerpc" +BROKEN= Does not compile on powerpc +.endif + _MANPREFIX= ${DATADIR}/usr/share/man/5man _MSECS= 1 1b 1m 2 3 4 5 6 7 8 diff --git a/textproc/scew/Makefile b/textproc/scew/Makefile index 639690e376b9..f45ee14e8abd 100644 --- a/textproc/scew/Makefile +++ b/textproc/scew/Makefile @@ -30,4 +30,10 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/examples/${PORTNAME}_${ex}/${PORTNAME}_${ex} ${PREFIX}/bin .endfor -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "powerpc" +BROKEN= Does not compile on powerpc +.endif + +.include <bsd.port.post.mk> |