ports/175540: Upgrade audacity 2.0.2 to 2.0.3

Jack Low xxjack12xx at gmail.com
Thu Jan 24 08:30:00 UTC 2013


>Number:         175540
>Category:       ports
>Synopsis:       Upgrade audacity 2.0.2 to 2.0.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jan 24 08:30:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Jack Low
>Release:        9.1-STABLE
>Organization:
>Environment:
FreeBSD streamer.prdhost.com 9.1-STABLE FreeBSD 9.1-STABLE #0 r245768M: Tue Jan 22 05:08:16 PST 2013     jack at streamer.prdhost.com:/usr/obj/usr/src/sys/GENERIC  amd64

>Description:
Upgrade audacity 2.0.2 to audacity 2.0.3
>How-To-Repeat:
Apply patch
>Fix:
Apply patch

Patch attached with submission follows:

diff -urN audacity/Makefile audacity-new/Makefile
--- audacity/Makefile	2013-01-02 04:47:04.000000000 -0800
+++ audacity-new/Makefile	2013-01-23 06:01:17.000000000 -0800
@@ -2,7 +2,7 @@
 # $FreeBSD: ports/audio/audacity/Makefile,v 1.53 2013/01/02 12:47:04 svnexp Exp $
 
 PORTNAME=	audacity
-PORTVERSION=	2.0.2
+PORTVERSION=	2.0.3
 CATEGORIES=	audio
 MASTER_SITES=	GOOGLE_CODE \
 		SF/${PORTNAME}/${PORTNAME}-unstable/${PORTVERSION}
@@ -24,7 +24,7 @@
 GNU_CONFIGURE=	yes
 USE_GMAKE=	yes
 USE_GETTEXT=	yes
-USE_BZIP2=	yes
+USE_XZ=		yes
 USE_WX=		2.8
 WX_UNICODE=	yes
 WX_COMPS=	wx
@@ -34,15 +34,15 @@
 MANCOMPRESSED=	yes
 
 OPTIONS_DEFINE=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST PORTMIXER \
-		SAMPLERATE SBSMS SOUNDTOUCH TAGLIB TWOLAME VAMP VORBIS
+		SAMPLERATE SBSMS SSE TAGLIB TWOLAME VAMP VORBIS
 OPTIONS_DEFAULT=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST \
-			PORTMIXER SAMPLERATE SBSMS SOUNDTOUCH TAGLIB \
+			PORTMIXER SAMPLERATE SBSMS SSE TAGLIB \
 			TWOLAME VAMP VORBIS
 
 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
+SBSMS_DESC=	Use libsbsms for pitch and tempo changing
+SSE=		Enable SSE optimizations
 TAGLIB_DESC=	Use TagLib for metadata support
 TWOLAME_DESC=	Use libtwolame for MP2 export support
 VAMP_DESC=	Vamp plug-in support
@@ -139,11 +139,8 @@
 CONFIGURE_ARGS+=	--without-sbsms
 .endif
 
-.if ${PORT_OPTIONS:MSOUNDTOUCH}
-LIB_DEPENDS+=		SoundTouch:${PORTSDIR}/audio/soundtouch
-CONFIGURE_ARGS+=	--with-soundtouch
-.else
-CONFIGURE_ARGS+=	--without-soundtouch
+.if ${PORT_OPTIONS:MSSE}
+CONFIGURE_ARGS+=	--with-sse
 .endif
 
 .if ${PORT_OPTIONS:MTWOLAME}
diff -urN audacity/distinfo audacity-new/distinfo
--- audacity/distinfo	2012-09-01 06:56:11.000000000 -0700
+++ audacity-new/distinfo	2013-01-23 01:11:17.000000000 -0800
@@ -1,2 +1,2 @@
-SHA256 (audacity-minsrc-2.0.2.tar.bz2) = ac8a5ec62a5748de7f885fb3f82a6b6acdb26b28276827a678ec17ce65b9879d
-SIZE (audacity-minsrc-2.0.2.tar.bz2) = 6794285
+SHA256 (audacity-minsrc-2.0.3.tar.xz) = 2e481eab900a31817d273e7e3e8b8c127b0d3cc55d8efa46dd005177615f8bcc
+SIZE (audacity-minsrc-2.0.3.tar.xz) = 5116320
diff -urN audacity/files/patch-Makefile.in audacity-new/files/patch-Makefile.in
--- audacity/files/patch-Makefile.in	2012-05-30 13:43:12.000000000 -0700
+++ audacity-new/files/patch-Makefile.in	2013-01-23 01:14:09.000000000 -0800
@@ -1,13 +1,14 @@
---- Makefile.in	2008-06-25 09:55:22.000000000 -0300
-+++ Makefile.in.new	2008-06-25 09:58:26.000000000 -0300
+--- Makefile.in	2013-01-23 01:13:53.000000000 -0800
++++ Makefile.in.new	2013-01-23 01:13:34.000000000 -0800
 @@ -31,11 +31,12 @@
+ 	$(INSTALL) -d $(DESTDIR)$(BINDIR)
  	$(INSTALL) -m 755 audacity $(DESTDIR)$(BINDIR)/$(AUDACITY_NAME)
  
- 	# install docs
 +ifeq ($(DOC),yes)
- 	$(INSTALL) -d $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)
- 	$(INSTALL) -m 644 README.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/README.txt
- 	$(INSTALL) -m 644 LICENSE.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/LICENSE.txt
+ 	# install docs
+ 	$(INSTALL) -d $(DESTDIR)$(DOCDIR)/
+ 	$(INSTALL) -m 644 README.txt $(DESTDIR)$(DOCDIR)/README.txt
+ 	$(INSTALL) -m 644 LICENSE.txt $(DESTDIR)$(DOCDIR)/LICENSE.txt
 -
 +endif
  	# install manpage
diff -urN audacity/pkg-plist audacity-new/pkg-plist
--- audacity/pkg-plist	2012-09-01 12:46:03.000000000 -0700
+++ audacity-new/pkg-plist	2013-01-24 00:13:03.000000000 -0800
@@ -43,6 +43,8 @@
 %%DATADIR%%/nyquist/xm.lsp
 %%DATADIR%%/plug-ins/SilenceMarker.ny
 %%DATADIR%%/plug-ins/SoundFinder.ny
+%%DATADIR%%/plug-ins/StudioFadeOut.ny
+%%DATADIR%%/plug-ins/adjustable-fade.ny
 %%DATADIR%%/plug-ins/beat.ny
 %%DATADIR%%/plug-ins/clicktrack.ny
 %%DATADIR%%/plug-ins/clipfix.ny
@@ -59,15 +61,15 @@
 %%DATADIR%%/plug-ins/tremolo.ny
 %%DATADIR%%/plug-ins/vocalremover.ny
 %%DATADIR%%/plug-ins/vocoder.ny
-%%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
+%%PORTDOCS%%%%DOCSDIR%%/GPLv2
+%%PORTDOCS%%%%DOCSDIR%%/LICENSE
+%%PORTDOCS%%%%DOCSDIR%%/catalog.mk
 share/locale/af/LC_MESSAGES/audacity.mo
 share/locale/ar/LC_MESSAGES/audacity.mo
 share/locale/be/LC_MESSAGES/audacity.mo
@@ -90,6 +92,7 @@
 share/locale/gl/LC_MESSAGES/audacity.mo
 share/locale/he/LC_MESSAGES/audacity.mo
 share/locale/hi/LC_MESSAGES/audacity.mo
+share/locale/hr/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


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-ports-bugs mailing list