diff options
author | novel <novel@FreeBSD.org> | 2006-05-31 12:57:04 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-05-31 12:57:04 +0800 |
commit | a4618b8fd8300ff73dac13c476201ea4c6546eb8 (patch) | |
tree | 1aa805d5d4bd02b8194346b6b23cfa711a182aa4 /net-im | |
parent | ec1f5d3443cc4711fc90043234014ae2afe73015 (diff) | |
download | freebsd-ports-gnome-a4618b8fd8300ff73dac13c476201ea4c6546eb8.tar.gz freebsd-ports-gnome-a4618b8fd8300ff73dac13c476201ea4c6546eb8.tar.zst freebsd-ports-gnome-a4618b8fd8300ff73dac13c476201ea4c6546eb8.zip |
Mark BROKEN on 4.x.
PR: 97790
Submitted by: trasz <trasz@pin.if.uz.zgora.pl> (maintainer)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gloox/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-im/gloox/Makefile b/net-im/gloox/Makefile index ec4b53220cf8..e5ec8b4cded1 100644 --- a/net-im/gloox/Makefile +++ b/net-im/gloox/Makefile @@ -24,10 +24,16 @@ CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" INSTALLS_SHLIB= yes +.include <bsd.port.pre.mk> + +.if (${OSVERSION} < 500000) +BROKEN= does not build on FreeBSD < 5.x +.endif + post-install: @${FIND} ${PREFIX}/include/gloox ! -type d | \ ${SED} "s,${PREFIX}/,," >> ${TMPPLIST} @${FIND} ${PREFIX}/include/gloox -type d | ${SORT} -r | \ ${SED} "s,${PREFIX}/,@dirrm ," >> ${TMPPLIST} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |