diff options
author | anholt <anholt@FreeBSD.org> | 2003-04-25 09:27:58 +0800 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2003-04-25 09:27:58 +0800 |
commit | 31b7c0af910728bf4ea679fd849921eb388801c1 (patch) | |
tree | 21114706ba27ffa0ab1a001cbfb0161312b4e402 /graphics | |
parent | 08a96f3d7760d71143c4f61df97987e6df8bdd15 (diff) | |
download | freebsd-ports-gnome-31b7c0af910728bf4ea679fd849921eb388801c1.tar.gz freebsd-ports-gnome-31b7c0af910728bf4ea679fd849921eb388801c1.tar.zst freebsd-ports-gnome-31b7c0af910728bf4ea679fd849921eb388801c1.zip |
Mark IGNORE if XFREE86_VERSION > 3
Approved by: portmgr (kris)
Diffstat (limited to 'graphics')
-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> |