diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2003-04-25 01:27:58 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2003-04-25 01:27:58 +0000 |
commit | f81547f0da2a1c40d2006131918a16089a300ebb (patch) | |
tree | 3bfc0ee2a726e87350b1e0e5378aed600c39627c /graphics/linux_glx | |
parent | Fix Makefile.am patch. (diff) |
Mark IGNORE if XFREE86_VERSION > 3
Approved by: portmgr (kris)
Diffstat (limited to 'graphics/linux_glx')
-rw-r--r-- | graphics/linux_glx/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/linux_glx/Makefile b/graphics/linux_glx/Makefile index 47285002ca8d..11b1972a21d2 100644 --- a/graphics/linux_glx/Makefile +++ b/graphics/linux_glx/Makefile @@ -28,6 +28,12 @@ WRKSRC= ${WRKDIR}/linux_glx # switch off stripping during INSTALL_PROGRAM STRIP= +.include <bsd.port.pre.mk> + +.if ${XFREE86_VERSION} > 3 +IGNORE= "Requires XFree86 3.3.* - will not work with XFree86 4.*" +.endif + # NEVER EVER use plain INSTALL_PROGRAM on Linux binaries, # as they get stripped! do-install: @@ -37,4 +43,4 @@ do-install: post-install: @ ${PREFIX}/sbin/ldconfig -.include <bsd.port.mk> +.include <bsd.port.post.mk> |