summaryrefslogtreecommitdiffstats
path: root/multimedia
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-01-28 00:46:13 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-01-28 00:46:13 +0800
commit809097e452b51ad50933faad23d601b33209dc77 (patch)
tree1ed4d6952c210d02842b24ba32a048b9932676f9 /multimedia
parent6781049d7df2f66016c8344561b6309be3a81c75 (diff)
downloadmarcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar.gz
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar.bz2
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar.lz
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar.xz
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.tar.zst
marcuscom-ports-809097e452b51ad50933faad23d601b33209dc77.zip
Update to 2.29.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13510 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/totem/Makefile146
-rw-r--r--multimedia/totem/distinfo3
-rw-r--r--multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp20
-rw-r--r--multimedia/totem/files/patch-configure12
-rw-r--r--multimedia/totem/files/patch-help_Makefile.in11
-rw-r--r--multimedia/totem/files/pkg-message.in6
-rw-r--r--multimedia/totem/pkg-descr7
-rw-r--r--multimedia/totem/pkg-plist557
8 files changed, 762 insertions, 0 deletions
diff --git a/multimedia/totem/Makefile b/multimedia/totem/Makefile
new file mode 100644
index 000000000..5004ba06f
--- /dev/null
+++ b/multimedia/totem/Makefile
@@ -0,0 +1,146 @@
+# New ports collection makefile for: totem
+# Date created: 17 Oct 2002
+# Whom: Hendrik Scholz <hendrik@scholz.net>
+#
+# $FreeBSD$
+# $MCom$
+#
+
+PORTNAME= totem
+PORTVERSION= 2.29.4
+PORTREVISION?= 0
+CATEGORIES= multimedia gnome
+MASTER_SITES= GNOME
+DIST_SUBDIR= gnome2
+
+MAINTAINER?= gnome@FreeBSD.org
+COMMENT?= A gstreamer-based video player for the GNOME 2 Desktop
+
+BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes
+LIB_DEPENDS= musicbrainz:${PORTSDIR}/audio/libmusicbrainz \
+ gdata.6:${PORTSDIR}/devel/libgdata \
+ totem-plparser.17:${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 \
+ ${PYTHON_SITELIBDIR}/atom/__init__.py:${PORTSDIR}/devel/py-gdata
+
+USE_PYTHON= yes
+USE_BZIP2= yes
+USE_GETTEXT= yes
+USE_GNOME= gnomeprefix intlhack gnomehack desktopfileutils \
+ nautilus2 ltverhack pygtk2
+GNOME_DESKTOP_VERSION=2
+USE_GSTREAMER= core gconf hal good mpeg2dec soup ugly python gio
+INSTALLS_ICONS= yes
+USE_GMAKE= yes
+USE_AUTOTOOLS= libtool:22
+USE_LDCONFIG= yes
+INSTALLS_OMF= yes
+PKGMESSAGE= ${WRKDIR}/pkg-message
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-L${LOCALBASE}/lib -lXrandr" \
+ BROWSER_PLUGIN_DIR="${WEBPLUGINS_DIR}"
+CONFIGURE_ARGS= --with-plugins="${TOTEM_PLUGINS}"
+
+MAN1= totem.1 totem-video-thumbnailer.1
+GCONF_SCHEMAS= totem-handlers.schemas totem-video-thumbnail.schemas \
+ totem.schemas
+
+WITHOUT_DVDNAV= yes
+
+OPTIONS= LIRC "Enable lirc support" off \
+ GALAGO "Enable Galago support" off \
+ BROWSER_PLUGINS "Enable install plugins for gecko browser" on \
+ PUBLISH "Enable Publish (network playlist) plugin" off \
+ TRACKER "Enable tracker local search plugin" off
+
+# 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.2:${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=""
+TOTEM_PLUGINS:= ${TOTEM_PLUGINS} lirc
+.else
+PLIST_SUB+= LIRC="@comment "
+.endif
+
+.if defined(WITH_GALAGO)
+LIB_DEPENDS+= galago.3:${PORTSDIR}/devel/libgalago
+PLIST_SUB+= GALAGO=""
+TOTEM_PLUGINS:= ${TOTEM_PLUGINS} galago
+.else
+PLIST_SUB+= GALAGO="@comment "
+.endif
+
+.if !defined(WITHOUT_BROWSER_PLUGINS)
+CONFIGURE_ARGS+=--enable-browser-plugins \
+ --enable-gmp-plugin \
+ --enable-complex-plugin \
+ --enable-narrowspace-plugin
+PLIST_SUB+= BROWSER_PLUGINS=""
+
+USE_WEBPLUGINS= gecko19 webkit-gtk2
+WEBPLUGINS_FILES= libtotem-complex-plugin.so \
+ libtotem-cone-plugin.so libtotem-gmp-plugin.so \
+ libtotem-mully-plugin.so \
+ libtotem-narrowspace-plugin.so
+.include "${PORTSDIR}/www/firefox/Makefile.webplugins"
+.else
+CONFIGURE_ARGS+=--disable-browser-plugins \
+ --disable-basic-plugin \
+ --disable-gmp-plugin \
+ --disable-complex-plugin \
+ --disable-narrowspace-plugin
+PLIST_SUB+= BROWSER_PLUGINS="@comment "
+.endif
+
+.if defined(WITH_DVDNAV) && !defined(WITHOUT_DVDNAV)
+LIB_DEPENDS+= dvdnav.4:${PORTSDIR}/multimedia/libdvdnav
+.endif
+
+.if defined(WITH_DVD_DEVICE)
+DEFAULT_DVD_DEVICE=${WITH_DVD_DEVICE}
+.else
+DEFAULT_DVD_DEVICE=/dev/acd0
+.endif
+
+pre-everything::
+ @${ECHO_MSG} "===> The default DVD device is ${DEFAULT_DVD_DEVICE}"
+ @${ECHO_MSG} "===> Define WITH_DVD_DEVICE if you want to change the default"
+ @${ECHO_MSG} "===> For example, 'make WITH_DVD_DEVICE=\"/dev/somedevice\"'"
+
+post-patch:
+ @${CP} -f ${FILESDIR}/pkg-message.in ${PKGMESSAGE}
+ @${REINPLACE_CMD} -e 's|/dev/dvd|${DEFAULT_DVD_DEVICE}|' \
+ ${WRKSRC}/src/backend/bacon-video-widget-gst-0.10.c
+
+post-install:
+ @-update-desktop-database
+ ${MKDIR} ${PREFIX}/share/vala/vapi
+ ${INSTALL_DATA} ${WRKSRC}/bindings/vala/totem.vapi ${PREFIX}/share/vala/vapi
+ ${INSTALL_DATA} ${WRKSRC}/bindings/vala/totem.deps ${PREFIX}/share/vala/vapi
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.post.mk>
diff --git a/multimedia/totem/distinfo b/multimedia/totem/distinfo
new file mode 100644
index 000000000..0fb03b4c2
--- /dev/null
+++ b/multimedia/totem/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/totem-2.29.4.tar.bz2) = c91f7e4a5bbdbc78acb7e30b271a77b7
+SHA256 (gnome2/totem-2.29.4.tar.bz2) = 04f6fe7fdeb75d2151b5556558b7f8edaa73cfd0ae68fc26b9065848563d9c95
+SIZE (gnome2/totem-2.29.4.tar.bz2) = 3156401
diff --git a/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp b/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp
new file mode 100644
index 000000000..6e697364d
--- /dev/null
+++ b/multimedia/totem/files/patch-browser-plugin_totemPluginGlue.cpp
@@ -0,0 +1,20 @@
+--- browser-plugin/totemPluginGlue.cpp.orig 2008-03-15 18:00:23.000000000 -0500
++++ browser-plugin/totemPluginGlue.cpp 2008-03-15 18:01:54.000000000 -0500
+@@ -356,7 +356,7 @@
+ user_ini_file = g_build_filename (g_get_user_config_dir (),
+ "totem",
+ "browser-plugins.ini",
+- NULL);
++ (char *)NULL);
+ if (g_key_file_load_from_file (user,
+ user_ini_file,
+ G_KEY_FILE_NONE,
+@@ -439,7 +439,7 @@
+ /* we want to open libdbus-glib-1.so.2 in such a way
+ * in such a way that it becomes permanentely resident */
+ void *handle;
+- handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW | RTLD_NODELETE);
++ handle = dlopen ("libdbus-glib-1.so.2", RTLD_NOW);
+ if (!handle) {
+ fprintf (stderr, "%s\n", dlerror());
+ return NPERR_MODULE_LOAD_FAILED_ERROR;
diff --git a/multimedia/totem/files/patch-configure b/multimedia/totem/files/patch-configure
new file mode 100644
index 000000000..4c6c7b340
--- /dev/null
+++ b/multimedia/totem/files/patch-configure
@@ -0,0 +1,12 @@
+--- configure.orig 2008-08-30 08:23:22.000000000 +0200
++++ configure 2008-08-30 08:24:20.000000000 +0200
+@@ -25171,7 +25171,9 @@
+ _ACEOF
+
+
++if [ -z "${BROWSER_PLUGIN_DIR}" ]; then
+ BROWSER_PLUGIN_DIR="${BROWSER_PLUGIN_DIR:-"\${libdir}/mozilla/plugins"}"
++fi
+
+
+
diff --git a/multimedia/totem/files/patch-help_Makefile.in b/multimedia/totem/files/patch-help_Makefile.in
new file mode 100644
index 000000000..0695029ac
--- /dev/null
+++ b/multimedia/totem/files/patch-help_Makefile.in
@@ -0,0 +1,11 @@
+--- help/Makefile.in.orig 2009-05-10 03:06:15.000000000 -0400
++++ help/Makefile.in 2009-05-10 03:06:29.000000000 -0400
+@@ -783,7 +783,7 @@ $(DOC_H_FILE): $(DOC_H_DOCS);
+ xsltproc --path "$$xmlpath" $(_credits) $$doc; \
+ done | sort | uniq \
+ | awk 'BEGIN{s=""}{n=split($$0,w,"<");if(s!=""&&s!=substr(w[1],1,length(w[1])-1)){print s};if(n>1){print $$0;s=""}else{s=$$0}};END{if(s!=""){print s}}' \
+- | sed -e 's/\\/\\\\/' -e 's/"/\\"/' -e 's/\(.*\)/\t"\1",/' >> $@.tmp
++ | sed -e 's/\\/\\\\/' -e 's/"/\\"/' -e 's/\(.*\)/ "\1",/' >> $@.tmp
+ echo ' NULL' >> $@.tmp
+ echo '};' >> $@.tmp
+ echo >> $@.tmp
diff --git a/multimedia/totem/files/pkg-message.in b/multimedia/totem/files/pkg-message.in
new file mode 100644
index 000000000..5c4332981
--- /dev/null
+++ b/multimedia/totem/files/pkg-message.in
@@ -0,0 +1,6 @@
+********************************************************
+* Make sure you've enough shared memory, the xine FAQ *
+* advises to have the following sysctl settings: *
+* kern.ipc.shmmax=67108864 *
+* kern.ipc.shmall=32768 *
+********************************************************
diff --git a/multimedia/totem/pkg-descr b/multimedia/totem/pkg-descr
new file mode 100644
index 000000000..3f33f1f5f
--- /dev/null
+++ b/multimedia/totem/pkg-descr
@@ -0,0 +1,7 @@
+Totem is simple movie player for the Gnome 2 desktop based on xine.
+It features a simple playlist, a full-screen mode, seek and volume controls,
+as well as a pretty complete keyboard navigation.
+
+WWW: http://www.gnome.org/projects/totem/
+
+-- Hendrik Scholz <hendrik@scholz.net>
diff --git a/multimedia/totem/pkg-plist b/multimedia/totem/pkg-plist
new file mode 100644
index 000000000..d0a2a3852
--- /dev/null
+++ b/multimedia/totem/pkg-plist
@@ -0,0 +1,557 @@
+bin/totem
+bin/totem-audio-preview
+bin/totem-video-indexer
+bin/totem-video-thumbnailer
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.a
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.la
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-cone-plugin.so
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.a
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.la
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-gmp-plugin.so
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.a
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.la
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-mully-plugin.so
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.a
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.la
+%%BROWSER_PLUGINS%%%%WEBPLUGINS_DIR%%/libtotem-narrowspace-plugin.so
+lib/nautilus/extensions-2.0/libtotem-properties-page.a
+lib/nautilus/extensions-2.0/libtotem-properties-page.la
+lib/nautilus/extensions-2.0/libtotem-properties-page.so
+%%GALAGO%%lib/totem/plugins/galago/galago.totem-plugin
+%%GALAGO%%lib/totem/plugins/galago/libtgp.a
+%%GALAGO%%lib/totem/plugins/galago/libtgp.la
+%%GALAGO%%lib/totem/plugins/galago/libtgp.so
+lib/totem/plugins/gromit/gromit.totem-plugin
+lib/totem/plugins/gromit/libgromit.a
+lib/totem/plugins/gromit/libgromit.la
+lib/totem/plugins/gromit/libgromit.so
+%%LIRC%%lib/totem/plugins/lirc/lirc.totem-plugin
+%%LIRC%%lib/totem/plugins/lirc/liblirc.a
+%%LIRC%%lib/totem/plugins/lirc/liblirc.la
+%%LIRC%%lib/totem/plugins/lirc/liblirc.so
+lib/totem/plugins/media-player-keys/libmedia_player_keys.a
+lib/totem/plugins/media-player-keys/libmedia_player_keys.la
+lib/totem/plugins/media-player-keys/libmedia_player_keys.so
+lib/totem/plugins/media-player-keys/media-player-keys.totem-plugin
+lib/totem/plugins/ontop/libontop.a
+lib/totem/plugins/ontop/libontop.la
+lib/totem/plugins/ontop/libontop.so
+lib/totem/plugins/ontop/ontop.totem-plugin
+%%PUBLISH%%lib/totem/plugins/publish/libpublish.a
+%%PUBLISH%%lib/totem/plugins/publish/libpublish.la
+%%PUBLISH%%lib/totem/plugins/publish/libpublish.so
+%%PUBLISH%%lib/totem/plugins/publish/publish-plugin.ui
+%%PUBLISH%%lib/totem/plugins/publish/publish.totem-plugin
+lib/totem/plugins/properties/libmovie-properties.a
+lib/totem/plugins/properties/libmovie-properties.la
+lib/totem/plugins/properties/libmovie-properties.so
+lib/totem/plugins/properties/movie-properties.totem-plugin
+lib/totem/plugins/screensaver/libscreensaver.a
+lib/totem/plugins/screensaver/libscreensaver.la
+lib/totem/plugins/screensaver/libscreensaver.so
+lib/totem/plugins/screensaver/screensaver.totem-plugin
+lib/totem/plugins/skipto/libskipto.a
+lib/totem/plugins/skipto/libskipto.la
+lib/totem/plugins/skipto/libskipto.so
+lib/totem/plugins/skipto/skipto.totem-plugin
+lib/totem/plugins/skipto/skipto.ui
+lib/totem/plugins/thumbnail/libthumbnail.a
+lib/totem/plugins/thumbnail/libthumbnail.la
+lib/totem/plugins/thumbnail/libthumbnail.so
+lib/totem/plugins/thumbnail/thumbnail.totem-plugin
+%%TRACKER%%lib/totem/plugins/tracker/libtracker.a
+%%TRACKER%%lib/totem/plugins/tracker/libtracker.la
+%%TRACKER%%lib/totem/plugins/tracker/libtracker.so
+%%TRACKER%%lib/totem/plugins/tracker/tracker.totem-plugin
+lib/totem/plugins/totem/__init__.py
+lib/totem/plugins/totem/__init__.pyc
+lib/totem/plugins/totem/__init__.pyo
+lib/totem/plugins/youtube/libyoutube.a
+lib/totem/plugins/youtube/libyoutube.la
+lib/totem/plugins/youtube/libyoutube.so
+lib/totem/plugins/youtube/youtube.totem-plugin
+lib/totem/plugins/youtube/youtube.ui
+%%BROWSER_PLUGINS%%libexec/totem-plugin-viewer
+libexec/totem/totem-bugreport.py
+share/applications/totem.desktop
+%%DOCSDIR%%/BaconVideoWidget.html
+%%DOCSDIR%%/TotemCellRendererVideo.html
+%%DOCSDIR%%/TotemObject.html
+%%DOCSDIR%%/TotemPlugin.html
+%%DOCSDIR%%/TotemVideoList.html
+%%DOCSDIR%%/api-index-deprecated.html
+%%DOCSDIR%%/api-index-full.html
+%%DOCSDIR%%/core-api.html
+%%DOCSDIR%%/home.png
+%%DOCSDIR%%/index.html
+%%DOCSDIR%%/index.sgml
+%%DOCSDIR%%/left.png
+%%DOCSDIR%%/right.png
+%%DOCSDIR%%/style.css
+%%DOCSDIR%%/totem-Interface.html
+%%DOCSDIR%%/totem.devhelp
+%%DOCSDIR%%/totem.devhelp2
+%%DOCSDIR%%/totem-plugins.html
+%%DOCSDIR%%/tutorials.html
+%%DOCSDIR%%/up.png
+%%DOCSDIR%%/widget-api.html
+share/gnome/help/totem/C/figures/totem_next_button.png
+share/gnome/help/totem/C/figures/totem_pause_button.png
+share/gnome/help/totem/C/figures/totem_play_button.png
+share/gnome/help/totem/C/figures/totem_previous_button.png
+share/gnome/help/totem/C/figures/totem_show_playlist_button.png
+share/gnome/help/totem/C/figures/totem_start_window.png
+share/gnome/help/totem/C/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/C/figures/totem_volume_mute_button.png
+share/gnome/help/totem/C/legal.xml
+share/gnome/help/totem/C/totem.xml
+share/gnome/help/totem/bg/figures/totem_next_button.png
+share/gnome/help/totem/bg/figures/totem_pause_button.png
+share/gnome/help/totem/bg/figures/totem_play_button.png
+share/gnome/help/totem/bg/figures/totem_previous_button.png
+share/gnome/help/totem/bg/figures/totem_show_playlist_button.png
+share/gnome/help/totem/bg/figures/totem_start_window.png
+share/gnome/help/totem/bg/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/bg/figures/totem_volume_mute_button.png
+share/gnome/help/totem/bg/totem.xml
+share/gnome/help/totem/ca/figures/totem_next_button.png
+share/gnome/help/totem/ca/figures/totem_pause_button.png
+share/gnome/help/totem/ca/figures/totem_play_button.png
+share/gnome/help/totem/ca/figures/totem_previous_button.png
+share/gnome/help/totem/ca/figures/totem_show_playlist_button.png
+share/gnome/help/totem/ca/figures/totem_start_window.png
+share/gnome/help/totem/ca/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/ca/figures/totem_volume_mute_button.png
+share/gnome/help/totem/ca/totem.xml
+share/gnome/help/totem/cs/figures/totem_next_button.png
+share/gnome/help/totem/cs/figures/totem_pause_button.png
+share/gnome/help/totem/cs/figures/totem_play_button.png
+share/gnome/help/totem/cs/figures/totem_previous_button.png
+share/gnome/help/totem/cs/figures/totem_show_playlist_button.png
+share/gnome/help/totem/cs/figures/totem_start_window.png
+share/gnome/help/totem/cs/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/cs/figures/totem_volume_mute_button.png
+share/gnome/help/totem/cs/totem.xml
+share/gnome/help/totem/da/figures/totem_next_button.png
+share/gnome/help/totem/da/figures/totem_pause_button.png
+share/gnome/help/totem/da/figures/totem_play_button.png
+share/gnome/help/totem/da/figures/totem_previous_button.png
+share/gnome/help/totem/da/figures/totem_show_playlist_button.png
+share/gnome/help/totem/da/figures/totem_start_window.png
+share/gnome/help/totem/da/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/da/figures/totem_volume_mute_button.png
+share/gnome/help/totem/da/totem.xml
+share/gnome/help/totem/de/figures/totem_next_button.png
+share/gnome/help/totem/de/figures/totem_pause_button.png
+share/gnome/help/totem/de/figures/totem_play_button.png
+share/gnome/help/totem/de/figures/totem_previous_button.png
+share/gnome/help/totem/de/figures/totem_show_playlist_button.png
+share/gnome/help/totem/de/figures/totem_start_window.png
+share/gnome/help/totem/de/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/de/figures/totem_volume_mute_button.png
+share/gnome/help/totem/de/totem.xml
+share/gnome/help/totem/el/figures/totem_next_button.png
+share/gnome/help/totem/el/figures/totem_pause_button.png
+share/gnome/help/totem/el/figures/totem_play_button.png
+share/gnome/help/totem/el/figures/totem_previous_button.png
+share/gnome/help/totem/el/figures/totem_show_playlist_button.png
+share/gnome/help/totem/el/figures/totem_start_window.png
+share/gnome/help/totem/el/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/el/figures/totem_volume_mute_button.png
+share/gnome/help/totem/el/totem.xml
+share/gnome/help/totem/en_GB/figures/totem_next_button.png
+share/gnome/help/totem/en_GB/figures/totem_pause_button.png
+share/gnome/help/totem/en_GB/figures/totem_play_button.png
+share/gnome/help/totem/en_GB/figures/totem_previous_button.png
+share/gnome/help/totem/en_GB/figures/totem_show_playlist_button.png
+share/gnome/help/totem/en_GB/figures/totem_start_window.png
+share/gnome/help/totem/en_GB/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/en_GB/figures/totem_volume_mute_button.png
+share/gnome/help/totem/en_GB/totem.xml
+share/gnome/help/totem/es/figures/totem_next_button.png
+share/gnome/help/totem/es/figures/totem_pause_button.png
+share/gnome/help/totem/es/figures/totem_play_button.png
+share/gnome/help/totem/es/figures/totem_previous_button.png
+share/gnome/help/totem/es/figures/totem_show_playlist_button.png
+share/gnome/help/totem/es/figures/totem_start_window.png
+share/gnome/help/totem/es/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/es/figures/totem_volume_mute_button.png
+share/gnome/help/totem/es/totem.xml
+share/gnome/help/totem/eu/figures/totem_next_button.png
+share/gnome/help/totem/eu/figures/totem_pause_button.png
+share/gnome/help/totem/eu/figures/totem_play_button.png
+share/gnome/help/totem/eu/figures/totem_previous_button.png
+share/gnome/help/totem/eu/figures/totem_show_playlist_button.png
+share/gnome/help/totem/eu/figures/totem_start_window.png
+share/gnome/help/totem/eu/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/eu/figures/totem_volume_mute_button.png
+share/gnome/help/totem/eu/totem.xml
+share/gnome/help/totem/fi/figures/totem_next_button.png
+share/gnome/help/totem/fi/figures/totem_pause_button.png
+share/gnome/help/totem/fi/figures/totem_play_button.png
+share/gnome/help/totem/fi/figures/totem_previous_button.png
+share/gnome/help/totem/fi/figures/totem_show_playlist_button.png
+share/gnome/help/totem/fi/figures/totem_start_window.png
+share/gnome/help/totem/fi/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/fi/figures/totem_volume_mute_button.png
+share/gnome/help/totem/fi/totem.xml
+share/gnome/help/totem/fr/figures/totem_next_button.png
+share/gnome/help/totem/fr/figures/totem_pause_button.png
+share/gnome/help/totem/fr/figures/totem_play_button.png
+share/gnome/help/totem/fr/figures/totem_previous_button.png
+share/gnome/help/totem/fr/figures/totem_show_playlist_button.png
+share/gnome/help/totem/fr/figures/totem_start_window.png
+share/gnome/help/totem/fr/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/fr/figures/totem_volume_mute_button.png
+share/gnome/help/totem/fr/totem.xml
+share/gnome/help/totem/it/figures/totem_next_button.png
+share/gnome/help/totem/it/figures/totem_pause_button.png
+share/gnome/help/totem/it/figures/totem_play_button.png
+share/gnome/help/totem/it/figures/totem_previous_button.png
+share/gnome/help/totem/it/figures/totem_show_playlist_button.png
+share/gnome/help/totem/it/figures/totem_start_window.png
+share/gnome/help/totem/it/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/it/figures/totem_volume_mute_button.png
+share/gnome/help/totem/it/totem.xml
+share/gnome/help/totem/ja/figures/totem_next_button.png
+share/gnome/help/totem/ja/figures/totem_pause_button.png
+share/gnome/help/totem/ja/figures/totem_play_button.png
+share/gnome/help/totem/ja/figures/totem_previous_button.png
+share/gnome/help/totem/ja/figures/totem_show_playlist_button.png
+share/gnome/help/totem/ja/figures/totem_start_window.png
+share/gnome/help/totem/ja/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/ja/figures/totem_volume_mute_button.png
+share/gnome/help/totem/ja/totem.xml
+share/gnome/help/totem/oc/figures/totem_next_button.png
+share/gnome/help/totem/oc/figures/totem_pause_button.png
+share/gnome/help/totem/oc/figures/totem_play_button.png
+share/gnome/help/totem/oc/figures/totem_previous_button.png
+share/gnome/help/totem/oc/figures/totem_show_playlist_button.png
+share/gnome/help/totem/oc/figures/totem_start_window.png
+share/gnome/help/totem/oc/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/oc/figures/totem_volume_mute_button.png
+share/gnome/help/totem/oc/totem.xml
+share/gnome/help/totem/pa/figures/totem_next_button.png
+share/gnome/help/totem/pa/figures/totem_pause_button.png
+share/gnome/help/totem/pa/figures/totem_play_button.png
+share/gnome/help/totem/pa/figures/totem_previous_button.png
+share/gnome/help/totem/pa/figures/totem_show_playlist_button.png
+share/gnome/help/totem/pa/figures/totem_start_window.png
+share/gnome/help/totem/pa/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/pa/figures/totem_volume_mute_button.png
+share/gnome/help/totem/pa/totem.xml
+share/gnome/help/totem/pl/figures/totem_next_button.png
+share/gnome/help/totem/pl/figures/totem_pause_button.png
+share/gnome/help/totem/pl/figures/totem_play_button.png
+share/gnome/help/totem/pl/figures/totem_previous_button.png
+share/gnome/help/totem/pl/figures/totem_show_playlist_button.png
+share/gnome/help/totem/pl/figures/totem_start_window.png
+share/gnome/help/totem/pl/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/pl/figures/totem_volume_mute_button.png
+share/gnome/help/totem/pl/totem.xml
+share/gnome/help/totem/pt_BR/figures/totem_next_button.png
+share/gnome/help/totem/pt_BR/figures/totem_pause_button.png
+share/gnome/help/totem/pt_BR/figures/totem_play_button.png
+share/gnome/help/totem/pt_BR/figures/totem_previous_button.png
+share/gnome/help/totem/pt_BR/figures/totem_show_playlist_button.png
+share/gnome/help/totem/pt_BR/figures/totem_start_window.png
+share/gnome/help/totem/pt_BR/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/pt_BR/figures/totem_volume_mute_button.png
+share/gnome/help/totem/pt_BR/totem.xml
+share/gnome/help/totem/ru/figures/totem_next_button.png
+share/gnome/help/totem/ru/figures/totem_pause_button.png
+share/gnome/help/totem/ru/figures/totem_play_button.png
+share/gnome/help/totem/ru/figures/totem_previous_button.png
+share/gnome/help/totem/ru/figures/totem_show_playlist_button.png
+share/gnome/help/totem/ru/figures/totem_start_window.png
+share/gnome/help/totem/ru/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/ru/figures/totem_volume_mute_button.png
+share/gnome/help/totem/ru/totem.xml
+share/gnome/help/totem/sv/figures/totem_next_button.png
+share/gnome/help/totem/sv/figures/totem_pause_button.png
+share/gnome/help/totem/sv/figures/totem_play_button.png
+share/gnome/help/totem/sv/figures/totem_previous_button.png
+share/gnome/help/totem/sv/figures/totem_show_playlist_button.png
+share/gnome/help/totem/sv/figures/totem_start_window.png
+share/gnome/help/totem/sv/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/sv/figures/totem_volume_mute_button.png
+share/gnome/help/totem/sv/totem.xml
+share/gnome/help/totem/uk/figures/totem_next_button.png
+share/gnome/help/totem/uk/figures/totem_pause_button.png
+share/gnome/help/totem/uk/figures/totem_play_button.png
+share/gnome/help/totem/uk/figures/totem_previous_button.png
+share/gnome/help/totem/uk/figures/totem_show_playlist_button.png
+share/gnome/help/totem/uk/figures/totem_start_window.png
+share/gnome/help/totem/uk/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/uk/figures/totem_volume_mute_button.png
+share/gnome/help/totem/uk/totem.xml
+share/gnome/help/totem/zh_CN/figures/totem_next_button.png
+share/gnome/help/totem/zh_CN/figures/totem_pause_button.png
+share/gnome/help/totem/zh_CN/figures/totem_play_button.png
+share/gnome/help/totem/zh_CN/figures/totem_previous_button.png
+share/gnome/help/totem/zh_CN/figures/totem_show_playlist_button.png
+share/gnome/help/totem/zh_CN/figures/totem_start_window.png
+share/gnome/help/totem/zh_CN/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/zh_CN/figures/totem_volume_mute_button.png
+share/gnome/help/totem/zh_CN/totem.xml
+share/gnome/help/totem/zh_HK/figures/totem_next_button.png
+share/gnome/help/totem/zh_HK/figures/totem_pause_button.png
+share/gnome/help/totem/zh_HK/figures/totem_play_button.png
+share/gnome/help/totem/zh_HK/figures/totem_previous_button.png
+share/gnome/help/totem/zh_HK/figures/totem_show_playlist_button.png
+share/gnome/help/totem/zh_HK/figures/totem_start_window.png
+share/gnome/help/totem/zh_HK/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/zh_HK/figures/totem_volume_mute_button.png
+share/gnome/help/totem/zh_HK/totem.xml
+share/gnome/help/totem/zh_TW/figures/totem_next_button.png
+share/gnome/help/totem/zh_TW/figures/totem_pause_button.png
+share/gnome/help/totem/zh_TW/figures/totem_play_button.png
+share/gnome/help/totem/zh_TW/figures/totem_previous_button.png
+share/gnome/help/totem/zh_TW/figures/totem_show_playlist_button.png
+share/gnome/help/totem/zh_TW/figures/totem_start_window.png
+share/gnome/help/totem/zh_TW/figures/totem_volume_maximum_button.png
+share/gnome/help/totem/zh_TW/figures/totem_volume_mute_button.png
+share/gnome/help/totem/zh_TW/totem.xml
+share/icons/hicolor/16x16/apps/totem.png
+share/icons/hicolor/16x16/devices/totem-tv.png
+share/icons/hicolor/22x22/apps/totem.png
+share/icons/hicolor/22x22/devices/totem-tv.png
+share/icons/hicolor/24x24/apps/totem.png
+share/icons/hicolor/24x24/devices/totem-tv.png
+share/icons/hicolor/32x32/apps/totem.png
+share/icons/hicolor/32x32/devices/totem-tv.png
+share/icons/hicolor/48x48/apps/totem.png
+share/icons/hicolor/48x48/devices/totem-tv.png
+share/icons/hicolor/scalable/apps/totem.svg
+share/icons/hicolor/scalable/devices/totem-tv.svg
+share/locale/am/LC_MESSAGES/totem.mo
+share/locale/ar/LC_MESSAGES/totem.mo
+share/locale/as/LC_MESSAGES/totem.mo
+share/locale/ast/LC_MESSAGES/totem.mo
+share/locale/az/LC_MESSAGES/totem.mo
+share/locale/be/LC_MESSAGES/totem.mo
+share/locale/be@latin/LC_MESSAGES/totem.mo
+share/locale/bg/LC_MESSAGES/totem.mo
+share/locale/bn/LC_MESSAGES/totem.mo
+share/locale/bn_IN/LC_MESSAGES/totem.mo
+share/locale/br/LC_MESSAGES/totem.mo
+share/locale/ca/LC_MESSAGES/totem.mo
+share/locale/ca@valencia/LC_MESSAGES/totem.mo
+share/locale/crh/LC_MESSAGES/totem.mo
+share/locale/cs/LC_MESSAGES/totem.mo
+share/locale/cy/LC_MESSAGES/totem.mo
+share/locale/da/LC_MESSAGES/totem.mo
+share/locale/de/LC_MESSAGES/totem.mo
+share/locale/dz/LC_MESSAGES/totem.mo
+share/locale/el/LC_MESSAGES/totem.mo
+share/locale/en@shaw/LC_MESSAGES/totem.mo
+share/locale/en_CA/LC_MESSAGES/totem.mo
+share/locale/en_GB/LC_MESSAGES/totem.mo
+share/locale/es/LC_MESSAGES/totem.mo
+share/locale/et/LC_MESSAGES/totem.mo
+share/locale/eu/LC_MESSAGES/totem.mo
+share/locale/fa/LC_MESSAGES/totem.mo
+share/locale/fi/LC_MESSAGES/totem.mo
+share/locale/fr/LC_MESSAGES/totem.mo
+share/locale/ga/LC_MESSAGES/totem.mo
+share/locale/gl/LC_MESSAGES/totem.mo
+share/locale/gu/LC_MESSAGES/totem.mo
+share/locale/he/LC_MESSAGES/totem.mo
+share/locale/hi/LC_MESSAGES/totem.mo
+share/locale/hr/LC_MESSAGES/totem.mo
+share/locale/hu/LC_MESSAGES/totem.mo
+share/locale/id/LC_MESSAGES/totem.mo
+share/locale/is/LC_MESSAGES/totem.mo
+share/locale/it/LC_MESSAGES/totem.mo
+share/locale/ja/LC_MESSAGES/totem.mo
+share/locale/ka/LC_MESSAGES/totem.mo
+share/locale/kn/LC_MESSAGES/totem.mo
+share/locale/ko/LC_MESSAGES/totem.mo
+share/locale/ku/LC_MESSAGES/totem.mo
+share/locale/lt/LC_MESSAGES/totem.mo
+share/locale/lv/LC_MESSAGES/totem.mo
+share/locale/mai/LC_MESSAGES/totem.mo
+share/locale/mg/LC_MESSAGES/totem.mo
+share/locale/mk/LC_MESSAGES/totem.mo
+share/locale/ml/LC_MESSAGES/totem.mo
+share/locale/mr/LC_MESSAGES/totem.mo
+share/locale/ms/LC_MESSAGES/totem.mo
+share/locale/nb/LC_MESSAGES/totem.mo
+share/locale/ne/LC_MESSAGES/totem.mo
+share/locale/nl/LC_MESSAGES/totem.mo
+share/locale/nn/LC_MESSAGES/totem.mo
+share/locale/oc/LC_MESSAGES/totem.mo
+share/locale/or/LC_MESSAGES/totem.mo
+share/locale/pa/LC_MESSAGES/totem.mo
+share/locale/pl/LC_MESSAGES/totem.mo
+share/locale/pt/LC_MESSAGES/totem.mo
+share/locale/pt_BR/LC_MESSAGES/totem.mo
+share/locale/ro/LC_MESSAGES/totem.mo
+share/locale/ru/LC_MESSAGES/totem.mo
+share/locale/rw/LC_MESSAGES/totem.mo
+share/locale/si/LC_MESSAGES/totem.mo
+share/locale/sk/LC_MESSAGES/totem.mo
+share/locale/sl/LC_MESSAGES/totem.mo
+share/locale/sq/LC_MESSAGES/totem.mo
+share/locale/sr/LC_MESSAGES/totem.mo
+share/locale/sr@latin/LC_MESSAGES/totem.mo
+share/locale/sv/LC_MESSAGES/totem.mo
+share/locale/ta/LC_MESSAGES/totem.mo
+share/locale/te/LC_MESSAGES/totem.mo
+share/locale/th/LC_MESSAGES/totem.mo
+share/locale/tr/LC_MESSAGES/totem.mo
+share/locale/ug/LC_MESSAGES/totem.mo
+share/locale/uk/LC_MESSAGES/totem.mo
+share/locale/vi/LC_MESSAGES/totem.mo
+share/locale/wa/LC_MESSAGES/totem.mo
+share/locale/xh/LC_MESSAGES/totem.mo
+share/locale/zh_CN/LC_MESSAGES/totem.mo
+share/locale/zh_HK/LC_MESSAGES/totem.mo
+share/locale/zh_TW/LC_MESSAGES/totem.mo
+share/omf/totem/totem-C.omf
+share/omf/totem/totem-bg.omf
+share/omf/totem/totem-ca.omf
+share/omf/totem/totem-cs.omf
+share/omf/totem/totem-da.omf
+share/omf/totem/totem-de.omf
+share/omf/totem/totem-el.omf
+share/omf/totem/totem-en_GB.omf
+share/omf/totem/totem-es.omf
+share/omf/totem/totem-eu.omf
+share/omf/totem/totem-fi.omf
+share/omf/totem/totem-fr.omf
+share/omf/totem/totem-it.omf
+share/omf/totem/totem-ja.omf
+share/omf/totem/totem-oc.omf
+share/omf/totem/totem-pa.omf
+share/omf/totem/totem-pl.omf
+share/omf/totem/totem-pt_BR.omf
+share/omf/totem/totem-ru.omf
+share/omf/totem/totem-sv.omf
+share/omf/totem/totem-uk.omf
+share/omf/totem/totem-zh_CN.omf
+share/omf/totem/totem-zh_HK.omf
+share/omf/totem/totem-zh_TW.omf
+%%DATADIR%%/filmholes-big-left.png
+%%DATADIR%%/filmholes-big-right.png
+%%DATADIR%%/filmholes.png
+%%DATADIR%%/fullscreen.ui
+%%DATADIR%%/mozilla-viewer.ui
+%%DATADIR%%/playlist.ui
+%%DATADIR%%/plugins.ui
+%%DATADIR%%/properties.ui
+%%DATADIR%%/totem.ui
+%%DATADIR%%/uri.ui
+%%DATADIR%%/video-list.ui
+share/vala/vapi/totem.deps
+share/vala/vapi/totem.vapi
+@dirrm %%DATADIR%%
+@dirrm share/omf/totem
+@dirrm share/gnome/help/totem/zh_TW/figures
+@dirrm share/gnome/help/totem/zh_TW
+@dirrm share/gnome/help/totem/zh_HK/figures
+@dirrm share/gnome/help/totem/zh_HK
+@dirrm share/gnome/help/totem/zh_CN/figures
+@dirrm share/gnome/help/totem/zh_CN
+@dirrm share/gnome/help/totem/uk/figures
+@dirrm share/gnome/help/totem/uk
+@dirrm share/gnome/help/totem/sv/figures
+@dirrm share/gnome/help/totem/sv
+@dirrm share/gnome/help/totem/ru/figures
+@dirrm share/gnome/help/totem/ru
+@dirrm share/gnome/help/totem/pt_BR/figures
+@dirrm share/gnome/help/totem/pt_BR
+@dirrm share/gnome/help/totem/pl/figures
+@dirrm share/gnome/help/totem/pl
+@dirrm share/gnome/help/totem/pa/figures
+@dirrm share/gnome/help/totem/pa
+@dirrm share/gnome/help/totem/oc/figures
+@dirrm share/gnome/help/totem/oc
+@dirrm share/gnome/help/totem/ja/figures
+@dirrm share/gnome/help/totem/ja
+@dirrm share/gnome/help/totem/it/figures
+@dirrm share/gnome/help/totem/it
+@dirrm share/gnome/help/totem/fr/figures
+@dirrm share/gnome/help/totem/fr
+@dirrm share/gnome/help/totem/fi/figures
+@dirrm share/gnome/help/totem/fi
+@dirrm share/gnome/help/totem/eu/figures
+@dirrm share/gnome/help/totem/eu
+@dirrm share/gnome/help/totem/es/figures
+@dirrm share/gnome/help/totem/es
+@dirrm share/gnome/help/totem/en_GB/figures
+@dirrm share/gnome/help/totem/en_GB
+@dirrm share/gnome/help/totem/el/figures
+@dirrm share/gnome/help/totem/el
+@dirrm share/gnome/help/totem/de/figures
+@dirrm share/gnome/help/totem/de
+@dirrm share/gnome/help/totem/da/figures
+@dirrm share/gnome/help/totem/da
+@dirrm share/gnome/help/totem/cs/figures
+@dirrm share/gnome/help/totem/cs
+@dirrm share/gnome/help/totem/ca/figures
+@dirrm share/gnome/help/totem/ca
+@dirrm share/gnome/help/totem/bg/figures
+@dirrm share/gnome/help/totem/bg
+@dirrm share/gnome/help/totem/C/figures
+@dirrm share/gnome/help/totem/C
+@dirrm share/gnome/help/totem
+@dirrm %%DOCSDIR%%
+@dirrmtry share/applications
+@dirrm libexec/totem
+@dirrm lib/totem/plugins/youtube
+@dirrm lib/totem/plugins/totem
+%%TRACKER%%@dirrm lib/totem/plugins/tracker
+@dirrm lib/totem/plugins/thumbnail
+@dirrm lib/totem/plugins/skipto
+@dirrm lib/totem/plugins/screensaver
+%%PUBLISH%%@dirrm lib/totem/plugins/publish
+@dirrm lib/totem/plugins/properties
+@dirrm lib/totem/plugins/ontop
+@dirrm lib/totem/plugins/media-player-keys
+%%LIRC%%@dirrm lib/totem/plugins/lirc
+@dirrm lib/totem/plugins/gromit
+%%GALAGO%%@dirrm lib/totem/plugins/galago
+@dirrm lib/totem/plugins
+@dirrm lib/totem
+%%BROWSER_PLUGINS%%@dirrmtry %%WEBPLUGINS_DIR%%
+@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
+@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
+@dirrmtry share/locale/zh_HK/LC_MESSAGES
+@dirrmtry share/locale/zh_HK
+@dirrmtry share/locale/xh/LC_MESSAGES
+@dirrmtry share/locale/xh
+@dirrmtry share/locale/ug/LC_MESSAGES
+@dirrmtry share/locale/ug
+@dirrmtry share/locale/te/LC_MESSAGES
+@dirrmtry share/locale/te
+@dirrmtry share/locale/sr@latin/LC_MESSAGES
+@dirrmtry share/locale/sr@latin
+@dirrmtry share/locale/si/LC_MESSAGES
+@dirrmtry share/locale/si
+@dirrmtry share/locale/rw/LC_MESSAGES
+@dirrmtry share/locale/rw
+@dirrmtry share/locale/oc/LC_MESSAGES
+@dirrmtry share/locale/oc
+@dirrmtry share/locale/mr/LC_MESSAGES
+@dirrmtry share/locale/mr
+@dirrmtry share/locale/mg/LC_MESSAGES
+@dirrmtry share/locale/mg
+@dirrmtry share/locale/mai/LC_MESSAGES
+@dirrmtry share/locale/mai
+@dirrmtry share/locale/ku/LC_MESSAGES
+@dirrmtry share/locale/ku
+@dirrmtry share/locale/dz/LC_MESSAGES
+@dirrmtry share/locale/dz
+@dirrmtry share/locale/crh/LC_MESSAGES
+@dirrmtry share/locale/crh
+@dirrmtry share/locale/ca@valencia/LC_MESSAGES
+@dirrmtry share/locale/ca@valencia
+@dirrmtry share/locale/bn_IN/LC_MESSAGES
+@dirrmtry share/locale/bn_IN
+@dirrmtry share/locale/be@latin/LC_MESSAGES
+@dirrmtry share/locale/be@latin
+@dirrmtry share/locale/ast/LC_MESSAGES
+@dirrmtry share/locale/ast
+@dirrmtry share/locale/as/LC_MESSAGES
+@dirrmtry share/locale/as