diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2006-02-12 22:32:29 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2006-02-12 22:32:29 +0000 |
commit | 98bbc62be496bafa6b03749180087a8bab655a51 (patch) | |
tree | 1c3aeb79ae7149ee636f73f8b9b69b8990a7c2e2 /irc | |
parent | 75bbac0245ab45e5daed571f71a8c30da3ebebc0 (diff) | |
download | ports-98bbc62be496bafa6b03749180087a8bab655a51.tar.gz ports-98bbc62be496bafa6b03749180087a8bab655a51.zip |
Notes
Diffstat (limited to 'irc')
-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> |