View | Details | Raw Unified | Return to bug 175540
Collapse All | Expand All

(-)audacity-new/Makefile (-11 / +8 lines)
Lines 2-8 Link Here
2
# $FreeBSD: ports/audio/audacity/Makefile,v 1.53 2013/01/02 12:47:04 svnexp Exp $
2
# $FreeBSD: ports/audio/audacity/Makefile,v 1.53 2013/01/02 12:47:04 svnexp Exp $
3
3
4
PORTNAME=	audacity
4
PORTNAME=	audacity
5
PORTVERSION=	2.0.2
5
PORTVERSION=	2.0.3
6
CATEGORIES=	audio
6
CATEGORIES=	audio
7
MASTER_SITES=	GOOGLE_CODE \
7
MASTER_SITES=	GOOGLE_CODE \
8
		SF/${PORTNAME}/${PORTNAME}-unstable/${PORTVERSION}
8
		SF/${PORTNAME}/${PORTNAME}-unstable/${PORTVERSION}
Lines 24-30 Link Here
24
GNU_CONFIGURE=	yes
24
GNU_CONFIGURE=	yes
25
USE_GMAKE=	yes
25
USE_GMAKE=	yes
26
USE_GETTEXT=	yes
26
USE_GETTEXT=	yes
27
USE_BZIP2=	yes
27
USE_XZ=		yes
28
USE_WX=		2.8
28
USE_WX=		2.8
29
WX_UNICODE=	yes
29
WX_UNICODE=	yes
30
WX_COMPS=	wx
30
WX_COMPS=	wx
Lines 34-48 Link Here
34
MANCOMPRESSED=	yes
34
MANCOMPRESSED=	yes
35
35
36
OPTIONS_DEFINE=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST PORTMIXER \
36
OPTIONS_DEFINE=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST PORTMIXER \
37
		SAMPLERATE SBSMS SOUNDTOUCH TAGLIB TWOLAME VAMP VORBIS
37
		SAMPLERATE SBSMS SSE TAGLIB TWOLAME VAMP VORBIS
38
OPTIONS_DEFAULT=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST \
38
OPTIONS_DEFAULT=	DOCS FFMPEG FLAC ID3TAG JACK LADSPA MAD NYQUIST \
39
			PORTMIXER SAMPLERATE SBSMS SOUNDTOUCH TAGLIB \
39
			PORTMIXER SAMPLERATE SBSMS SSE TAGLIB \
40
			TWOLAME VAMP VORBIS
40
			TWOLAME VAMP VORBIS
41
41
42
NYQUIST_DESC=	Nyquist plug-in support
42
NYQUIST_DESC=	Nyquist plug-in support
43
PORTMIXER_DESC=	Compile with PortMixer support
43
PORTMIXER_DESC=	Compile with PortMixer support
44
SBSMS_DESC=	Support libsbsms for pitch and tempo changing
44
SBSMS_DESC=	Use libsbsms for pitch and tempo changing
45
SOUNDTOUCH_DESC=	Use libSoundTouch for pitch and tempo changing
45
SSE=		Enable SSE optimizations
46
TAGLIB_DESC=	Use TagLib for metadata support
46
TAGLIB_DESC=	Use TagLib for metadata support
47
TWOLAME_DESC=	Use libtwolame for MP2 export support
47
TWOLAME_DESC=	Use libtwolame for MP2 export support
48
VAMP_DESC=	Vamp plug-in support
48
VAMP_DESC=	Vamp plug-in support
Lines 139-149 Link Here
139
CONFIGURE_ARGS+=	--without-sbsms
139
CONFIGURE_ARGS+=	--without-sbsms
140
.endif
140
.endif
141
141
142
.if ${PORT_OPTIONS:MSOUNDTOUCH}
142
.if ${PORT_OPTIONS:MSSE}
143
LIB_DEPENDS+=		SoundTouch:${PORTSDIR}/audio/soundtouch
143
CONFIGURE_ARGS+=	--with-sse
144
CONFIGURE_ARGS+=	--with-soundtouch
145
.else
146
CONFIGURE_ARGS+=	--without-soundtouch
147
.endif
144
.endif
148
145
149
.if ${PORT_OPTIONS:MTWOLAME}
146
.if ${PORT_OPTIONS:MTWOLAME}
(-)audacity-new/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (audacity-minsrc-2.0.2.tar.bz2) = ac8a5ec62a5748de7f885fb3f82a6b6acdb26b28276827a678ec17ce65b9879d
1
SHA256 (audacity-minsrc-2.0.3.tar.xz) = 2e481eab900a31817d273e7e3e8b8c127b0d3cc55d8efa46dd005177615f8bcc
2
SIZE (audacity-minsrc-2.0.2.tar.bz2) = 6794285
2
SIZE (audacity-minsrc-2.0.3.tar.xz) = 5116320
(-)audacity-new/files/patch-Makefile.in (-6 / +7 lines)
Lines 1-13 Link Here
1
--- Makefile.in	2008-06-25 09:55:22.000000000 -0300
1
--- Makefile.in	2013-01-23 01:13:53.000000000 -0800
2
+++ Makefile.in.new	2008-06-25 09:58:26.000000000 -0300
2
+++ Makefile.in.new	2013-01-23 01:13:34.000000000 -0800
3
@@ -31,11 +31,12 @@
3
@@ -31,11 +31,12 @@
4
 	$(INSTALL) -d $(DESTDIR)$(BINDIR)
4
 	$(INSTALL) -m 755 audacity $(DESTDIR)$(BINDIR)/$(AUDACITY_NAME)
5
 	$(INSTALL) -m 755 audacity $(DESTDIR)$(BINDIR)/$(AUDACITY_NAME)
5
 
6
 
6
 	# install docs
7
+ifeq ($(DOC),yes)
7
+ifeq ($(DOC),yes)
8
 	$(INSTALL) -d $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)
8
 	# install docs
9
 	$(INSTALL) -m 644 README.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/README.txt
9
 	$(INSTALL) -d $(DESTDIR)$(DOCDIR)/
10
 	$(INSTALL) -m 644 LICENSE.txt $(DESTDIR)$(DATADIR)/doc/$(AUDACITY_NAME)/LICENSE.txt
10
 	$(INSTALL) -m 644 README.txt $(DESTDIR)$(DOCDIR)/README.txt
11
 	$(INSTALL) -m 644 LICENSE.txt $(DESTDIR)$(DOCDIR)/LICENSE.txt
11
-
12
-
12
+endif
13
+endif
13
 	# install manpage
14
 	# install manpage
(-)audacity-new/pkg-plist (-3 / +6 lines)
Lines 43-48 Link Here
43
%%DATADIR%%/nyquist/xm.lsp
43
%%DATADIR%%/nyquist/xm.lsp
44
%%DATADIR%%/plug-ins/SilenceMarker.ny
44
%%DATADIR%%/plug-ins/SilenceMarker.ny
45
%%DATADIR%%/plug-ins/SoundFinder.ny
45
%%DATADIR%%/plug-ins/SoundFinder.ny
46
%%DATADIR%%/plug-ins/StudioFadeOut.ny
47
%%DATADIR%%/plug-ins/adjustable-fade.ny
46
%%DATADIR%%/plug-ins/beat.ny
48
%%DATADIR%%/plug-ins/beat.ny
47
%%DATADIR%%/plug-ins/clicktrack.ny
49
%%DATADIR%%/plug-ins/clicktrack.ny
48
%%DATADIR%%/plug-ins/clipfix.ny
50
%%DATADIR%%/plug-ins/clipfix.ny
Lines 59-73 Link Here
59
%%DATADIR%%/plug-ins/tremolo.ny
61
%%DATADIR%%/plug-ins/tremolo.ny
60
%%DATADIR%%/plug-ins/vocalremover.ny
62
%%DATADIR%%/plug-ins/vocalremover.ny
61
%%DATADIR%%/plug-ins/vocoder.ny
63
%%DATADIR%%/plug-ins/vocoder.ny
62
%%PORTDOCS%%%%DOCSDIR%%/LICENSE.txt
63
%%PORTDOCS%%%%DOCSDIR%%/README.txt
64
%%PORTDOCS%%@dirrmtry %%DOCSDIR%%
65
share/icons/hicolor/16x16/apps/audacity.png
64
share/icons/hicolor/16x16/apps/audacity.png
66
share/icons/hicolor/22x22/apps/audacity.png
65
share/icons/hicolor/22x22/apps/audacity.png
67
share/icons/hicolor/24x24/apps/audacity.png
66
share/icons/hicolor/24x24/apps/audacity.png
68
share/icons/hicolor/32x32/apps/audacity.png
67
share/icons/hicolor/32x32/apps/audacity.png
69
share/icons/hicolor/48x48/apps/audacity.png
68
share/icons/hicolor/48x48/apps/audacity.png
70
share/icons/hicolor/scalable/apps/audacity.svg
69
share/icons/hicolor/scalable/apps/audacity.svg
70
%%PORTDOCS%%%%DOCSDIR%%/GPLv2
71
%%PORTDOCS%%%%DOCSDIR%%/LICENSE
72
%%PORTDOCS%%%%DOCSDIR%%/catalog.mk
71
share/locale/af/LC_MESSAGES/audacity.mo
73
share/locale/af/LC_MESSAGES/audacity.mo
72
share/locale/ar/LC_MESSAGES/audacity.mo
74
share/locale/ar/LC_MESSAGES/audacity.mo
73
share/locale/be/LC_MESSAGES/audacity.mo
75
share/locale/be/LC_MESSAGES/audacity.mo
Lines 90-95 Link Here
90
share/locale/gl/LC_MESSAGES/audacity.mo
92
share/locale/gl/LC_MESSAGES/audacity.mo
91
share/locale/he/LC_MESSAGES/audacity.mo
93
share/locale/he/LC_MESSAGES/audacity.mo
92
share/locale/hi/LC_MESSAGES/audacity.mo
94
share/locale/hi/LC_MESSAGES/audacity.mo
95
share/locale/hr/LC_MESSAGES/audacity.mo
93
share/locale/hu/LC_MESSAGES/audacity.mo
96
share/locale/hu/LC_MESSAGES/audacity.mo
94
share/locale/id/LC_MESSAGES/audacity.mo
97
share/locale/id/LC_MESSAGES/audacity.mo
95
share/locale/it/LC_MESSAGES/audacity.mo
98
share/locale/it/LC_MESSAGES/audacity.mo

Return to bug 175540