diff options
author | kris <kris@FreeBSD.org> | 2005-04-30 09:39:47 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-04-30 09:39:47 +0800 |
commit | 86682e3e77391ce3d41c738b6db315f6f49a0d76 (patch) | |
tree | f607c7cc8e2a77b0a762613609da87c8367979b6 /audio/snd | |
parent | 4ae9228697c57c4c9df700e2fe5d2b2c6b5a5fdd (diff) | |
download | freebsd-ports-gnome-86682e3e77391ce3d41c738b6db315f6f49a0d76.tar.gz freebsd-ports-gnome-86682e3e77391ce3d41c738b6db315f6f49a0d76.tar.zst freebsd-ports-gnome-86682e3e77391ce3d41c738b6db315f6f49a0d76.zip |
Now builds on 4.x
Diffstat (limited to 'audio/snd')
-rw-r--r-- | audio/snd/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/audio/snd/Makefile b/audio/snd/Makefile index 05d8529cc839..1f9065b378ad 100644 --- a/audio/snd/Makefile +++ b/audio/snd/Makefile @@ -17,8 +17,6 @@ COMMENT= Multitracking sound editor and utilities LIB_DEPENDS= gsl.6:${PORTSDIR}/math/gsl -BROKEN= "Does not install" - ALL_TARGET= audinfo snd sndinfo sndplay sndrecord sndsine CONFIGURE_ARGS= --with-float-samples \ --with-multifile @@ -82,6 +80,12 @@ USE_X_PREFIX= yes USE_XLIB= yes .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 503000 +BROKEN= "Does not install on FreeBSD >= 5.x" +.endif + post-build: ${MV} ${WRKSRC}/sndinfo ${WRKSRC}/snd-info @@ -153,4 +157,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/*.scm ${DATADIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |