aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-02-23 12:42:56 +0800
committerKris Kennaway <kris@FreeBSD.org>2004-02-23 12:42:56 +0800
commit2a4efc877b94287100c773d34ccc0c764962d011 (patch)
tree8bf76a63e5043030197dbe7727333ffe4d896a7d
parent60aab665670e50cb18bba45ee25f2ed091759741 (diff)
downloadfreebsd-ports-gnome-2a4efc877b94287100c773d34ccc0c764962d011.tar.gz
freebsd-ports-gnome-2a4efc877b94287100c773d34ccc0c764962d011.tar.zst
freebsd-ports-gnome-2a4efc877b94287100c773d34ccc0c764962d011.zip
BROKEN on !i386: Does not compile
-rw-r--r--devel/ruby-nodedump/Makefile8
-rw-r--r--lang/oo2c/Makefile8
2 files changed, 14 insertions, 2 deletions
diff --git a/devel/ruby-nodedump/Makefile b/devel/ruby-nodedump/Makefile
index d19a4c1546c0..b785cbb78e8e 100644
--- a/devel/ruby-nodedump/Makefile
+++ b/devel/ruby-nodedump/Makefile
@@ -22,10 +22,16 @@ USE_RUBY_EXTCONF= yes
INSTALL_TARGET= site-install
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} != "i386"
+BROKEN= "Does not compile on !i386"
+.endif
+
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}
${INSTALL_DATA} ${WRKSRC}/README ${RUBY_MODDOCDIR}/
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
diff --git a/lang/oo2c/Makefile b/lang/oo2c/Makefile
index 951569d8b7a4..e4045f3a2ef2 100644
--- a/lang/oo2c/Makefile
+++ b/lang/oo2c/Makefile
@@ -20,10 +20,16 @@ USE_LIBTOOL= yes
CONFIGURE_ENV+= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
MAN1= oo2c.1 oob.1 ooef.1 oocn.1 oowhereis.1
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} != "i386"
+BROKEN= "Does not compile on !i386"
+.endif
+
post-extract:
@${MV} ${WRKDIR}/gc ${WRKSRC}/gc
post-install:
@${INSTALL_SCRIPT} ${FILESDIR}/oo2 ${PREFIX}/bin
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>