aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2004-02-23 13:10:39 +0800
committerkris <kris@FreeBSD.org>2004-02-23 13:10:39 +0800
commit21cf95679b69dd240bc25e5db56e9ad009e380a8 (patch)
tree99e52e629fcfc34bda94de6f217dfe032afb2701
parent571c24662e34a8d6db22edefcd70b6fb4690effd (diff)
downloadfreebsd-ports-gnome-21cf95679b69dd240bc25e5db56e9ad009e380a8.tar.gz
freebsd-ports-gnome-21cf95679b69dd240bc25e5db56e9ad009e380a8.tar.zst
freebsd-ports-gnome-21cf95679b69dd240bc25e5db56e9ad009e380a8.zip
BROKEN on alpha: Does not compile
-rw-r--r--devel/ossp-val/Makefile5
-rw-r--r--lang/yap/Makefile8
2 files changed, 12 insertions, 1 deletions
diff --git a/devel/ossp-val/Makefile b/devel/ossp-val/Makefile
index 104c4689fb9c..6c8387ba237d 100644
--- a/devel/ossp-val/Makefile
+++ b/devel/ossp-val/Makefile
@@ -24,5 +24,10 @@ USE_LIBTOOL= yes
INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "alpha"
+BROKEN= "Does not compile on alpha"
+.endif
+
.include "${FILESDIR}/manpages.mk"
.include <bsd.port.post.mk>
diff --git a/lang/yap/Makefile b/lang/yap/Makefile
index 765c74db1129..c61a6e530744 100644
--- a/lang/yap/Makefile
+++ b/lang/yap/Makefile
@@ -24,6 +24,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
INFO= yap
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "alpha"
+BROKEN= "Does not compile on alpha"
+.endif
+
post-extract:
@${RM} -f ${WRKSRC}/docs/*.info*
@@ -34,4 +40,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/docs/yap.info ${PREFIX}/info
install-info ${PREFIX}/info/yap.info ${PREFIX}/info/dir
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>