diff options
author | pav <pav@FreeBSD.org> | 2009-01-24 17:58:07 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-01-24 17:58:07 +0800 |
commit | 55d7f40e9e43e36b576c9c585447fc8cdb58b643 (patch) | |
tree | 056f820c867fde77e45ab4ebb075ae246a70e83e /editors | |
parent | 9509e18b4e111eef423f1d58ff7f84561d65b5c4 (diff) | |
download | freebsd-ports-gnome-55d7f40e9e43e36b576c9c585447fc8cdb58b643.tar.gz freebsd-ports-gnome-55d7f40e9e43e36b576c9c585447fc8cdb58b643.tar.zst freebsd-ports-gnome-55d7f40e9e43e36b576c9c585447fc8cdb58b643.zip |
- Mark BROKEN on FreeBSD 6.x: does not compile
Reported by: pointyhat
Diffstat (limited to 'editors')
-rw-r--r-- | editors/texmacs/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/editors/texmacs/Makefile b/editors/texmacs/Makefile index 01f75148589a..492e5ffd0f02 100644 --- a/editors/texmacs/Makefile +++ b/editors/texmacs/Makefile @@ -45,6 +45,12 @@ USE_EFL= imlib2 CONFIGURE_ARGS+= --with-imlib2 .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +BROKEN= does not compile +.endif + post-patch: @${GREP} -lR "#!/bin/bash" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's|#!/bin/bash|#!/bin/sh|g' @@ -55,4 +61,4 @@ post-install: ${CHOWN} -R ${LIBOWN}:${LIBGRP} ${PREFIX}/libexec/TeXmacs ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/TeXmacs -.include <bsd.port.mk> +.include <bsd.port.post.mk> |