diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2008-04-08 19:50:32 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2008-04-08 19:50:32 +0000 |
commit | c5bc6e3a3f769a1b7abd5ae8187811d2f3fa4d1a (patch) | |
tree | dc2f1bf0898c492921b0ad36a126b8ca2661f3bf /multimedia/totem/Makefile | |
parent | 1782824ec40efa9ef341855488e6decb1d422040 (diff) |
Notes
Diffstat (limited to 'multimedia/totem/Makefile')
-rw-r--r-- | multimedia/totem/Makefile | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile index 8cecbf0f9cb7..45a7bd07a3b3 100644 --- a/multimedia/totem/Makefile +++ b/multimedia/totem/Makefile @@ -7,8 +7,8 @@ # PORTNAME= totem -PORTVERSION= 2.22.0 -PORTREVISION?= 1 +PORTVERSION= 2.22.1 +PORTREVISION?= 0 CATEGORIES= multimedia gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -20,8 +20,10 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso- LIB_DEPENDS= musicbrainz:${PORTSDIR}/audio/libmusicbrainz \ totem-plparser.10:${PORTSDIR}/multimedia/totem-pl-parser RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes \ - ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon + ${LOCALBASE}/libexec/gnome-settings-daemon:${PORTSDIR}/sysutils/gnome-settings-daemon \ + ${PYTHON_SITELIBDIR}/atom/__init__.py:${PORTSDIR}/devel/py-gdata +USE_PYTHON= yes USE_BZIP2= yes USE_GETTEXT= yes USE_XLIB= yes @@ -46,12 +48,34 @@ CONFLICTS?= totem-gstreamer-[0-9]* totem-xine-[0-9]* OPTIONS= LIRC "Enable lirc support" off \ GALAGO "Enable Galago support" off \ - GECKO_PLUGINS "Enable install plugins for gecko browser" on + GECKO_PLUGINS "Enable install plugins for gecko browser" on \ + PUBLISH "Enable Publish (network playlist) plugin" off \ + TRACKER "Enable tracker local search plugin" off -TOTEM_PLUGINS= screensaver ontop gromit media-player-keys properties sidebar-test skipto +# check configure script for allowed_plugins="..." for new plugins +TOTEM_PLUGINS= thumbnail screensaver ontop gromit media-player-keys \ + properties skipto youtube +# Not using: +# TOTEM_PLUGINS= mythtv bemused .include <bsd.port.pre.mk> +.if defined(WITH_PUBLISH) +LIB_DEPENDS+= epc-1.0.1:${PORTSDIR}/www/libepc +PLIST_SUB+= PUBLISH="" +TOTEM_PLUGINS:= ${TOTEM_PLUGINS} publish +.else +PLIST_SUB+= PUBLISH="@comment " +.endif + +.if defined(WITH_TRACKER) +LIB_DEPENDS+= tracker-gtk.0:${PORTSDIR}/sysutils/tracker-libtrackergtk +TOTEM_PLUGINS:= ${TOTEM_PLUGINS} tracker +PLIST_SUB+= TRACKER="" +.else +PLIST_SUB+= TRACKER="@comment " +.endif + .if defined(WITH_LIRC) LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc PLIST_SUB+= LIRC="" @@ -90,7 +114,7 @@ PLIST_SUB+= GECKO_PLUGINS="@comment " .if !defined(WITH_TOTEM_XINE) || ${SLAVE_PORT}=="no" CONFIGURE_ARGS+=--enable-gstreamer=yes -USE_GSTREAMER+= gnomevfs core gconf hal good mpeg2dec ugly +USE_GSTREAMER+= core gconf hal good mpeg2dec soup ugly python gio WITHOUT_DVDNAV= yes PLIST_SUB+= GSTREAMER="" .else |