Index: head/audio/audacity/Makefile =================================================================== --- head/audio/audacity/Makefile (revision 300479) +++ head/audio/audacity/Makefile (revision 300480) @@ -1,195 +1,192 @@ # New ports collection makefile for: audacity # Date created: 21 Jul 2001 # Whom: Marc van Woerkom <3d@freebsd.org> # # $FreeBSD$ PORTNAME= audacity -PORTVERSION= 2.0.0 -PORTREVISION= 2 +PORTVERSION= 2.0.1 CATEGORIES= audio MASTER_SITES= GOOGLE_CODE \ SF/${PORTNAME}/${PORTNAME}-unstable/${PORTVERSION} DISTNAME= ${PORTNAME}-minsrc-${PORTVERSION} MAINTAINER= xxjack12xx@gmail.com COMMENT= Audacity is a GUI editor for digital audio waveforms LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile +LIB_DEPENDS= sndfile:${PORTSDIR}/audio/libsndfile CONFLICTS= audacity-devel-[0-9]* WRKSRC= ${WRKDIR}/${PORTNAME}-src-${PORTVERSION} USE_AUTOTOOLS= aclocal autoconf GNU_CONFIGURE= yes USE_GMAKE= yes USE_GETTEXT= yes USE_BZIP2= yes USE_WX= 2.8 WX_UNICODE= yes WX_COMPS= wx INSTALLS_ICONS= yes MAKE_JOBS_SAFE= yes MAN1= audacity.1 MANCOMPRESSED= yes -OPTIONS= FFMPEG "Use ffmpeg for import and export support" on \ - FLAC "Use libFLAC for FLAC support" on \ - ID3TAG "Use libid3tag for mp3 id3 tag support" on \ - JACK "Use JACK audio server" on \ - LADSPA "LADSPA plug-in support" on \ - MAD "Use libmad for mp2/3 decoding support" on \ - NYQUIST "Nyquist plug-in support" on \ - PORTMIXER "Compile with PortMixer" on \ - SAMPLERATE "Use libsamplerate for sample rate conversion" on \ - SBSMS "Use libsbsms for pitch and tempo changing" on \ - SOUNDTOUCH "Use libSoundTouch for pitch and tempo changing" on\ - TAGLIB "Use TagLib for metadata support" on \ - TWOLAME "Use libtwolame for MP2 export support" on \ - VORBIS "Use libvorbis for Ogg Vorbis support" on \ - VAMP "Use libvamp for Vamp plug-in support" on +OPTIONS_DEFINE= DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST PORTMIXER \ + SAMPLERATE SBSMS SOUNDTOUCH TAGLIB TWOLAME VAMP VORBIS +OPTIONS_DEFAULT= DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST \ + PORTMIXER SAMPLERATE SBSMS SOUNDTOUCH TAGLIB \ + TWOLAME VAMP VORBIS -.include +NYQUIST_DESC= Nyquist plug-in support +PORTMIXER_DESC= Compile with PortMixer support +SBSMS_DESC= Support libsbsms for pitch and tempo changing +SOUNDTOUCH_DESC= Use libSoundTouch for pitch and tempo changing +TAGLIB_DESC= Use TagLib for metadata support +TWOLAME_DESC= Use libtwolame for MP2 export support +VAMP_DESC= Vamp plug-in support +.include + .if ${ARCH} == "i386" SSE_CFLAGS= -mno-sse -mno-sse2 .endif ACLOCAL_ARGS+= -I ${WRKSRC}/m4 AUTOCONF_ARGS+= -I ${WRKSRC}/m4 CONFIGURE_ARG+ =--destdir=/ LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CPPFLAGS+= -I${WRKSRC}/lib-src/portsmf -I${WRKSRC}/lib-src/portaudio-v19/include -I${LOCALBASE}/include ${SSE_CFLAGS} ${PTHREAD_CFLAGS} CXXFLAGS+= -I${WRKSRC}/lib-src/portsmf -I${WRKSRC}/lib-src/portaudio-v19/include -I${LOCALBASE}/include ${SSE_CFLAGS} ${PTHREAD_CFLAGS} CFLAGS+= -I${WRKSRC}/lib-src/portsmf -I${WRKSRC}/lib-src/portaudio-v19/include -I${LOCALBASE}/include ${SSE_CFLAGS} ${PTHREAD_CFLAGS} CONFIGURE_ENV+= WX_CONFIG="${WX_CONFIG}" -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} MAKE_ENV= DOC=yes .endif CONFIGURE_ARGS+= --with-lib-preference="local system" CONFIGURE_ARGS+= --with-portaudio CONFIGURE_ARGS+= --enable-unicode -.if defined(WITH_FFMPEG) +.if ${PORT_OPTIONS:MFFMPEG} RUN_DEPENDS+= ffmpeg:${PORTSDIR}/multimedia/ffmpeg CONFIGURE_ARGS+= --with-ffmpeg .else CONFIGURE_ARGS+= --without-ffmpeg .endif -.if defined(WITH_FLAC) -LIB_DEPENDS+= FLAC.10:${PORTSDIR}/audio/flac +.if ${PORT_OPTIONS:MFLAC} +LIB_DEPENDS+= FLAC:${PORTSDIR}/audio/flac CONFIGURE_ARGS+= --with-libflac .else CONFIGURE_ARGS+= --without-libflac .endif -.if defined(WITH_ID3TAG) -LIB_DEPENDS+= id3tag.0:${PORTSDIR}/audio/libid3tag +.if ${PORT_OPTIONS:MID3TAG} +LIB_DEPENDS+= id3tag:${PORTSDIR}/audio/libid3tag CONFIGURE_ARGS+= --with-libid3tag .else CONFIGURE_ARGS+= --without-libid3tag .endif -.if defined(WITH_JACK) -LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack +.if ${PORT_OPTIONS:MJACK} +LIB_DEPENDS+= jack:${PORTSDIR}/audio/jack CONFIGURE_ARGS+= --with-jack .else CONFIGURE_ARGS+= --without-jack .endif -.if defined(WITH_LADSPA) +.if ${PORT_OPTIONS:MLADSPA} RUN_DEPENDS+= listplugins:${PORTSDIR}/audio/ladspa CONFIGURE_ARGS+= --enable-ladspa .else CONFIGURE_ARGS+= --disable-ladspa .endif -.if defined(WITH_MAD) -LIB_DEPENDS+= mad.2:${PORTSDIR}/audio/libmad +.if ${PORT_OPTIONS:MMAD} +LIB_DEPENDS+= mad:${PORTSDIR}/audio/libmad CONFIGURE_ARGS+= --with-libmad .else CONFIGURE_ARGS+= --without-libmad .endif -.if defined(WITH_NYQUIST) +.if ${PORT_OPTIONS:MNYQUIST} CONFIGURE_ARGS+= --enable-nyquist .else CONFIGURE_ARGS+= --disable-nyquist .endif -.if defined(WITH_PORTMIXER) +.if ${PORT_OPTIONS:MPORTMIXER} CONFIGURE_ARGS+= --with-portmixer .else CONFIGURE_ARGS+= --without-portmixer .endif -.if defined(WITH_SAMPLERATE) -LIB_DEPENDS+= samplerate.1:${PORTSDIR}/audio/libsamplerate +.if ${PORT_OPTIONS:MSAMPLERATE} +LIB_DEPENDS+= samplerate:${PORTSDIR}/audio/libsamplerate CONFIGURE_ARGS+= --with-libsamplerate .else CONFIGURE_ARGS+= --without-libsamplerate .endif -.if defined(WITH_SBSMS) +.if ${PORT_OPTIONS:MSBSMS} CONFIGURE_ARGS+= --with-sbsms .else CONFIGURE_ARGS+= --without-sbsms .endif -.if defined(WITH_SOUNDTOUCH) -LIB_DEPENDS+= SoundTouch.0:${PORTSDIR}/audio/soundtouch +.if ${PORT_OPTIONS:MSOUNDTOUCH} +LIB_DEPENDS+= SoundTouch:${PORTSDIR}/audio/soundtouch CONFIGURE_ARGS+= --with-soundtouch .else CONFIGURE_ARGS+= --without-soundtouch .endif -.if defined(WITH_TWOLAME) -LIB_DEPENDS+= twolame.0:${PORTSDIR}/audio/twolame +.if ${PORT_OPTIONS:MTWOLAME} +LIB_DEPENDS+= twolame:${PORTSDIR}/audio/twolame CONFIGURE_ARGS+= --with-libtwolame .else CONFIGURE_ARGS+= --without-libtwolame .endif -.if defined(WITH_TAGLIB) -LIB_DEPENDS+= tag.1:${PORTSDIR}/audio/taglib +.if ${PORT_OPTIONS:MTAGLIB} +LIB_DEPENDS+= tag:${PORTSDIR}/audio/taglib CONFIGURE_ARGS+= --with-taglib .else CONFIGURE_ARGS+= --without-taglib .endif -.if defined(WITH_VAMP) +.if ${PORT_OPTIONS:MVAMP} CONFIGURE_ARGS+= --with-libvamp .else CONFIGURE_ARGS+= --without-libvamp .endif -.if defined(WITH_VORBIS) -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +.if ${PORT_OPTIONS:MVORBIS} +LIB_DEPENDS+= vorbis:${PORTSDIR}/audio/libvorbis CONFIGURE_ARGS+= --with-libvorbis .else CONFIGURE_ARGS+= --without-libvorbis .endif post-patch: #audacity links to some dependencies if present, even if explicitly disabled. #these must be patched out for the case when they are installed but #option-disabled to avoid unrecorded dependencies. -.if defined(WITHOUT_JACK) +.if empty(PORT_OPTIONS:MJACK) @${REINPLACE_CMD} -e 's|PKG_CHECK_MODULES(JACK, jack, have_jack=yes, have_jack=no)|have_jack=no|' ${WRKSRC}/configure.in .endif -.if defined(WITHOUT_SAMPLERATE) +.if empty(PORT_OPTIONS:MSAMPLERATE) @${REINPLACE_CMD} -e 's|libresample.a -lsamplerate $(LIBS)|libresample.a $(LIBS)|' ${WRKSRC}/lib-src/libresample/Makefile.in .endif -.include +.include Property changes on: head/audio/audacity/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.47 \ No newline at end of property +1.48 \ No newline at end of property Index: head/audio/audacity/distinfo =================================================================== --- head/audio/audacity/distinfo (revision 300479) +++ head/audio/audacity/distinfo (revision 300480) @@ -1,2 +1,2 @@ -SHA256 (audacity-minsrc-2.0.0.tar.bz2) = d849288ca5f90764d497953e7d2744e269bfbb6f71840762c66419e4c68aeb6a -SIZE (audacity-minsrc-2.0.0.tar.bz2) = 6625078 +SHA256 (audacity-minsrc-2.0.1.tar.bz2) = bda21ec18233e683ab9ef983ece9eb0637198743aac84624b42b04756822e52a +SIZE (audacity-minsrc-2.0.1.tar.bz2) = 6771643 Property changes on: head/audio/audacity/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.8 \ No newline at end of property +1.9 \ No newline at end of property Index: head/audio/audacity/pkg-plist =================================================================== --- head/audio/audacity/pkg-plist (revision 300479) +++ head/audio/audacity/pkg-plist (revision 300480) @@ -1,157 +1,159 @@ bin/audacity share/applications/audacity.desktop %%DATADIR%%/EQDefaultCurves.xml %%DATADIR%%/nyquist/bug.lsp %%DATADIR%%/nyquist/dspprims.lsp %%DATADIR%%/nyquist/envelopes.lsp %%DATADIR%%/nyquist/equalizer.lsp %%DATADIR%%/nyquist/evalenv.lsp %%DATADIR%%/nyquist/fileio.lsp %%DATADIR%%/nyquist/follow.lsp %%DATADIR%%/nyquist/init.lsp %%DATADIR%%/nyquist/misc.lsp %%DATADIR%%/nyquist/nyinit.lsp %%DATADIR%%/nyquist/nyqmisc.lsp %%DATADIR%%/nyquist/nyquist-plot.txt %%DATADIR%%/nyquist/nyquist.lsp %%DATADIR%%/nyquist/printrec.lsp %%DATADIR%%/nyquist/profile.lsp %%DATADIR%%/nyquist/rawwaves/mand1.raw %%DATADIR%%/nyquist/rawwaves/mand10.raw %%DATADIR%%/nyquist/rawwaves/mand11.raw %%DATADIR%%/nyquist/rawwaves/mand12.raw %%DATADIR%%/nyquist/rawwaves/mand2.raw %%DATADIR%%/nyquist/rawwaves/mand3.raw %%DATADIR%%/nyquist/rawwaves/mand4.raw %%DATADIR%%/nyquist/rawwaves/mand5.raw %%DATADIR%%/nyquist/rawwaves/mand6.raw %%DATADIR%%/nyquist/rawwaves/mand7.raw %%DATADIR%%/nyquist/rawwaves/mand8.raw %%DATADIR%%/nyquist/rawwaves/mand9.raw %%DATADIR%%/nyquist/rawwaves/mandpluk.raw %%DATADIR%%/nyquist/rawwaves/marmstk1.raw %%DATADIR%%/nyquist/rawwaves/sinewave.raw %%DATADIR%%/nyquist/sal-parse.lsp %%DATADIR%%/nyquist/sal.lsp %%DATADIR%%/nyquist/seq.lsp %%DATADIR%%/nyquist/seqfnint.lsp %%DATADIR%%/nyquist/seqmidi.lsp %%DATADIR%%/nyquist/sndfnint.lsp %%DATADIR%%/nyquist/stk.lsp %%DATADIR%%/nyquist/system.lsp %%DATADIR%%/nyquist/xlinit.lsp %%DATADIR%%/nyquist/xm.lsp %%DATADIR%%/plug-ins/SilenceMarker.ny %%DATADIR%%/plug-ins/SoundFinder.ny %%DATADIR%%/plug-ins/beat.ny %%DATADIR%%/plug-ins/clicktrack.ny %%DATADIR%%/plug-ins/clipfix.ny %%DATADIR%%/plug-ins/crossfadein.ny %%DATADIR%%/plug-ins/crossfadeout.ny %%DATADIR%%/plug-ins/delay.ny %%DATADIR%%/plug-ins/equalabel.ny %%DATADIR%%/plug-ins/highpass.ny %%DATADIR%%/plug-ins/lowpass.ny %%DATADIR%%/plug-ins/notch.ny %%DATADIR%%/plug-ins/pluck.ny %%DATADIR%%/plug-ins/rissetdrum.ny +%%DATADIR%%/plug-ins/sample-data-export.ny %%DATADIR%%/plug-ins/tremolo.ny %%DATADIR%%/plug-ins/vocalremover.ny %%DATADIR%%/plug-ins/vocoder.ny -%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt +%%PORTDOCS%%%%DOCSDIR%%/README.txt %%PORTDOCS%%@dirrmtry %%DOCSDIR%% share/icons/hicolor/16x16/apps/audacity.png share/icons/hicolor/22x22/apps/audacity.png share/icons/hicolor/24x24/apps/audacity.png share/icons/hicolor/32x32/apps/audacity.png share/icons/hicolor/48x48/apps/audacity.png share/icons/hicolor/scalable/apps/audacity.svg share/locale/af/LC_MESSAGES/audacity.mo share/locale/ar/LC_MESSAGES/audacity.mo share/locale/be/LC_MESSAGES/audacity.mo share/locale/bg/LC_MESSAGES/audacity.mo share/locale/bn/LC_MESSAGES/audacity.mo share/locale/bs/LC_MESSAGES/audacity.mo share/locale/ca/LC_MESSAGES/audacity.mo share/locale/ca@valencia/LC_MESSAGES/audacity.mo share/locale/cs/LC_MESSAGES/audacity.mo share/locale/cy/LC_MESSAGES/audacity.mo share/locale/da/LC_MESSAGES/audacity.mo share/locale/de/LC_MESSAGES/audacity.mo share/locale/el/LC_MESSAGES/audacity.mo share/locale/es/LC_MESSAGES/audacity.mo share/locale/eu/LC_MESSAGES/audacity.mo share/locale/fa/LC_MESSAGES/audacity.mo share/locale/fi/LC_MESSAGES/audacity.mo share/locale/fr/LC_MESSAGES/audacity.mo share/locale/ga/LC_MESSAGES/audacity.mo share/locale/gl/LC_MESSAGES/audacity.mo share/locale/he/LC_MESSAGES/audacity.mo share/locale/hi/LC_MESSAGES/audacity.mo share/locale/hu/LC_MESSAGES/audacity.mo share/locale/id/LC_MESSAGES/audacity.mo share/locale/it/LC_MESSAGES/audacity.mo share/locale/ja/LC_MESSAGES/audacity.mo share/locale/ka/LC_MESSAGES/audacity.mo share/locale/km/LC_MESSAGES/audacity.mo share/locale/ko/LC_MESSAGES/audacity.mo share/locale/lt/LC_MESSAGES/audacity.mo share/locale/mk/LC_MESSAGES/audacity.mo share/locale/my/LC_MESSAGES/audacity.mo share/locale/nb/LC_MESSAGES/audacity.mo share/locale/nl/LC_MESSAGES/audacity.mo share/locale/oc/LC_MESSAGES/audacity.mo share/locale/pl/LC_MESSAGES/audacity.mo share/locale/pt/LC_MESSAGES/audacity.mo share/locale/pt_BR/LC_MESSAGES/audacity.mo share/locale/ro/LC_MESSAGES/audacity.mo share/locale/ru/LC_MESSAGES/audacity.mo share/locale/sk/LC_MESSAGES/audacity.mo share/locale/sl/LC_MESSAGES/audacity.mo share/locale/sr_RS/LC_MESSAGES/audacity.mo +share/locale/sr_RS@latin/LC_MESSAGES/audacity.mo share/locale/sv/LC_MESSAGES/audacity.mo share/locale/tg/LC_MESSAGES/audacity.mo share/locale/tr/LC_MESSAGES/audacity.mo share/locale/uk/LC_MESSAGES/audacity.mo share/locale/vi/LC_MESSAGES/audacity.mo share/locale/zh/LC_MESSAGES/audacity.mo share/locale/zh_TW/LC_MESSAGES/audacity.mo share/mime/packages/audacity.xml share/pixmaps/audacity.xpm share/pixmaps/audacity16.xpm share/pixmaps/audacity32.xpm share/pixmaps/gnome-mime-application-x-audacity-project.xpm @dirrmtry share/mime/packages @dirrmtry share/mime +@dirrmtry share/locale/sr_RS@latin/LC_MESSAGES +@dirrmtry share/locale/sr_RS@latin @dirrmtry share/locale/sr_RS/LC_MESSAGES @dirrmtry share/locale/sr_RS @dirrmtry share/locale/oc/LC_MESSAGES @dirrmtry share/locale/oc @dirrmtry share/locale/my/LC_MESSAGES @dirrmtry share/locale/my @dirrmtry share/locale/km/LC_MESSAGES @dirrmtry share/locale/km @dirrmtry share/locale/ca@valencia/LC_MESSAGES @dirrmtry share/locale/ca@valencia -@dirrmtry share/licenses/audacity-2.0.0 -@dirrmtry share/licenses @dirrmtry share/icons/hicolor/scalable/apps @dirrmtry share/icons/hicolor/scalable @dirrmtry share/icons/hicolor/48x48/apps @dirrmtry share/icons/hicolor/48x48 @dirrmtry share/icons/hicolor/32x32/apps @dirrmtry share/icons/hicolor/32x32 @dirrmtry share/icons/hicolor/24x24/apps @dirrmtry share/icons/hicolor/24x24 @dirrmtry share/icons/hicolor/22x22/apps @dirrmtry share/icons/hicolor/22x22 @dirrmtry share/icons/hicolor/16x16/apps @dirrmtry share/icons/hicolor/16x16 @dirrmtry share/icons/hicolor @dirrmtry share/icons @dirrmtry %%DATADIR%%/plug-ins @dirrmtry %%DATADIR%%/nyquist/rawwaves @dirrmtry %%DATADIR%%/nyquist @dirrmtry %%DATADIR%% @dirrmtry share/applications Property changes on: head/audio/audacity/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property