diff options
author | kris <kris@FreeBSD.org> | 2004-09-30 13:52:30 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-30 13:52:30 +0800 |
commit | d9e30c3058fdc2bfa95371a3b2e89b52ad5d80fb (patch) | |
tree | 0eb06be54302f980de5cd3c42ec05ef5a000345c /chinese/BBMan | |
parent | 49e573190ac4f12f73aa2c448bd7b42647f1ec03 (diff) | |
download | freebsd-ports-gnome-d9e30c3058fdc2bfa95371a3b2e89b52ad5d80fb.tar.gz freebsd-ports-gnome-d9e30c3058fdc2bfa95371a3b2e89b52ad5d80fb.tar.zst freebsd-ports-gnome-d9e30c3058fdc2bfa95371a3b2e89b52ad5d80fb.zip |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Diffstat (limited to 'chinese/BBMan')
-rw-r--r-- | chinese/BBMan/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chinese/BBMan/Makefile b/chinese/BBMan/Makefile index b32995746bd7..47a57f7ee25e 100644 --- a/chinese/BBMan/Makefile +++ b/chinese/BBMan/Makefile @@ -22,10 +22,16 @@ USE_ZIP= yes WRKSRC= ${WRKDIR}/BBMan USE_X_PREFIX= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + do-build: cd ${WRKSRC} && g++ main.cpp `wxgtk2-2.4-config --libs --cxxflags` -I${LOCALBASE}/include -O2 -o BBMan do-install: ${INSTALL_PROGRAM} ${WRKSRC}/BBMan ${PREFIX}/bin/BBMan -.include <bsd.port.mk> +.include <bsd.port.post.mk> |