diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-04-30 01:39:47 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-04-30 01:39:47 +0000 |
commit | 587341014dcf04fca76da69275d7d83734bda03e (patch) | |
tree | a6f25935bb87c17f8e09b729a632af79ccd26afa /audio/snd | |
parent | BROKEN on 4.x: Incomplete pkg-plist (diff) |
Now builds on 4.x
Notes
Notes:
svn path=/head/; revision=134390
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> |