diff options
author | marcus <marcus@FreeBSD.org> | 2003-08-08 00:21:24 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-08-08 00:21:24 +0800 |
commit | 12045090475d8c57f1d225f19eb98bdfbf7f7a62 (patch) | |
tree | 7bb6a776a2a1b5be820db9317716e13c7ba5be21 /audio/rhythmbox | |
parent | 08efe035bbc16e99e4103991022e661def260e37 (diff) | |
download | freebsd-ports-gnome-12045090475d8c57f1d225f19eb98bdfbf7f7a62.tar.gz freebsd-ports-gnome-12045090475d8c57f1d225f19eb98bdfbf7f7a62.tar.zst freebsd-ports-gnome-12045090475d8c57f1d225f19eb98bdfbf7f7a62.zip |
Change WITH_OGG to WITH_VORBIS since Ogg will exist in the default instance
where Vorbis may not. This should fix the configure problem on bento.
Diffstat (limited to 'audio/rhythmbox')
-rw-r--r-- | audio/rhythmbox/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile index c4a7745c396b..1640b894c557 100644 --- a/audio/rhythmbox/Makefile +++ b/audio/rhythmbox/Makefile @@ -14,8 +14,6 @@ MASTER_SITES= http://web.verbum.org/net-rhythmbox/ MAINTAINER= hendrik@scholz.net COMMENT= Audio player for the Gnome 2 desktop environment -BROKEN= Does not configure - LIB_DEPENDS= musicbrainz.2:${PORTSDIR}/audio/libmusicbrainz \ gstplay-0.6.1:${PORTSDIR}/multimedia/gstreamer-plugins \ FLAC.5:${PORTSDIR}/audio/flac \ @@ -34,8 +32,8 @@ CONFIGURE_ARGS= --disable-lirc .if exists(${LOCALBASE}/lib/libxosd.so) WITH_XOSD= yes .endif -.if exists(${LOCALBASE}/lib/libogg.so) -WITH_OGG= yes +.if exists(${LOCALBASE}/lib/libvorbis.so) +WITH_VORBIS= yes .endif .ifdef (WITH_XOSD) @@ -43,10 +41,10 @@ LIB_DEPENDS+= xosd.4:${PORTSDIR}/misc/xosd .else CONFIGURE_ARGS+= --disable-xosd .endif -.ifdef (WITH_OGG) -LIB_DEPENDS+= ogg.4:${PORTSDIR}/audio/libogg +.ifdef (WITH_VORBIS) +LIB_DEPENDS+= vorbis.2:${PORTSDIR}/audio/libvorbis .else -CONFIGURE_ARGS+= --disable-oggtest +CONFIGURE_ARGS+= --disable-vorbistest .endif pre-everything:: @@ -55,9 +53,9 @@ pre-everything:: @${ECHO_CMD} "define WITH_XOSD to enable On-Screen-Display support" @${ECHO_CMD} .endif -.if !defined(WITH_OGG) +.if !defined(WITH_VORBIS) @${ECHO_CMD} - @${ECHO_CMD} "define WITH_OGG to enable Ogg support" + @${ECHO_CMD} "define WITH_VORBIS to enable Vorbis support" @${ECHO_CMD} .endif |