diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-20 18:22:33 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-20 18:22:33 +0800 |
commit | 6ca9d235a09d0711304e0c50f942f1e274ebf6e6 (patch) | |
tree | 2389c1c81f4b6b4061eddd762dbca425de752ae4 /lang/bigloo | |
parent | 44af6de772bff67cfcc4ee6177c8496cdaf73b6a (diff) | |
download | freebsd-ports-gnome-6ca9d235a09d0711304e0c50f942f1e274ebf6e6.tar.gz freebsd-ports-gnome-6ca9d235a09d0711304e0c50f942f1e274ebf6e6.tar.zst freebsd-ports-gnome-6ca9d235a09d0711304e0c50f942f1e274ebf6e6.zip |
Mark as broken with latest gcc. Informed maintainer.
Diffstat (limited to 'lang/bigloo')
-rw-r--r-- | lang/bigloo/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/bigloo/Makefile b/lang/bigloo/Makefile index 03c856914e76..ddc2d0d7f7e9 100644 --- a/lang/bigloo/Makefile +++ b/lang/bigloo/Makefile @@ -33,6 +33,12 @@ CONFIGURE_ARGS= --prefix=${PREFIX} \ INSTALL_INFO?= install-info +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile due to varargs.h being deprecated" +.endif + post-install: install-info @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/bigloo.sh | ${SED} "s|%%BIGLOO_VERSION%%|${PORTVERSION}|g" > ${PREFIX}/etc/rc.d/000.bigloo.sh @${CHMOD} 750 ${PREFIX}/etc/rc.d/000.bigloo.sh @@ -43,4 +49,4 @@ install-info: test: build @(cd ${WRKSRC}; ${GMAKE} test) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |