diff options
author | trasz <trasz@FreeBSD.org> | 2009-09-15 00:46:41 +0800 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2009-09-15 00:46:41 +0800 |
commit | b6e6dbda4daf433b8434d3b75db9fbbafe2df359 (patch) | |
tree | babd2867f71cc52415123542cd78f5f511bff269 /audio/calf | |
parent | 6175d09a5a5e8efc2843abb6a5e01a376e09aec3 (diff) | |
download | freebsd-ports-gnome-b6e6dbda4daf433b8434d3b75db9fbbafe2df359.tar.gz freebsd-ports-gnome-b6e6dbda4daf433b8434d3b75db9fbbafe2df359.tar.zst freebsd-ports-gnome-b6e6dbda4daf433b8434d3b75db9fbbafe2df359.zip |
Improve BROKEN.
Diffstat (limited to 'audio/calf')
-rw-r--r-- | audio/calf/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/audio/calf/Makefile b/audio/calf/Makefile index daf89ef72019..88c38fda065e 100644 --- a/audio/calf/Makefile +++ b/audio/calf/Makefile @@ -25,15 +25,18 @@ GNU_CONFIGURE= yes USE_GMAKE= yes USE_GNOME= gtk20 libglade2 CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/dssi -L${LOCALBASE}/lib - -BROKEN= Does not compile - MAN1= calfjackhost.1 MAN7= calf.7 INSTALLS_ICONS= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +BROKEN= Does not compile +.endif + post-patch: @${FIND} ${BUILD_WRKSRC} -name '*.cpp' | ${XARGS} \ ${REINPLACE_CMD} -e "s|<malloc.h>|<stdlib.h>|g" -.include <bsd.port.mk> +.include <bsd.port.post.mk> |