diff options
author | kris <kris@FreeBSD.org> | 2005-04-11 05:35:28 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-04-11 05:35:28 +0800 |
commit | c1d601e3f98a24aef83f4a3f167f88fffb6edf81 (patch) | |
tree | 3a4252f530f76ab06091b2843d8c50619cf0733e /www/crawl | |
parent | 778ae4e876e78e78b43d6d49022dea0f4a32ad1a (diff) | |
download | freebsd-ports-gnome-c1d601e3f98a24aef83f4a3f167f88fffb6edf81.tar.gz freebsd-ports-gnome-c1d601e3f98a24aef83f4a3f167f88fffb6edf81.tar.zst freebsd-ports-gnome-c1d601e3f98a24aef83f4a3f167f88fffb6edf81.zip |
BROKEN on FreeBSD 6.0: Does not compile
Diffstat (limited to 'www/crawl')
-rw-r--r-- | www/crawl/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/crawl/Makefile b/www/crawl/Makefile index 1a4bdb161f08..41d4abeed506 100644 --- a/www/crawl/Makefile +++ b/www/crawl/Makefile @@ -22,6 +22,12 @@ CONFIGURE_ARGS+= --with-libevent=${LOCALBASE} --program-transform-name='' MAN1= crawl.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 600022 +BROKEN= "Does not compile on FreeBSD >= 6.x" +.endif + post-patch: @${REINPLACE_CMD} -e 's,/usr/include/db2,${LOCALBASE}/include/db3,g' \ -e 's,db2,db3,g' ${WRKSRC}/configure.in @@ -32,4 +38,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/crawl.conf ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |