diff options
author | sem <sem@FreeBSD.org> | 2005-09-29 11:49:01 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-09-29 11:49:01 +0800 |
commit | 595db014585d19a36a447e8df9ff6fad438aff15 (patch) | |
tree | 3617409432dd9e4f42258962ca29d5724c21a009 | |
parent | 9c9305f89fc3bc70e678a00259e116cc05912a08 (diff) | |
download | freebsd-ports-gnome-595db014585d19a36a447e8df9ff6fad438aff15.tar.gz freebsd-ports-gnome-595db014585d19a36a447e8df9ff6fad438aff15.tar.zst freebsd-ports-gnome-595db014585d19a36a447e8df9ff6fad438aff15.zip |
- Update to 1.4.5b
- Add WITH_/WITHOUT_ARTS in OPTIONS
PR: ports/86672
Submitted by: Ports Fury
-rw-r--r-- | audio/mhwaveedit/Makefile | 21 | ||||
-rw-r--r-- | audio/mhwaveedit/distinfo | 4 |
2 files changed, 16 insertions, 9 deletions
diff --git a/audio/mhwaveedit/Makefile b/audio/mhwaveedit/Makefile index 0f456dc6652d..bf06d7033b42 100644 --- a/audio/mhwaveedit/Makefile +++ b/audio/mhwaveedit/Makefile @@ -7,7 +7,7 @@ # PORTNAME= mhwaveedit -PORTVERSION= 1.4.4 +PORTVERSION= 1.4.5b CATEGORIES= audio MASTER_SITES= http://download.gna.org/mhwaveedit/ @@ -35,6 +35,7 @@ OPTIONS= DOUBLE_SAMPLES "increase quality for 24/32-bit samplerates" off \ OSS "OSS sound driver" on \ PORTAUDIO "PortAudio sound driver" off \ SDL "SDL sound driver" off \ + ARTS "arts sound driver" off \ JACK "JACK sound driver" off \ ESD "EsounD sound driver" off @@ -44,16 +45,16 @@ OPTIONS= DOUBLE_SAMPLES "increase quality for 24/32-bit samplerates" off \ CONFIGURE_ARGS+= --with-double-samples .endif -.if defined(WITH_SNDFILE) -LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile -.else +.if defined(WITHOUT_SNDFILE) CONFIGURE_ARGS+= --without-libsndfile +.else +LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile .endif -.if defined(WITH_SAMPLERATE) -LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate -.else +.if defined(WITHOUT_SAMPLERATE) CONFIGURE_ARGS+= --without-libsamplerate +.else +LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate .endif .if defined(WITHOUT_OSS) @@ -72,6 +73,12 @@ USE_SDL+= sdl CONFIGURE_ARGS+= --without-sdl .endif +.if defined(WITH_ARTS) +LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts +.else +CONFIGURE_ARGS+= --without-arts +.endif + .if defined(WITH_JACK) LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack .else diff --git a/audio/mhwaveedit/distinfo b/audio/mhwaveedit/distinfo index 84edd3466c92..663be1f253fe 100644 --- a/audio/mhwaveedit/distinfo +++ b/audio/mhwaveedit/distinfo @@ -1,2 +1,2 @@ -MD5 (mhwaveedit-1.4.4.tar.bz2) = f0eddfb357ea3c4b90c170c3397f24f5 -SIZE (mhwaveedit-1.4.4.tar.bz2) = 402971 +MD5 (mhwaveedit-1.4.5b.tar.bz2) = 3c29e69e75a8bec17fbec28f8ecd438d +SIZE (mhwaveedit-1.4.5b.tar.bz2) = 411527 |