diff options
author | linimon <linimon@FreeBSD.org> | 2004-02-17 17:42:50 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2004-02-17 17:42:50 +0800 |
commit | 0f745da460f9edf64d71dc14dc4f9a72dd5c493d (patch) | |
tree | e6354038858baac8cfbe19334c527e3d8ce8e43c /misc | |
parent | b492b858e4fd2f3d3f7990cbec575da60a001224 (diff) | |
download | freebsd-ports-gnome-0f745da460f9edf64d71dc14dc4f9a72dd5c493d.tar.gz freebsd-ports-gnome-0f745da460f9edf64d71dc14dc4f9a72dd5c493d.tar.zst freebsd-ports-gnome-0f745da460f9edf64d71dc14dc4f9a72dd5c493d.zip |
Previous attempt to unbreak master port did indeed fix the master
port, but not this one (at least on 5.x). Informed maintainer.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/cheatah/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/misc/cheatah/Makefile b/misc/cheatah/Makefile index dbf911754e5e..850b5b7d39d8 100644 --- a/misc/cheatah/Makefile +++ b/misc/cheatah/Makefile @@ -27,10 +27,16 @@ WRKSRC= ${WRKDIR}/${DISTNAME}/apps/X11/cheatah .include "${.CURDIR}/../sword/Makefile.common" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + post-patch: @${CHMOD} a+x ${WRKSRC}/configure post-install: @${STRIP_CMD} ${PREFIX}/bin/cheatah -.include <bsd.port.mk> +.include <bsd.port.post.mk> |