diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-05-31 04:57:04 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-05-31 04:57:04 +0000 |
commit | caa1fafc4ac7659c459a1568dda0ab2d3ab1c3c1 (patch) | |
tree | 8df4f13a5840d72aef5b71a9e8a3e919284dea38 /net-im | |
parent | 2d79bef410bd3a30222e0717650785dcf41ad335 (diff) |
Notes
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> |