diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-21 17:07:18 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-21 17:07:18 +0000 |
commit | 5dc4206195bc9f275acdb8b201c9ebdbcaafcb9f (patch) | |
tree | b0123e201f41ee20000b8c295898b799da55ebfd /audio/rhythmbox | |
parent | 6edf19a439362cb8eb3e972b3fd2871c697f0bad (diff) | |
download | ports-5dc4206195bc9f275acdb8b201c9ebdbcaafcb9f.tar.gz ports-5dc4206195bc9f275acdb8b201c9ebdbcaafcb9f.zip |
* If package building, use the libxine backend as there are issues with
the gstreamer backend for now
* Include a message that gstreamer-plugins needs MAD support for proper rb
operation
This should fix a plist problem on bento.
Notes
Notes:
svn path=/head/; revision=89097
Diffstat (limited to 'audio/rhythmbox')
-rw-r--r-- | audio/rhythmbox/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile index 322a93649829..ecdbe36bf302 100644 --- a/audio/rhythmbox/Makefile +++ b/audio/rhythmbox/Makefile @@ -27,6 +27,10 @@ USE_LIBTOOL= yes CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" +.if defined(PACKAGE_BUILDING) || defined(PARALLEL_PACKAGE_BUILD) +WITH_XINE= yes +.endif + .include <bsd.port.pre.mk> .if exists(${LOCALBASE}/lib/libvorbis.so) @@ -47,6 +51,11 @@ LIB_DEPENDS+= gstplay-0.6.1:${PORTSDIR}/multimedia/gstreamer-plugins .endif pre-everything:: +.if !defined(WITH_XINE) + @${ECHO_MSG} + @${ECHO_MSG} "You must have gstreamer-plugins built with MAD support!" + @${ECHO_MSG} +.endif .if !defined(WITH_VORBIS) @${ECHO_MSG} @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support" |