diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:35:25 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-19 09:35:25 +0000 |
commit | c41a6d5120932084bea942adcd78a8e7fee817e4 (patch) | |
tree | 898779814e39254377fa20dc16ad0e003ecd9ce2 /graphics | |
parent | BROKEN on !i386: Does not compile (diff) |
BROKEN on 5.x: Does not install
Notes
Notes:
svn path=/head/; revision=111807
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/pixie/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/pixie/Makefile b/graphics/pixie/Makefile index 386448f8e1f9..f87b8dc14b28 100644 --- a/graphics/pixie/Makefile +++ b/graphics/pixie/Makefile @@ -42,6 +42,12 @@ PIXIE_SHLIBS= file framebuffer rgbe PKGMESSAGE= ${WRKDIR}/pkg-message +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502112 +BROKEN= "Does not install on FreeBSD >= 5.x" +.endif + post-patch: @${REINPLACE_CMD} -i "" -e 's|malloc\.h|stdlib\.h|g' \ `${FIND} -E ${WRKSRC} -iregex '.*\.(cpp|h)'` @@ -101,4 +107,4 @@ post-install: @(${SED} -e 's|%%PREFIX%%|${PREFIX}|; s|%%PORTNAME%%|${PORTNAME}|' \ <pkg-message >${PKGMESSAGE} && ${CAT} ${PKGMESSAGE}) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |