diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-20 04:38:16 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-20 04:38:16 +0000 |
commit | 8db0695631b53236a7ca49b22cc61c08b2a5fc50 (patch) | |
tree | 1e5d534dbf6ab583f9e6c393d2578228a89fd2f0 | |
parent | 024d531756e4e6052e6b3cafa85bcdf7a2b21412 (diff) | |
download | FreeBSD-ports-8db0695631b53236a7ca49b22cc61c08b2a5fc50.zip FreeBSD-ports-8db0695631b53236a7ca49b22cc61c08b2a5fc50.tar.gz |
Mark as broken on 5.x due to gcc3.3's stricter handling of multiline
string constants. Informed maintainer.
-rw-r--r-- | japanese/ebw3/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/japanese/ebw3/Makefile b/japanese/ebw3/Makefile index ec69894..45effad 100644 --- a/japanese/ebw3/Makefile +++ b/japanese/ebw3/Makefile @@ -18,6 +18,12 @@ VERSION= 0.2-b4 STARTUP_SCRIPT= $(PREFIX)/etc/rc.d/ebw3d.sh.sample +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + post-install: ${MKDIR} ${PREFIX}/www/cgi-bin ${INSTALL} -c -o nobody -g nobody -m 555 ${WRKSRC}/cdsearch \ @@ -32,4 +38,4 @@ post-install: .endif ${INSTALL_SCRIPT} ${FILESDIR}/ebw3d.sh.sample $(PREFIX)/etc/rc.d -.include <bsd.port.mk> +.include <bsd.port.post.mk> |