diff options
author | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-02-08 10:18:05 +0800 |
---|---|---|
committer | adamw <adamw@df743ca5-7f9a-e211-a948-0013205c9059> | 2004-02-08 10:18:05 +0800 |
commit | 03f2497b82b8201b71054b06f0aa6953f6073989 (patch) | |
tree | 9a008c4e247fdcfcf5687d0a37dd67a74c709eb5 /audio/rhythmbox/Makefile | |
parent | 32656319156f3d7b9f6c74c9ffc3ba8b6c3ade36 (diff) | |
download | marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar.gz marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar.bz2 marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar.lz marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar.xz marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.tar.zst marcuscom-ports-03f2497b82b8201b71054b06f0aa6953f6073989.zip |
Add a USE_MONKEYMEDIA knob (MONKEYMEDIA option) that enables the
MonkeyMedia metadata reader (included in rhythmbox source). This knob
combined with USE_XINE means that rhythmbox will be built entirely
without GStreamer.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1793 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox/Makefile')
-rw-r--r-- | audio/rhythmbox/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile index 04a44f4b5..fd55a8796 100644 --- a/audio/rhythmbox/Makefile +++ b/audio/rhythmbox/Makefile @@ -28,7 +28,8 @@ USE_LIBTOOL= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib -lm" \ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" -OPTIONS= XINE "Use xine backend instead of GStreamer" off +OPTIONS= XINE "Use xine backend instead of GStreamer" off \ + MONKEYMEDIA "Use MonkeyMedia metadata reader" off .include <bsd.port.pre.mk> @@ -40,6 +41,12 @@ CONFIGURE_ARGS+= --with-player=gstreamer USE_GNOME+= gstreamerplugins .endif +.ifdef (WITH_MONKEYMEDIA) +CONFIGURE_ARGS+= --with-metadata=monkeymedia +.else +CONFIGURE_ARGS+= --with-metadata=gstreamer +.endif + .if exists(${LOCALBASE}/lib/libvorbis.so) WITH_VORBIS= yes .endif |