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

(-)audacity-new/Makefile (-16 / +49 lines)
Lines 29-51 Link Here
29
USE_GETTEXT=	yes
29
USE_GETTEXT=	yes
30
USE_BZIP2=	yes
30
USE_BZIP2=	yes
31
USE_WX=		2.8
31
USE_WX=		2.8
32
MAKE_JOBS_SAFE=	yes
33
WX_COMPS=	wx
32
WX_COMPS=	wx
33
MAKE_JOBS_SAFE=	yes
34
PORTDOCS=	README.txt LICENSE.txt
34
PORTDOCS=	README.txt LICENSE.txt
35
36
MAN1=		audacity.1
35
MAN1=		audacity.1
37
MANCOMPRESSED=	yes
36
MANCOMPRESSED=	yes
38
37
39
OPTIONS=	VORBIS		"Use libvorbis for Ogg Vorbis support"	on \
38
OPTIONS=	DEBUG		"enable debug support" off \
40
		MAD		"Use libmad for mp2/3 decoding support"	on \
39
		FFMPEG		"Use ffmpeg for import and export support" on \
41
		FLAC		"Use libFLAC for FLAC support" on \
40
		FLAC		"Use libFLAC for FLAC support" on \
42
		ID3TAG		"Use libid3tag for mp3 id3 tag support" on \
41
		ID3TAG		"Use libid3tag for mp3 id3 tag support" on \
42
		LADSPA		"enable LADSPA plug-in support" on \
43
		MAD		"Use libmad for mp2/3 decoding support"	on \
44
		MIDI		"Use portSMF for Midi support" on \
45
		NYQUIST		"enable Nyquist plug-in support" on \
46
		PORTMIXER	"compile with PortMixer" on \
43
		SAMPLERATE	"Use libresample for sample rate conversion" on \
47
		SAMPLERATE	"Use libresample for sample rate conversion" on \
44
		SBSMS		"Use libsbsms for pitch and tempo changing" on \
48
		SBSMS		"Use libsbsms for pitch and tempo changing" on \
45
		SOUNDTOUCH 	"Use libSoundTouch for pitch and tempo changing" on\
49
		SOUNDTOUCH 	"Use libSoundTouch for pitch and tempo changing" on\
50
		TAGLIB		"use TagLib for metadata support" on \
46
		TWOLAME		"Use libtwolame for MP2 export support" on \
51
		TWOLAME		"Use libtwolame for MP2 export support" on \
47
		FFMPEG		"Use ffmpeg for import and export support" on \
52
		UNICODE		"enable unicode support" on \
48
		MIDI		"Use portSMF for Midi support" on
53
		VORBIS		"Use libvorbis for Ogg Vorbis support"	on \
54
		VAMP		"use libvamp for Vamp plug-in support" on
49
55
50
.include <bsd.port.pre.mk>
56
.include <bsd.port.pre.mk>
51
57
Lines 63-76 Link Here
63
MAKE_ENV=	DOC=yes
69
MAKE_ENV=	DOC=yes
64
.endif
70
.endif
65
71
66
CONFIGURE_ARGS+=	--enable-unicode=no
72
.if defined(WITH_DEBUG)
67
73
CONFIGURE_ARGS+=	--with-debug
68
.if defined(WITH_VORBIS)
69
CONFIGURE_ARGS+=	--with-libvorbis
70
.endif
74
.endif
71
75
72
.if defined(WITH_MAD)
76
.if defined(WITH_FFMPEG)
73
CONFIGURE_ARGS+=	--with-libmad
77
CONFIGURE_ARGS+=	--with-ffmpeg
74
.endif
78
.endif
75
79
76
.if defined(WITH_FLAC)
80
.if defined(WITH_FLAC)
Lines 81-86 Link Here
81
CONFIGURE_ARGS+=	--with-libid3tag
85
CONFIGURE_ARGS+=	--with-libid3tag
82
.endif
86
.endif
83
87
88
.if defined(WITH_LADSPA)
89
CONFIGURE_ARGS+=	--with-ladspa
90
.endif
91
92
.if defined(WITH_MAD)
93
CONFIGURE_ARGS+=	--with-libmad
94
.endif
95
96
.if defined(WITH_MIDI)
97
CONFIGURE_ARGS+=	--with-midi
98
.endif
99
100
.if defined(WITH_NYQUIST)
101
CONFIGURE_ARGS+=	--with-nyquist
102
.endif
103
104
.if defined(WITH_PORTMIXER)
105
CONFIGURE_ARGS+=	--with-portmixer
106
.endif
107
84
.if defined(WITH_SAMPLERATE)
108
.if defined(WITH_SAMPLERATE)
85
CONFIGURE_ARGS+=	--with-libresample
109
CONFIGURE_ARGS+=	--with-libresample
86
.endif
110
.endif
Lines 97-108 Link Here
97
CONFIGURE_ARGS+=	--with-libtwolame
121
CONFIGURE_ARGS+=	--with-libtwolame
98
.endif
122
.endif
99
123
100
.if defined(WITH_FFMPEG)
124
.if defined(WITH_TAGLIB)
101
CONFIGURE_ARGS+=	--with-ffmpeg
125
CONFIGURE_ARGS+=	--with-taglib
102
.endif
126
.endif
103
127
104
.if defined(WITH_MIDI)
128
.if defined(WITH_UNICODE)
105
CONFIGURE_ARGS+=	--with-midi
129
WX_UNICODE=	yes
130
CONFIGURE_ARGS+=	--enable-unicode
131
.endif
132
133
.if defined(WITH_VAMP)
134
CONFIGURE_ARGS+=	--with-libvamp
135
.endif
136
137
.if defined(WITH_VORBIS)
138
CONFIGURE_ARGS+=	--with-libvorbis
106
.endif
139
.endif
107
140
108
.include <bsd.port.post.mk>
141
.include <bsd.port.post.mk>
(-)audacity-new/files/patch-cext.h (-1 / +1 lines)
Lines 1-5 Link Here
1
--- lib-src/libnyquist/nyquist/cmt/cext.h       2009-07-15 20:27:36.000000000 -0700
1
--- lib-src/libnyquist/nyquist/cmt/cext.h       2009-07-15 20:27:36.000000000 -0700
2
+++ lib-src/libnyquist/nyquist/cmt/cext.hcext.h 2009-07-19 00:37:45.000000000 -0700
2
+++ lib-src/libnyquist/nyquist/cmt/cext.h       2009-07-19 00:37:45.000000000 -0700
3
3
4
@@ -58,7 +58,7 @@
4
@@ -58,7 +58,7 @@
5
 #include <malloc.h>
5
 #include <malloc.h>
(-)audacity-new/files/patch-xlisp.h (-1 lines)
Lines 16-19 Link Here
16
 /* Apple CC */
16
 /* Apple CC */
17
 #ifdef __APPLE__
17
 #ifdef __APPLE__
18
 #define NNODES 2000
18
 #define NNODES 2000
19

Return to bug 141170