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

(-)audacious/Makefile (-1 / +39 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	audacious
8
PORTNAME=	audacious
9
PORTVERSION=	0.1.2
9
PORTVERSION=	0.1.2
10
PORTREVISION=	1
10
CATEGORIES=	multimedia audio
11
CATEGORIES=	multimedia audio
11
MASTER_SITES=	http://audacious-media-player.org/release/
12
MASTER_SITES=	http://audacious-media-player.org/release/
12
DISTNAME=	audacious-${PORTVERSION}
13
DISTNAME=	audacious-${PORTVERSION}
Lines 30-37 Link Here
30
		INPUT_PLUGINS="${INPUT_PLUGINS}" \
31
		INPUT_PLUGINS="${INPUT_PLUGINS}" \
31
		OUTPUT_PLUGINS="${OUTPUT_PLUGINS}" \
32
		OUTPUT_PLUGINS="${OUTPUT_PLUGINS}" \
32
		VISUALIZATION_PLUGINS="${VISUALIZATION_PLUGINS}"
33
		VISUALIZATION_PLUGINS="${VISUALIZATION_PLUGINS}"
34
33
MAN1=		audacious.1
35
MAN1=		audacious.1
34
36
37
PORTDOCS=	README AUTHORS ChangeLog NEWS FAQ
38
35
INPUT_PLUGINS=	cdaudio,mpg123,wav,tonegen,wma,console
39
INPUT_PLUGINS=	cdaudio,mpg123,wav,tonegen,wma,console
36
OUTPUT_PLUGINS=	OSS,disk_writer,crossfade
40
OUTPUT_PLUGINS=	OSS,disk_writer,crossfade
37
VISUALIZATION_PLUGINS=	blur_scope
41
VISUALIZATION_PLUGINS=	blur_scope
Lines 39-47 Link Here
39
OPTIONS=	VORBIS	"Enable Ogg Vorbis input" on \
43
OPTIONS=	VORBIS	"Enable Ogg Vorbis input" on \
40
		FLAC	"Enable flac input" on \
44
		FLAC	"Enable flac input" on \
41
		ESOUND	"Enable Esound output"  off \
45
		ESOUND	"Enable Esound output"  off \
46
		VISUAL	"Enable libvisual plugin" off \
42
		ID3V2	"Enable id3v2 editing" off \
47
		ID3V2	"Enable id3v2 editing" off \
43
		SIMD	"build with x86 SIMD(3DNow!/MMX) instructions support" on \
48
		SIMD	"Build with x86 SIMD(3DNow!/MMX) instructions support" on \
44
		SDL	"Enable SDL support" off \
49
		SDL	"Enable SDL support" off \
50
		GNOME	"Build with gnomevfs/gconf support" off
45
51
46
.include <bsd.port.pre.mk>
52
.include <bsd.port.pre.mk>
47
53
Lines 77-82 Link Here
77
PLIST_SUB+=	ESDPLUGIN:="@comment "
83
PLIST_SUB+=	ESDPLUGIN:="@comment "
78
.endif
84
.endif
79
85
86
.if defined(WITH_VISUAL)
87
PLIST_SUB+=	LIBVISUAL:=""
88
VISUALIZATION_PLUGINS+=	libvisual-proxy
89
LIB_DEPENDS+=	visual.0:${PORTSDIR}/graphics/libvisual
90
.else
91
PLIST_SUB+=	LIBVISUAL:="@comment "
92
.endif
93
80
.if defined(WITH_ID3V2)
94
.if defined(WITH_ID3V2)
81
LIB_DEPENDS+=	id3-3.8.3:${PORTSDIR}/audio/id3lib
95
LIB_DEPENDS+=	id3-3.8.3:${PORTSDIR}/audio/id3lib
82
.endif
96
.endif
Lines 93-98 Link Here
93
USE_SDL=	sdl
107
USE_SDL=	sdl
94
.endif
108
.endif
95
109
110
.if defined(WITH_GNOME)
111
USE_GNOME+=	gconf2 gnomevfs2
112
CONFIGURE_ARGS+=	--enable-gnome-vfs --enable-gconf
113
.endif
114
96
post-patch:
115
post-patch:
97
	@${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g' \
116
	@${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|g' \
98
		${WRKSRC}/Makefile.in
117
		${WRKSRC}/Makefile.in
Lines 101-105 Link Here
101
120
102
post-install:
121
post-install:
103
	@${CAT} ${PKGMESSAGE}
122
	@${CAT} ${PKGMESSAGE}
123
.if defined(WITH_GNOME)
124
	@${ECHO_MSG} ""
125
	@${ECHO_MSG} "You have installed audacious with gconf support."
126
	@${ECHO_MSG} "ALL PRESETS will be storing in the gconf database."
127
	@${ECHO_MSG} ""
128
.endif
129
.if defined(WITH_VISUAL)
130
	@${ECHO_MSG} ""
131
	@${ECHO_MSG} "You have installed audacious with libvisual support."
132
	@${ECHO_MSG} "If you want to be able to access any visualizations,"
133
	@${ECHO_MSG} "you must install the graphics/libvisual-plugins port."
134
	@${ECHO_MSG} ""
135
.endif
136
.if !defined(NOPORTDOCS)
137
	@${MKDIR} ${DOCSDIR}
138
.for i in README AUTHORS ChangeLog NEWS FAQ
139
	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
140
.endfor
141
.endif
104
142
105
.include <bsd.port.post.mk>
143
.include <bsd.port.post.mk>
(-)audacious/pkg-plist (+1 lines)
Lines 27-32 Link Here
27
lib/audacious/Output/libcrossfade.so.0
27
lib/audacious/Output/libcrossfade.so.0
28
lib/audacious/Output/libdisk_writer.so
28
lib/audacious/Output/libdisk_writer.so
29
lib/audacious/Visualization/libbscope.so
29
lib/audacious/Visualization/libbscope.so
30
%%LIBVISUAL:%%lib/audacious/Visualization/libvisual_proxy.so
30
lib/libaudacious.a
31
lib/libaudacious.a
31
lib/libaudacious.so
32
lib/libaudacious.so
32
lib/libaudacious.so.2
33
lib/libaudacious.so.2

Return to bug 91384