diff options
author | jmz <jmz@FreeBSD.org> | 2004-03-26 21:59:57 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2004-03-26 21:59:57 +0800 |
commit | a209215e36f375c628501696393f567971ffdd05 (patch) | |
tree | d1672527458ca1f96e380593ecf77ad8e6d70a1e /x11 | |
parent | e76081bdf445b52d5db279daf0da4c7014102a3b (diff) | |
download | freebsd-ports-gnome-a209215e36f375c628501696393f567971ffdd05.tar.gz freebsd-ports-gnome-a209215e36f375c628501696393f567971ffdd05.tar.zst freebsd-ports-gnome-a209215e36f375c628501696393f567971ffdd05.zip |
Unbreak the port: build only when XFREE86_VERSION==3
Diffstat (limited to 'x11')
-rw-r--r-- | x11/XFree86-contrib/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/x11/XFree86-contrib/Makefile b/x11/XFree86-contrib/Makefile index f060050ece56..6399453e1041 100644 --- a/x11/XFree86-contrib/Makefile +++ b/x11/XFree86-contrib/Makefile @@ -16,7 +16,9 @@ EXTRACT_SUFX= .tgz MAINTAINER= jmz@FreeBSD.org COMMENT= XFree86 contrib programs -BROKEN= "Does not compile" +.if ${XFREE86_VERSION} != 3 +IGNORE= "Only for XFree86 version 3" +.endif # Define FORCE_PACKAGE from the command line if you want to override # this and build a package |