diff options
author | kris <kris@FreeBSD.org> | 2006-02-13 06:32:29 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2006-02-13 06:32:29 +0800 |
commit | 0ca761a371f0191c29f819d4b00f65949fd72036 (patch) | |
tree | 596de1feced7de97fbfeb2c2eb598912655a2542 /irc/xaric | |
parent | 128c251068a190b4efaf267c366751c3dd42b82d (diff) | |
download | freebsd-ports-gnome-0ca761a371f0191c29f819d4b00f65949fd72036.tar.gz freebsd-ports-gnome-0ca761a371f0191c29f819d4b00f65949fd72036.tar.zst freebsd-ports-gnome-0ca761a371f0191c29f819d4b00f65949fd72036.zip |
BROKEN on !i386: Does not compile
Diffstat (limited to 'irc/xaric')
-rw-r--r-- | irc/xaric/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/irc/xaric/Makefile b/irc/xaric/Makefile index 21cb39436e82..50c29123d0d0 100644 --- a/irc/xaric/Makefile +++ b/irc/xaric/Makefile @@ -20,10 +20,16 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} MAN1= xaric.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= Does not compile on ${ARCH} +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/xaric ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/xaric.1 ${MANPREFIX}/man/man1 @${MKDIR} ${DATADIR}/help ${INSTALL_DATA} ${WRKSRC}/help/* ${DATADIR}/help -.include <bsd.port.mk> +.include <bsd.port.post.mk> |