diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2009-07-28 01:32:25 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2009-07-28 01:32:25 +0000 |
commit | dda1f8e4fade6e50986ab18892eafa299ed70202 (patch) | |
tree | 5560d03a00b7620c3c47812081389cb6c70dc194 | |
parent | f9d4b890e554b238613c313b4bc7b90c3f36352a (diff) |
Notes
-rw-r--r-- | devel/fossology/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/fossology/Makefile b/devel/fossology/Makefile index d79a95ff88a4..0fb0c1fbc353 100644 --- a/devel/fossology/Makefile +++ b/devel/fossology/Makefile @@ -64,6 +64,12 @@ MAN1= cp2foss.1 fo_notify.1 fossjobs.1 fosslic.1 FOSS_DB?= ${DATADIR}/repository LIBDIR= ${PREFIX}/lib # is /usr/lib by default, and affects build +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +IGNORE= needs at least FreeBSD 7.x, because it uses librt +.endif + post-patch: # Fix paths (respect PREFIX, etc) @${GREP} -Rl /bin/bash ${WRKSRC} | ${GREP} -v UnMagic.mime | \ @@ -119,4 +125,4 @@ post-install: .endfor @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |