diff options
author | beech <beech@FreeBSD.org> | 2007-09-15 10:37:33 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2007-09-15 10:37:33 +0800 |
commit | b9e2f417ae9923d00e03d48476195077661607ba (patch) | |
tree | 6ec823af624317e7c5e33a3dcec396ad4bc5732c /irc/psybnc | |
parent | b9c57a1146c42cc275b194ce9c2f6d17d2297224 (diff) | |
download | freebsd-ports-gnome-b9e2f417ae9923d00e03d48476195077661607ba.tar.gz freebsd-ports-gnome-b9e2f417ae9923d00e03d48476195077661607ba.tar.zst freebsd-ports-gnome-b9e2f417ae9923d00e03d48476195077661607ba.zip |
- Flag broken on amd64
- Verified, not 64 bit clean. Builds and runs, but crashes on connect.
- No longer being developed.
Reported by: Andrus Nomm <andrus@wask.org>
Approved by: sat (mentor)
Diffstat (limited to 'irc/psybnc')
-rw-r--r-- | irc/psybnc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/irc/psybnc/Makefile b/irc/psybnc/Makefile index f5c673647ede..feae2ebfcef0 100644 --- a/irc/psybnc/Makefile +++ b/irc/psybnc/Makefile @@ -19,6 +19,12 @@ PSYBASE= ${PREFIX}/psybnc MAKE_ARGS= PSYBASE=${PSYBASE} IS_INTERACTIVE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == amd64 +BROKEN= does not run on amd64 +.endif + post-patch: @${REINPLACE_CMD} -e 's#=help/#=${PSYBASE}/help/#' ${WRKSRC}/lang/* @@ -38,4 +44,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/psybnc ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/psybnc.conf ${PREFIX}/etc/psybnc.conf.sample -.include <bsd.port.mk> +.include <bsd.port.post.mk> |