summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2017-06-23 11:50:14 +0200
committerBastien Nocera <hadess@hadess.net>2017-06-23 18:01:14 +0200
commiteca1ece236b55365bf89b24ceab7c9520f6a1faf (patch)
treed8b10c392bd98afdbae754b8b57216ab15f24804
parent95256079d3457056fbcdf48e5d618a6e57af0439 (diff)
downloadtotem-eca1ece236b55365bf89b24ceab7c9520f6a1faf.tar.gz
build: Remove autotools
https://bugzilla.gnome.org/show_bug.cgi?id=783205
-rw-r--r--Makefile.am52
-rw-r--r--Makefile.decl53
-rwxr-xr-xautogen.sh28
-rw-r--r--configure.ac634
-rw-r--r--data/Makefile.am125
-rw-r--r--data/appdata/Makefile.am9
-rw-r--r--data/icons/16x16/Makefile.am6
-rw-r--r--data/icons/22x22/Makefile.am6
-rw-r--r--data/icons/24x24/Makefile.am6
-rw-r--r--data/icons/256x256/Makefile.am6
-rw-r--r--data/icons/32x32/Makefile.am6
-rw-r--r--data/icons/48x48/Makefile.am6
-rw-r--r--data/icons/Makefile.am5
-rw-r--r--data/icons/symbolic/Makefile.am6
-rw-r--r--docs/Makefile.am3
-rw-r--r--docs/reference/Makefile.am156
-rw-r--r--git.mk316
-rw-r--r--help/Makefile.am21
-rw-r--r--src/Makefile.am256
-rw-r--r--src/backend/Makefile.am86
-rw-r--r--src/gst/Makefile.am70
-rw-r--r--src/plugins/Makefile.am6
-rw-r--r--src/plugins/apple-trailers/Makefile.am13
-rw-r--r--src/plugins/autoload-subtitles/Makefile.am13
-rw-r--r--src/plugins/brasero-disc-recorder/Makefile.am17
-rw-r--r--src/plugins/dbusservice/Makefile.am8
-rw-r--r--src/plugins/gromit/Makefile.am13
-rw-r--r--src/plugins/im-status/Makefile.am15
-rw-r--r--src/plugins/lirc/Makefile.am21
-rw-r--r--src/plugins/media-player-keys/Makefile.am18
-rw-r--r--src/plugins/ontop/Makefile.am13
-rw-r--r--src/plugins/opensubtitles/Makefile.am19
-rw-r--r--src/plugins/properties/Makefile.am19
-rw-r--r--src/plugins/pythonconsole/Makefile.am15
-rw-r--r--src/plugins/recent/Makefile.am13
-rw-r--r--src/plugins/rotation/Makefile.am24
-rw-r--r--src/plugins/sample-vala/Makefile.am30
-rw-r--r--src/plugins/samplepython/Makefile.am14
-rw-r--r--src/plugins/save-file/Makefile.am17
-rw-r--r--src/plugins/screensaver/Makefile.am14
-rw-r--r--src/plugins/screenshot/Makefile.am26
-rw-r--r--src/plugins/skipto/Makefile.am22
-rw-r--r--src/plugins/variable-rate/Makefile.am14
-rw-r--r--src/plugins/vimeo/Makefile.am13
-rw-r--r--src/plugins/zeitgeist-dp/Makefile.am32
-rw-r--r--src/properties/Makefile.am18
-rw-r--r--subprojects/Makefile.am3
47 files changed, 0 insertions, 2286 deletions
diff --git a/Makefile.am b/Makefile.am
deleted file mode 100644
index 214e2ad7e..000000000
--- a/Makefile.am
+++ /dev/null
@@ -1,52 +0,0 @@
-ACLOCAL_AMFLAGS = -I m4 -I subprojects/libgd ${ACLOCAL_FLAGS}
-
-SUBDIRS = subprojects po data help src docs
-
-EXTRA_DIST = \
- license_change \
- autogen.sh \
- intltool-extract.in \
- intltool-merge.in \
- intltool-update.in \
- AUTHORS NEWS \
- totem.spec.in \
- totem.spec \
- ChangeLog.pre-gitlog \
- MAINTAINERS \
- totem.doap
-
-CLEANFILES = totem.spec
-
-MAINTAINERCLEANFILES = \
- $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
- $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
- $(srcdir)/INSTALL \
- $(srcdir)/config.h.in \
- $(srcdir)/py-compile \
- $(srcdir)/gtk-doc.make \
- $(srcdir)/ChangeLog \
- $(srcdir)/omf.make \
- $(srcdir)/xmldocs.make
-
-DISTCLEANFILES = intltool-extract intltool-merge intltool-update
-
-DISTCHECK_CONFIGURE_FLAGS = \
- --disable-scrollkeeper \
- --enable-gtk-doc \
- --with-nautilusdir='$${libdir}/nautilus/extensions-2.0-distcheck' \
- --enable-introspection \
- --enable-appstream-util
-
-# Build ChangeLog from GIT history
-ChangeLog:
- @if test -f $(top_srcdir)/.git/HEAD; then \
- pushd $(top_srcdir) ; \
- git log --stat --after="Mon Jul 20 23:47:57 2009" > $@; \
- popd ; \
- fi
-
-dist: ChangeLog
-
-.PHONY: ChangeLog
-
--include $(top_srcdir)/git.mk
diff --git a/Makefile.decl b/Makefile.decl
deleted file mode 100644
index aab33c3b8..000000000
--- a/Makefile.decl
+++ /dev/null
@@ -1,53 +0,0 @@
-GTESTER = gtester # in $PATH for non-GLIB packages
-GTESTER_REPORT = gtester-report # in $PATH for non-GLIB packages
-
-# initialize variables for unconditional += appending
-TEST_PROGS =
-
-# test: run all tests in cwd and subdirs
-test: ${TEST_PROGS}
- @test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
- @ for subdir in $(SUBDIRS) . ; do \
- test "$$subdir" = "." -o "$$subdir" = "po" || \
- ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
- done
-
-# test-report: run tests in subdirs and generate report
-# perf-report: run tests in subdirs with -m perf and generate report
-# full-report: like test-report: with -m perf and -m slow
-test-report perf-report full-report: ${TEST_PROGS}
- @test -z "${TEST_PROGS}" || { \
- case $@ in \
- test-report) test_options="-k";; \
- perf-report) test_options="-k -m=perf";; \
- full-report) test_options="-k -m=perf -m=slow";; \
- esac ; \
- if test -z "$$GTESTER_LOGDIR" ; then \
- ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
- elif test -n "${TEST_PROGS}" ; then \
- ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
- fi ; \
- }
- @ ignore_logdir=true ; \
- if test -z "$$GTESTER_LOGDIR" ; then \
- GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
- ignore_logdir=false ; \
- fi ; \
- for subdir in $(SUBDIRS) . ; do \
- test "$$subdir" = "." -o "$$subdir" = "po" || \
- ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
- done ; \
- $$ignore_logdir || { \
- echo '<?xml version="1.0"?>' > $@.xml ; \
- echo '<report-collection>' >> $@.xml ; \
- for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
- sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
- done ; \
- echo >> $@.xml ; \
- echo '</report-collection>' >> $@.xml ; \
- rm -rf "$$GTESTER_LOGDIR"/ ; \
- ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
- }
-.PHONY: test test-report perf-report full-report
-# run make test as part of make check
-check-local: test
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 8b8fc4171..000000000
--- a/autogen.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-# Run this to generate all the initial makefiles, etc.
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-olddir=`pwd`
-
-PKG_NAME="totem"
-ACLOCAL_FLAGS="-I subprojects/libgd $ACLOCAL_FLAGS"
-
-(test -f $srcdir/configure.ac) || {
- echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
- echo " top-level $PKG_NAME directory"
- exit 1
-}
-
-cd "$srcdir"
-echo "+ Setting up submodules"
-git submodule update --init --recursive
-
-which gnome-autogen.sh || {
- echo "You need to install gnome-common from the GNOME git"
- exit 1
-}
-
-cd "$olddir"
-REQUIRED_PKG_CONFIG_VERSION=0.17.1 REQUIRED_AUTOMAKE_VERSION=1.11 USE_GNOME2_MACROS=1 . gnome-autogen.sh --enable-debug "$@"
diff --git a/configure.ac b/configure.ac
deleted file mode 100644
index 75537efe9..000000000
--- a/configure.ac
+++ /dev/null
@@ -1,634 +0,0 @@
-AC_PREREQ[(2.64)]
-
-m4_define(totem_version_major, 3)
-m4_define(totem_version_minor, 24)
-m4_define(totem_version_micro, 0)
-
-# The version of the API exposed to plugins
-m4_define(totem_api_version_major, 1)
-m4_define(totem_api_version_minor, 0)
-
-AC_INIT([totem],
- [totem_version_major.totem_version_minor.totem_version_micro],
- [http://bugzilla.gnome.org/enter_bug.cgi?product=totem],
- [totem],
- [https://wiki.gnome.org/Apps/Videos])
-
-AM_MAINTAINER_MODE([enable])
-AC_CONFIG_SRCDIR([src/totem.c])
-AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_MACRO_DIR([m4])
-AC_CONFIG_AUX_DIR([build-aux])
-
-AM_INIT_AUTOMAKE([1.11 dist-xz tar-ustar no-dist-gzip check-news])
-
-# Enable silent build when available (Automake 1.11)
-m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
-
-dnl Add the languages which your application supports to po/LINGUAS
-GETTEXT_PACKAGE=totem
-AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, ["$GETTEXT_PACKAGE"], [Define to the Gettext package name])
-AC_SUBST(GETTEXT_PACKAGE)
-IT_PROG_INTLTOOL([0.50.1])
-
-# User Documentation
-YELP_HELP_INIT
-
-GOBJECT_INTROSPECTION_CHECK([0.6.7])
-m4_define([glib_required_version], [2.32.0])
-AM_PATH_GLIB_2_0(glib_required_version)
-
-AC_PROG_CXX
-AM_PROG_CC_C_O
-
-# Initialize libtool
-LT_PREREQ([2.2])
-LT_INIT
-m4_ifdef([LT_OUTPUT], [LT_OUTPUT])
-
-PKG_PROG_PKG_CONFIG
-
-AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
-
-# Requirements
-GLIB_REQS=2.35.0
-GIO_REQS=2.27.92
-GTK_REQS=3.19.4
-TOTEM_PLPARSER_REQS=3.10.1
-VALA_REQS=0.14.1
-PEAS_REQS=1.1.0
-PYTHON_REQS=2.3
-PYGOBJECT_REQS=2.90.3
-GRILO_REQS=0.3.0
-LIBXML_REQS=2.6.0
-CAIRO_REQS=1.14.0
-
-# Used in the pkg-config file for plugins
-AC_SUBST(GLIB_REQS)
-AC_SUBST(GTK_REQS)
-AC_SUBST(TOTEM_PLPARSER_REQS)
-
-TOTEM_VERSION_MAJOR=totem_version_major
-TOTEM_VERSION_MINOR=totem_version_minor
-TOTEM_VERSION_MICRO=totem_version_micro
-AC_SUBST(TOTEM_VERSION_MAJOR)
-AC_SUBST(TOTEM_VERSION_MINOR)
-AC_SUBST(TOTEM_VERSION_MICRO)
-
-TOTEM_API_VERSION=totem_api_version_major.totem_api_version_minor
-AC_SUBST(TOTEM_API_VERSION)
-AC_DEFINE_UNQUOTED(TOTEM_API_VERSION, ["$TOTEM_API_VERSION"], [Define to the Totem plugin API version])
-
-# The full list of plugins
-allowed_plugins="apple-trailers autoload-subtitles brasero-disc-recorder dbusservice im-status gromit lirc media-player-keys ontop opensubtitles properties pythonconsole recent rotation save-file samplepython sample-vala screensaver screenshot skipto zeitgeist-dp variable-rate vimeo"
-
-PLUGINDIR='${libdir}/totem/plugins'
-AC_SUBST(PLUGINDIR)
-
-dnl the two versions here implicate the gstreamer core and gst-plugins
-dnl release versions.
-GST_MAJORMINOR=1.0
-GST_REQS=1.6.0
-GST_PLUG_BASE_REQS=1.6.0
-GSTPLUG_REQS=0.11.93
-CLUTTER_REQS=1.17.3
-CLUTTER_GST_REQS=2.99.2
-CLUTTER_GTK_REQS=1.8.1
-
-dnl Check for the required GStreamer versions for missing plugins
-dnl installation, unless this has been disabled.
-MISSING_PLUGINS_MODULES=""
-AC_MSG_CHECKING([whether to enable easy codec installation support])
-AC_ARG_ENABLE([easy-codec-installation],
- [
- AS_HELP_STRING([--enable-easy-codec-installation],
- [Whether to enable easy codec installation support for GStreamer]
- )
- ], [
- case "${enableval}" in
- yes) enable_easy_codec_installation=yes ;;
- no) enable_easy_codec_installation=no ;;
- *) enable_easy_codec_installation=auto ;;
- esac
- ], [
- dnl default value
- enable_easy_codec_installation=auto
- ]
-)
-AC_MSG_RESULT([$enable_easy_codec_installation])
-
-if test "x$enable_easy_codec_installation" != "xno"; then
- MISSING_PLUGINS_MODULES="gstreamer-pbutils-1.0"
- PKG_CHECK_MODULES(MISSING_PLUGINS, $MISSING_PLUGINS_MODULES,
- [
- AC_DEFINE([ENABLE_MISSING_PLUGIN_INSTALLATION], 1,
- [Whether we can and want to do installation of missing plugins])
- ])
-fi
-
-# ================================================================
-# Backend requirements
-# ================================================================
-
-BACKEND_MODULES="gstreamer-1.0 >= $GST_REQS gstreamer-base-1.0 >= $GST_REQS gstreamer-plugins-base-1.0 >= $GST_PLUG_BASE_REQS $MISSING_PLUGINS_MODULES gstreamer-tag-1.0 >= $GSTPLUG_REQS gstreamer-audio-1.0 gstreamer-video-1.0 clutter-1.0 >= $CLUTTER_REQS clutter-gst-3.0 >= $CLUTTER_GST_REQS clutter-gtk-1.0 cairo >= $CAIRO_REQS gsettings-desktop-schemas"
-
-PKG_CHECK_MODULES(BACKEND, $BACKEND_MODULES)
-PKG_CHECK_MODULES(BACKEND_TEST, $BACKEND_MODULES gtk+-3.0 >= $GTK_REQS)
-
-dnl Check for required plugins
-gst10_toolsdir=`$PKG_CONFIG --variable=toolsdir gstreamer-1.0`
-gst10_inspect="$gst10_toolsdir/gst-inspect-1.0"
-
-dnl Give error and exit if we don't have the gst_inspect tool
-AC_MSG_CHECKING([GStreamer 1.0 inspection tool])
-if test -r "$gst10_inspect"; then
- AC_MSG_RESULT([yes])
-else
- AC_MSG_RESULT([no])
- AC_MSG_ERROR([
- Cannot find required GStreamer-1.0 tool 'gst-inspect-1.0'.
- It should be part of gstreamer-1_0-utils. Please install it.
- ])
-fi
-
-dnl Check for elements from gst-plugins-base
-dnl Set plugins which contain below elements
-set -- playback videoscale
-for base_element in playbin videoscale
-do
- AC_MSG_CHECKING([GStreamer 1.0 $base_element element])
- if $gst10_inspect $base_element >/dev/null 2>/dev/null; then
- AC_MSG_RESULT([yes])
- else
- AC_MSG_RESULT([no])
- AC_MSG_ERROR([
- Cannot find required GStreamer-1.0 plugin '$1'.
- It should be part of gst-plugins-base. Please install it.
- ])
-
- fi
- shift;
-done
-
-dnl Check for elements from gst-plugins-good
-dnl Set plugins which contain below elements
-set -- autodetect goom scaletempo
-for good_element in autoaudiosink goom scaletempo
-do
- AC_MSG_CHECKING([GStreamer 1.0 $good_element element])
- if $gst10_inspect $good_element >/dev/null 2>/dev/null; then
- AC_MSG_RESULT([yes])
- else
- AC_MSG_RESULT([no])
- AC_MSG_ERROR([
- Cannot find required GStreamer-1.0 plugin '$1'.
- It should be part of gst-plugins-good. Please install it.
- ])
- fi
- shift;
-done
-
-# ================================================================
-# Python plugins
-# ================================================================
-# We don't Python or PyGObject at compile time, but they are needed for the Python plugins at runtime, so we check anyway.
-# We need pylint for `make check`.
-
-AC_MSG_CHECKING([whether Python plugin support is requested])
-AC_ARG_ENABLE([python],
- AS_HELP_STRING([--enable-python],[Enable python support]),
- [enable_python=$enableval],
- [enable_python=autodetect])
-AC_MSG_RESULT([$enable_python])
-
-have_python=no
-have_pygobject=no
-PYTHON_MODULES=""
-
-# Test for the Python run time and PyGObject. Test for pylint as well, for `make check`.
-if test "x$enable_python" != "xno"; then
- AM_PATH_PYTHON([$PYTHON_REQS],[have_python=yes],[have_python=no])
- if test "x$PYTHON" = "x:"; then
- have_python=no
- fi
-
- PYTHON_MODULES="pygobject-3.0 >= $PYGOBJECT_REQS"
- PKG_CHECK_MODULES([PYGOBJECT],[$PYTHON_MODULES],[have_pygobject=yes],[have_pygobject=no])
- AC_PATH_PROG([PYLINT], [pylint], [no])
-fi
-
-# Output the results of the Python checks
-if test "x$have_python" != "xyes" -o "x$have_pygobject" != "xyes" -o "x$PYLINT" = "xno"; then
- if test "x$enable_python" = "xyes"; then
- AC_MSG_ERROR([python >= $PYTHON_REQS, $PYTHON_MODULES or pylint not found])
- elif test "x$enable_python" = "xautodetect"; then
- enable_python=no
- AC_MSG_WARN([python >= $PYTHON_REQS, $PYTHON_MODULES or pylint not found; disabling Python support])
- fi
-elif test "x$enable_python" != "xno"; then
- enable_python=yes
-fi
-
-AM_CONDITIONAL([ENABLE_PYTHON],[test "x$enable_python" = "xyes"])
-
-# ================================================================
-# Player requirements
-#================================================================
-
-PKG_CHECK_MODULES(PLAYER, $BACKEND_MODULES glib-2.0 >= $GLIB_REQS gio-2.0 >= $GIO_REQS gtk+-3.0 >= $GTK_REQS gdk-x11-3.0 >= $GTK_REQS gmodule-2.0 totem-plparser >= $TOTEM_PLPARSER_REQS libpeas-1.0 >= $PEAS_REQS libpeas-gtk-1.0 >= $PEAS_REQS $PYTHON_MODULES grilo-0.3 >= $GRILO_REQS grilo-pls-0.3 >= $GRILO_REQS gnome-desktop-3.0)
-PKG_CHECK_MODULES(LIBPLAYER, glib-2.0 >= $GLIB_REQS gio-2.0 >= $GIO_REQS gtk+-3.0 >= $GTK_REQS gdk-x11-3.0 >= $GTK_REQS clutter-gtk-1.0)
-PKG_CHECK_MODULES(HELPER, gstreamer-1.0 gstreamer-tag-1.0)
-PKG_CHECK_MODULES(TIME_HELPER, glib-2.0)
-PKG_CHECK_MODULES(RTL_HELPER, glib-2.0 gtk+-3.0 >= $GTK_REQS)
-PKG_CHECK_MODULES(PIXBUF_HELPER, gdk-pixbuf-2.0 gstreamer-tag-1.0 >= $GSTPLUG_REQS gstreamer-video-1.0)
-PKG_CHECK_MODULES(THUMBNAILER, gdk-3.0 totem-plparser >= $TOTEM_PLPARSER_REQS gstreamer-tag-1.0 >= $GSTPLUG_REQS gstreamer-video-1.0)
-PKG_CHECK_MODULES(PROPERTIES, gtk+-3.0 >= $GTK_REQS)
-
-LIBGD_INIT([
- tagged-entry
- main-view
- gtk-hacks
- view-common
- static
- ][subprojects/libgd])
-
-
-dnl ================================================================
-dnl Vala plugins
-dnl ================================================================
-AC_MSG_CHECKING([whether Vala plugin support is requested])
-AC_ARG_ENABLE([vala],
- AS_HELP_STRING([--enable-vala],[Enable Vala plugin support]),
- [enable_vala=$enableval],
- [enable_vala=auto])
-AC_MSG_RESULT([$enable_vala])
-if test "x$enable_vala" != "xno"; then
- AM_PROG_VALAC([$VALA_REQS])
- if test "$VALAC" = "valac"; then
- if test "x$enable_vala" = "xyes"; then
- AC_MSG_ERROR([Vala plugin support explicitly requested, but not found])
- fi
- with_vala=no
- else
- with_vala=yes
- fi
-fi
-
-AM_CONDITIONAL(ENABLE_VALA, test "x$with_vala" = "xyes")
-
-# ********************
-# Movie player plugins
-# ********************
-
-plugin_error_or_ignore()
-{
- if test "${error_on_bad_plugin}" = "1" ; then
- AC_MSG_ERROR([$1])
- else
- AC_MSG_WARN([$1 (disabling plugin)])
- fi
-}
-
-plugin_error()
-{
- AC_MSG_ERROR([$1])
-}
-
-AC_ARG_WITH([plugins],
- [AS_HELP_STRING([--with-plugins],[Which Totem plugins to compile (default: auto; "all", "none" and "autodetect" are valid)])],
- [], [with_plugins=autodetect])
-
-used_plugins=""
-used_plugins2=""
-
-if test "x${with_plugins}" = "xautodetect" ; then
- # Default to all plugins and just ignore them if they won't compile
- with_plugins="all"
- error_on_bad_plugin="0"
-else
- # Clean up the plugin list and error if a plugin won't compile
- with_plugins=`echo ,"${with_plugins}", | sed -e 's/[[ ,]][[ ,]]*/ /g' -e 's/,$//'`
- error_on_bad_plugin="1"
-fi
-
-# Iterate through the wanted plugins and weed out bad ones (or error)
-for wanted_plugin in ${with_plugins}; do
- for allowed_plugin in ${allowed_plugins}; do
- case ${wanted_plugin} in
- all)
- # List all plugins as being used
- used_plugins=${allowed_plugins}
- ;;
- autodetect)
- # List all plugins as being used
- used_plugins=${allowed_plugins}
- ;;
- none) used_plugins="";; # List no plugins
- ${allowed_plugin}) used_plugins="${used_plugins} ${wanted_plugin}";; # List the plugin
- *) ;;
- esac
- done
-done
-
-# Check for plugin-specific requirements and error if necessary
-for plugin in ${used_plugins}; do
- add_plugin="1"
-
- case ${plugin} in
- gromit)
- have_x11=no
- gdk_targets=$(pkg-config --variable=targets gtk+-3.0)
- for gdk_target in $gdk_targets; do
- if test x$gdk_target = xx11; then
- have_x11=yes
- break
- fi
- done
-
- if test "${have_x11}" != "yes" ; then
- plugin_error_or_ignore "the gromit plugin is not supported on non-X11 targets"
- add_plugin="0"
- fi
- ;;
- media-player-keys)
- PKG_CHECK_MODULES(MEDIA_PLAYER_KEYS, gio-2.0,
- [HAVE_MEDIA_PLAYER_KEYS=yes], [HAVE_MEDIA_PLAYER_KEYS=no])
- if test "${HAVE_MEDIA_PLAYER_KEYS}" != "yes" ; then
- plugin_error "you need gio installed for the media-player-keys plugin"
- add_plugin="0"
- fi
- ;;
- lirc)
- AC_CHECK_LIB(lirc_client, lirc_init,
- [AC_CHECK_HEADER(lirc/lirc_client.h,
- [LIRC_LIBS="-llirc_client"
- HAVE_LIRC=yes],
- [
- LIRC_LIBS=""
- HAVE_LIRC=no])])
- AC_SUBST(LIRC_LIBS)
- if test "${HAVE_LIRC}" != "yes" ; then
- plugin_error_or_ignore "you need lirc_client installed for the lirc plugin"
- add_plugin="0"
- fi
- ;;
- rotation)
- if test "${with_vala}" != "yes" ; then
- plugin_error_or_ignore "you need vala installed to use the rotation plugin"
- add_plugin="0"
- elif test "x$found_introspection" != "xyes"; then
- plugin_error_or_ignore "you need introspection support for the rotation plugin"
- add_plugin="0"
- fi
- ;;
- sample-vala)
- if test "${with_vala}" != "yes" ; then
- plugin_error_or_ignore "you need vala installed to use the sample-vala plugin"
- add_plugin="0"
- elif test "x$found_introspection" != "xyes"; then
- plugin_error_or_ignore "you need introspection support for the sample-vala plugin"
- add_plugin="0"
- fi
- ;;
- brasero-disc-recorder)
- dnl this is only needed to use brasero icons
- PKG_CHECK_MODULES(DISC_RECORDER, libxml-2.0 >= 2.6.0 gtk+-x11-3.0,
- [BUILD_RECORDER=yes], [BUILD_RECORDER=no])
- if test "${BUILD_RECORDER}" != "yes" ; then
- plugin_error_or_ignore "you need libxml-2.0 >= 2.6.0 and gtk+-x11-3.0 to use the brasero-disc-recorder plugin"
- add_plugin="0"
- fi
- ;;
- save-file)
- dnl the nautilus check should be a run-time check
- dnl but it might not always be running
- PKG_CHECK_MODULES(SAVE_FILE_CHECK, gio-2.0 >= 2.26 libnautilus-extension >= 2.91.3,
- [BUILD_SAVE_FILE=yes], [BUILD_SAVE_FILE=no])
- if test "${BUILD_SAVE_FILE}" != "yes" ; then
- plugin_error_or_ignore "you need gio-2.0 >=2.26 to use the save-file plugin"
- add_plugin="0"
- else
- PKG_CHECK_MODULES(SAVE_FILE, gio-2.0 >= 2.26)
- fi
- ;;
- zeitgeist-dp)
- if test "${with_vala}" != "yes" ; then
- plugin_error_or_ignore "you need vala installed to use the zeitgeist-dp plugin"
- add_plugin="0"
- elif test "x$found_introspection" != "xyes"; then
- plugin_error_or_ignore "you need introspection support for the zeitgeist-dp plugin"
- add_plugin="0"
- else
- PKG_CHECK_MODULES(LIBZEITGEIST, zeitgeist-2.0 >= 0.9.12,
- [HAS_LIBZEITGEIST=yes], [HAS_LIBZEITGEIST=no])
- if test "${HAS_LIBZEITGEIST}" != "yes" ; then
- plugin_error_or_ignore "you need zeitgeist-2.0 >= 0.9.12 to use the zeitgeist-dp plugin"
- add_plugin="0"
- fi
- fi
- ;;
- esac
-
- # Add the specified plugin
- if test "${add_plugin}" = "1" ; then
- used_plugins2="${used_plugins2} ${plugin}"
- fi
-done
-
-ALL_PLUGINS=$allowed_plugins
-PLUGINS=$used_plugins2
-
-AC_MSG_CHECKING([which plugins to compile])
-AC_MSG_RESULT([$PLUGINS])
-
-AC_SUBST([ALL_PLUGINS])
-AC_SUBST([PLUGINS])
-
-dnl ********
-dnl Nautilus
-dnl ********
-
-dnl Check for Nautilus property page build
-AC_ARG_ENABLE(nautilus,
- AS_HELP_STRING([--enable-nautilus],[compile the nautilus plugin]),
- [case "${enableval}" in
- yes) ENABLE_NAUTILUS=yes ;;
- no) ENABLE_NAUTILUS=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --enable-nautilus) ;;
- esac],
- [ENABLE_NAUTILUS=yes]) dnl Default value
-
-if test x$ENABLE_NAUTILUS = "xyes" ; then
- PKG_CHECK_MODULES(NAUTILUS, gtk+-3.0 gthread-2.0 libnautilus-extension gstreamer-tag-1.0 >= $GSTPLUG_REQS $MISSING_PLUGINS_MODULES,
- [HAVE_NAUTILUS=yes], [HAVE_NAUTILUS=no])
-fi
-
-AC_ARG_WITH(nautilusdir,
- AS_HELP_STRING([--with-nautilusdir=DIR],[Installation path for Nautilus extension @<:@auto@:>@]),
- [ac_with_nautilusdir=$withval],
- [ac_with_nautilusdir=""])
-
-if test x$HAVE_NAUTILUS = "xyes"; then
- AC_DEFINE(HAVE_NAUTILUS, 1, [defined if you build the nautilus plugin])
- if test "${ac_with_nautilusdir}" = ""; then
- ac_with_nautilusdir=`pkg-config --variable=extensiondir libnautilus-extension`
- fi
- AC_SUBST(NAUTILUSDIR)
- AC_MSG_NOTICE([installing nautilus plugin in ${ac_with_nautilusdir}])
- AC_SUBST([NAUTILUSDIR],[${ac_with_nautilusdir}])
-
-fi
-AM_CONDITIONAL(HAVE_NAUTILUS, test x$HAVE_NAUTILUS = "xyes")
-
-GLIB_GSETTINGS
-
-GNOME_DEBUG_CHECK
-GNOME_COMPILE_WARNINGS([maximum])
-GNOME_CXX_WARNINGS
-GNOME_MAINTAINER_MODE_DEFINES
-GTK_DOC_CHECK([1.14],[--flavour no-tmpl])
-
-APPSTREAM_XML
-
-# This macro expands DIR and assigns it to RET.
-# If DIR is NONE, then it's replaced by DEFAULT.
-# Based on AC_DEFINE_DIR
-AC_DEFUN([TOTEM_FULLPATH], [
- test "x$prefix" = xNONE && prefix="$ac_default_prefix"
- test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
- ac_expand=[$]$1
- test "x$ac_expand" = xNONE && ac_expand="[$]$2"
- ac_expand=`eval echo [$]ac_expand`
- $3=`eval echo [$]ac_expand`
-])
-
-dnl FULL_LIBEXECDIR is used for X-GNOME-Bugzilla-ExtraInfoScript expansion
-dnl in data/org.gnome.Totem.desktop.in.in.in
-TOTEM_FULLPATH(libexecdir, NONE, FULL_LIBEXECDIR)
-AC_SUBST(FULL_LIBEXECDIR)
-
-dnl run in source tree
-AC_ARG_ENABLE(run-in-source-tree,
- AS_HELP_STRING([--disable-run-in-source-tree],[disable search for UI files and plugins in local directory ]),
- [case "${enableval}" in
- yes) ENABLE_RUN_IN_SOURCE_TREE=yes ;;
- no) ENABLE_RUN_IN_SOURCE_TREE=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for --disable-run-in-source-tree) ;;
- esac],
-[ENABLE_RUN_IN_SOURCE_TREE=yes]) dnl Default value
-if test x$ENABLE_RUN_IN_SOURCE_TREE = xyes; then
- AC_DEFINE(TOTEM_RUN_IN_SOURCE_TREE, 1, [enable search for UI files and plugins in local directory])
-fi
-
-if test "$GCC" = "yes" ; then
- CFLAGS="\
- -Wall \
- -Wchar-subscripts -Wmissing-declarations -Wmissing-prototypes \
- -Wnested-externs -Wpointer-arith \
- -Wcast-align -Wsign-compare \
- -fno-strict-aliasing \
- $CFLAGS"
-fi
-
-AC_SUBST([AM_CPPFLAGS])
-AC_SUBST([AM_CFLAGS])
-AC_SUBST([AM_CXXFLAGS])
-AC_SUBST([AM_LDFLAGS])
-
-AC_CONFIG_FILES([
-Makefile
-totem.spec
-subprojects/Makefile
-subprojects/libgd/Makefile
-src/Makefile
-src/gst/Makefile
-src/properties/Makefile
-src/plugins/Makefile
-src/plugins/apple-trailers/Makefile
-src/plugins/autoload-subtitles/Makefile
-src/plugins/dbusservice/Makefile
-src/plugins/screensaver/Makefile
-src/plugins/screenshot/Makefile
-src/plugins/ontop/Makefile
-src/plugins/im-status/Makefile
-src/plugins/gromit/Makefile
-src/plugins/lirc/Makefile
-src/plugins/media-player-keys/Makefile
-src/plugins/opensubtitles/Makefile
-src/plugins/opensubtitles/org.gnome.totem.plugins.opensubtitles.gschema.xml
-src/plugins/properties/Makefile
-src/plugins/recent/Makefile
-src/plugins/rotation/Makefile
-src/plugins/save-file/Makefile
-src/plugins/skipto/Makefile
-src/plugins/samplepython/Makefile
-src/plugins/sample-vala/Makefile
-src/plugins/pythonconsole/Makefile
-src/plugins/pythonconsole/org.gnome.totem.plugins.pythonconsole.gschema.xml
-src/plugins/brasero-disc-recorder/Makefile
-src/plugins/zeitgeist-dp/Makefile
-src/plugins/variable-rate/Makefile
-src/plugins/vimeo/Makefile
-src/backend/Makefile
-data/Makefile
-data/org.gnome.totem.gschema.xml
-data/org.gnome.Totem.desktop.in.in
-data/totem.pc
-data/appdata/Makefile
-data/icons/Makefile
-data/icons/16x16/Makefile
-data/icons/22x22/Makefile
-data/icons/24x24/Makefile
-data/icons/32x32/Makefile
-data/icons/48x48/Makefile
-data/icons/256x256/Makefile
-data/icons/symbolic/Makefile
-po/Makefile.in
-help/Makefile
-docs/Makefile
-docs/reference/Makefile
-docs/reference/version.xml
-])
-AC_OUTPUT
-
-AC_MSG_NOTICE([Totem was configured with the following options:])
-AC_MSG_NOTICE([** Using the GStreamer-$GST_MAJORMINOR backend])
-if test "x$MISSING_PLUGINS_LIBS" != "x"; then
- AC_MSG_NOTICE([** Easy codec installation support enabled])
-else
- AC_MSG_NOTICE([ Easy codec installation support disabled])
-fi
-if test x$enable_python = xyes ; then
- AC_MSG_NOTICE([** Python plugin support enabled])
-else
- AC_MSG_NOTICE([ Python plugin support disabled])
-fi
-if test x$with_vala = xyes ; then
- AC_MSG_NOTICE([** Vala plugin support enabled])
-else
- AC_MSG_NOTICE([ Vala plugin support disabled])
-fi
-if test "x${PLUGINS}" != "x" ; then
- for allowed_plugin in ${ALL_PLUGINS}; do
- for plugin in ${PLUGINS}; do
- case ${allowed_plugin} in
- ${plugin})
- AC_MSG_NOTICE([** ${allowed_plugin} plugin enabled])
- continue 2
- ;;
- *);;
- esac
- done
- AC_MSG_NOTICE([ ${allowed_plugin} plugin disabled])
- done
-else
- AC_MSG_NOTICE([ No Totem plugins enabled])
-fi
-if test x$ENABLE_NAUTILUS = xyes ; then
- AC_MSG_NOTICE([** Nautilus properties page enabled])
-else
- AC_MSG_NOTICE([ Nautilus properties page disabled])
-fi
-
-AC_MSG_NOTICE([End options])
-
diff --git a/data/Makefile.am b/data/Makefile.am
deleted file mode 100644
index db5920a10..000000000
--- a/data/Makefile.am
+++ /dev/null
@@ -1,125 +0,0 @@
-SUBDIRS = icons appdata
-
-EXTRA_DIST =
-CLEANFILES =
-
-# Man pages
-man_MANS = totem.1 totem-video-thumbnailer.1
-totem-video-thumbnailer.1: totem-video-thumbnailer.pod
- $(AM_V_GEN) pod2man -c "" -s 1 -q none -n totem-video-thumbnailer -r GNOME $< > $@
-EXTRA_DIST += \
- $(man_MANS) \
- totem-video-thumbnailer.pod
-
-# UI files and images
-stuffdir = $(pkgdatadir)
-stuff_DATA = \
- totem.ui \
- playlist.ui \
- preferences.ui \
- properties.ui \
- uri.ui \
- controls.ui \
- shortcuts.ui
-EXTRA_DIST += $(stuff_DATA)
-
-# Icons
-gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor
-
-install-data-hook: update-icon-cache
-uninstall-hook: update-icon-cache
-update-icon-cache:
- @-if test -z "$(DESTDIR)"; then \
- echo "Updating Gtk icon cache."; \
- $(gtk_update_icon_cache); \
- else \
- echo "*** Icon cache not updated. After (un)install, run this:"; \
- echo "*** $(gtk_update_icon_cache)"; \
- fi
-
-# Desktop file
-# org.gnome.Totem.desktop.in.in.in = original
-# org.gnome.Totem.desktop.in.in = by configure, includes the X-Gnome-Bugzilla
-# org.gnome.Totem.desktop.in = includes the mime-types
-# org.gnome.Totem.desktop = intltool-ised
-desktop_in_files = org.gnome.Totem.desktop.in
-desktopdir = $(datadir)/applications
-desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
-@INTLTOOL_DESKTOP_RULE@
-
-org.gnome.Totem.desktop.in: org.gnome.Totem.desktop.in.in mime-type-list.txt uri-schemes-list.txt desktop.sh
- $(AM_V_GEN) cat org.gnome.Totem.desktop.in.in | sed 's,@FULL_LIBEXECDIR@,$(FULL_LIBEXECDIR),' > $@ &&\
- $(SHELL) $(srcdir)/desktop.sh $(srcdir)/mime-type-list.txt $(srcdir)/uri-schemes-list.txt >> $@
-
-EXTRA_DIST += desktop.sh
-
-servicedir = $(datadir)/dbus-1/services
-service_DATA = org.gnome.Totem.service
-
-%.service: %.service.in
- $(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|" \
- $< > $@ || rm $@
-
-EXTRA_DIST += org.gnome.Totem.service.in
-
-CLEANFILES += \
- $(desktop_in_files) \
- $(desktop_DATA) \
- $(service_DATA)
-
-# Thumbnailer
-thumbnailerdir = $(datadir)/thumbnailers
-thumbnailer_in_files = totem.thumbnailer.in
-thumbnailer_DATA = $(thumbnailer_in_files:.thumbnailer.in=.thumbnailer)
-
-totem.thumbnailer: $(thumbnailer_in_files) mime-type-list.txt thumbnailer.sh
- $(AM_V_GEN)sed -e "s|\@BINDIR\@|$(bindir)|" $< > $@ &&\
- $(SHELL) $(srcdir)/thumbnailer.sh $(srcdir)/mime-type-list.txt >> $@
-
-EXTRA_DIST += \
- $(thumbnailer_in_files) \
- thumbnailer.sh
-
-CLEANFILES += \
- $(thumbnailer_DATA)
-
-# Content type handling
-nodist_noinst_HEADERS = totem-mime-types.h nautilus-video-mime-types.h totem-uri-schemes.h totemMimeTypes.js
-totem-mime-types.h: mime-type-include.sh mime-type-list.txt mime-functions.sh
- $(AM_V_GEN) $(srcdir)/mime-type-include.sh $(srcdir)/mime-type-list.txt > $@
-nautilus-video-mime-types.h: mime-type-include.sh mime-type-list.txt mime-functions.sh
- $(AM_V_GEN) $(srcdir)/mime-type-include.sh --nautilus $(srcdir)/mime-type-list.txt > $@
-totemMimeTypes.js: mime-type-imports.sh mime-type-list.txt mime-functions.sh
- $(AM_V_GEN) $(srcdir)/mime-type-imports.sh $(srcdir)/mime-type-list.txt > $@
-totem-uri-schemes.h: mime-type-include.sh mime-type-list.txt mime-functions.sh
- $(AM_V_GEN) $(srcdir)/uri-scheme-include.sh $(srcdir)/uri-schemes-list.txt > $@
-
-EXTRA_DIST += \
- mime-type-imports.sh \
- mime-type-include.sh \
- mime-type-list.txt \
- uri-scheme-include.sh \
- uri-schemes-list.txt \
- mime-functions.sh
-CLEANFILES += \
- totem-mime-types.h \
- totem-uri-schemes.h \
- nautilus-video-mime-types.h \
- totem-uri-schemes.h \
- totemMimeTypes.js
-
-# GSettings schemas, enum files and conversion file
-gsettings_ENUM_NAMESPACE = org.gnome.totem
-gsettings_ENUM_FILES = $(top_srcdir)/src/*.h $(top_srcdir)/src/backend/*.h
-gsettings_SCHEMAS = org.gnome.totem.gschema.xml
-@GSETTINGS_RULES@
-
-convertdir = $(datadir)/GConf/gsettings
-convert_DATA = totem.convert
-EXTRA_DIST += $(convert_DATA)
-
-# pkg-config file for the plugin API
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = totem.pc
-
--include $(top_srcdir)/git.mk
diff --git a/data/appdata/Makefile.am b/data/appdata/Makefile.am
deleted file mode 100644
index 89ade546c..000000000
--- a/data/appdata/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-# AppData
-@APPSTREAM_XML_RULES@
-@INTLTOOL_XML_RULE@
-
-appstream_in_files = org.gnome.Totem.appdata.xml.in
-appstream_XML = $(appstream_in_files:.xml.in=.xml)
-
-EXTRA_DIST = $(appstream_in_files)
-CLEANFILES = $(appstream_XML)
diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am
deleted file mode 100644
index 8a587ff99..000000000
--- a/data/icons/16x16/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/16x16/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/22x22/Makefile.am b/data/icons/22x22/Makefile.am
deleted file mode 100644
index 184a180fd..000000000
--- a/data/icons/22x22/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/22x22/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/24x24/Makefile.am b/data/icons/24x24/Makefile.am
deleted file mode 100644
index c086cdbcb..000000000
--- a/data/icons/24x24/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/24x24/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/256x256/Makefile.am b/data/icons/256x256/Makefile.am
deleted file mode 100644
index d4ffeb77e..000000000
--- a/data/icons/256x256/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/256x256/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/32x32/Makefile.am b/data/icons/32x32/Makefile.am
deleted file mode 100644
index 3318902e0..000000000
--- a/data/icons/32x32/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/32x32/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/48x48/Makefile.am b/data/icons/48x48/Makefile.am
deleted file mode 100644
index 840edf0a1..000000000
--- a/data/icons/48x48/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/48x48/apps
-icon_DATA = org.gnome.Totem.png
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
deleted file mode 100644
index 73652bf83..000000000
--- a/data/icons/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-SUBDIRS = 16x16 22x22 24x24 32x32 48x48 256x256 symbolic
-
-EXTRA_DIST = totem.svg
-
--include $(top_srcdir)/git.mk
diff --git a/data/icons/symbolic/Makefile.am b/data/icons/symbolic/Makefile.am
deleted file mode 100644
index 4ccbf1a7c..000000000
--- a/data/icons/symbolic/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-icondir = $(datadir)/icons/hicolor/symbolic/apps
-icon_DATA = org.gnome.Totem-symbolic.svg
-
-EXTRA_DIST = $(icon_DATA)
-
--include $(top_srcdir)/git.mk
diff --git a/docs/Makefile.am b/docs/Makefile.am
deleted file mode 100644
index 034926c59..000000000
--- a/docs/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-SUBDIRS = reference
-
--include $(top_srcdir)/git.mk
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
deleted file mode 100644
index 25ad41393..000000000
--- a/docs/reference/Makefile.am
+++ /dev/null
@@ -1,156 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-# We require automake 1.6 at least.
-AUTOMAKE_OPTIONS = 1.6
-
-# This is a blank Makefile.am for using gtk-doc.
-# Copy this to your project's API docs directory and modify the variables to
-# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
-# of using the various options.
-
-# The name of the module, e.g. 'glib'.
-DOC_MODULE=totem
-
-# The top-level SGML file. You can change this if you want to.
-DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.xml
-
-# The directory containing the source code. Relative to $(srcdir).
-# gtk-doc will search all .c & .h files beneath here for inline comments
-# documenting the functions and macros.
-# e.g. DOC_SOURCE_DIR=../../../gtk
-DOC_SOURCE_DIR="$(abs_top_srcdir)/src"
-
-# Extra options to pass to gtkdoc-scangobj. Not normally needed.
-SCANGOBJ_OPTIONS=
-
-# Extra options to supply to gtkdoc-scan.
-# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
-SCAN_OPTIONS=
-
-# Extra options to supply to gtkdoc-mkdb.
-# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
-MKDB_OPTIONS=--sgml-mode --output-format=xml --name-space=totem
-
-# Extra options to supply to gtkdoc-mktmpl
-# e.g. MKTMPL_OPTIONS=--only-section-tmpl
-MKTMPL_OPTIONS=
-
-# Extra options to supply to gtkdoc-fixref. Not normally needed.
-# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
-FIXXREF_OPTIONS=
-
-MKHTML_OPTIONS=--path="$(abs_builddir)"
-
-# Used for dependencies. The docs will be rebuilt if any of these change.
-# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
-# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
-HFILE_GLOB=$(top_srcdir)/src/*.h
-CFILE_GLOB=$(top_srcdir)/src/*.c
-
-# Header files to ignore when scanning.
-# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
-IGNORE_HFILES = \
- totem-private.h \
- gnome-screenshot-widget.h \
- gsd-media-keys-window.h \
- totem-profile.h \
- totem-sample-vala-plugin.h \
- totem-chapters-utils.h \
- totem-cmml-parser.h \
- totem-edit-chapter.h \
- bacon-video-widget-common.h \
- bacon-video-widget-gst-missing-plugins.h \
- bacon-resize.h \
- totem-playlist.h \
- totem-fullscreen.h \
- totem-module.h \
- totem-time-label.h \
- totem-plugin-manager.h \
- totem-properties-view.h \
- totem-open-location.h \
- totem-statusbar.h \
- totem-session.h \
- totem-resources.h \
- totem-plugins-engine.h \
- totem-options.h \
- totem-preferences.h \
- totem-dvb-setup.h \
- gstscreenshot.h \
- totem-uri.h \
- totem-python-plugin.h \
- totem-subtitle-encoding.h \
- totem-menu.h \
- video-utils.h \
- debug.h \
- totem-dnd-menu.h \
- totem-aspect-frame.h \
- totem-gst-helpers.h \
- bacon-video-widget-properties.h \
- totem-gallery.h \
- totem-gallery-progress.h \
- totem-screenshot.h \
- totem-screenshot-plugin.h \
- totem-skipto.h \
- totem-skipto-plugin.h \
- totem-time-entry.h \
- totem-tracker-widget.h \
- gsd-media-keys-window.h \
- totem-search-entry.h \
- gd-tagged-entry.h \
- gd-fullscreen-filter.h \
- screenshot-filename-builder.h \
- clock.h \
- bacon-video-spinner-actor.h \
- bacon-video-controls-actor.h \
- totem-time-label.h \
- totem-selection-toolbar.h \
- totem-main-toolbar.h \
- totem-grilo.h \
- icon-helpers.h \
- bacon-time-label.h \
- totem-gst-pixbuf-helpers.h \
- totem-time-helpers.h \
- $(NULL)
-
-# Images to copy into HTML directory.
-# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
-HTML_IMAGES=
-
-# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
-# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
-content_files = version.xml totem-plugins.xml
-
-# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
-# These files must be listed here *and* in content_files
-# e.g. expand_content_files=running.sgml
-expand_content_files=
-
-# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
-# Only needed if you are using gtkdoc-scangobj to dynamically query widget
-# signals and properties.
-# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
-# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-GTKDOC_CFLAGS = \
- -I$(top_srcdir)/ \
- -I$(top_srcdir)/src \
- -I$(top_srcdir)/src/backend \
- -I$(top_srcdir)/src/plugins \
- $(PLAYER_CFLAGS)
-GTKDOC_LIBS = \
- $(top_builddir)/src/libtotem.la \
- $(top_builddir)/subprojects/libgd/libgd.la \
- $(PLAYER_LIBS)
-
-# This includes the standard gtk-doc make rules, copied by gtkdocize.
-include $(top_srcdir)/gtk-doc.make
-
-# Other files to distribute
-# e.g. EXTRA_DIST += version.xml.in
-EXTRA_DIST += version.xml.in
-
-if ENABLE_GTK_DOC
-TESTS_ENVIRONMENT = cd $(builddir) &&
-TESTS = $(GTKDOC_CHECK)
-endif
-
--include $(top_srcdir)/git.mk
diff --git a/git.mk b/git.mk
deleted file mode 100644
index 8a5887c8f..000000000
--- a/git.mk
+++ /dev/null
@@ -1,316 +0,0 @@
-# git.mk
-#
-# Copyright 2009, Red Hat, Inc.
-# Copyright 2010,2011,2012,2013 Behdad Esfahbod
-# Written by Behdad Esfahbod
-#
-# Copying and distribution of this file, with or without modification,
-# is permitted in any medium without royalty provided the copyright
-# notice and this notice are preserved.
-#
-# The latest version of this file can be downloaded from:
-# https://raw.github.com/behdad/git.mk/master/git.mk
-# Bugs, etc, should be reported upstream at:
-# https://github.com/behdad/git.mk
-#
-# To use in your project, import this file in your git repo's toplevel,
-# then do "make -f git.mk". This modifies all Makefile.am files in
-# your project to -include git.mk. Remember to add that line to new
-# Makefile.am files you create in your project, or just rerun the
-# "make -f git.mk".
-#
-# This enables automatic .gitignore generation. If you need to ignore
-# more files, add them to the GITIGNOREFILES variable in your Makefile.am.
-# But think twice before doing that. If a file has to be in .gitignore,
-# chances are very high that it's a generated file and should be in one
-# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
-#
-# The only case that you need to manually add a file to GITIGNOREFILES is
-# when remove files in one of mostlyclean-local, clean-local, distclean-local,
-# or maintainer-clean-local make targets.
-#
-# Note that for files like editor backup, etc, there are better places to
-# ignore them. See "man gitignore".
-#
-# If "make maintainer-clean" removes the files but they are not recognized
-# by this script (that is, if "git status" shows untracked files still), send
-# me the output of "git status" as well as your Makefile.am and Makefile for
-# the directories involved and I'll diagnose.
-#
-# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
-# Makefile.am.sample in the git.mk git repo.
-#
-# Don't EXTRA_DIST this file. It is supposed to only live in git clones,
-# not tarballs. It serves no useful purpose in tarballs and clutters the
-# build dir.
-#
-# This file knows how to handle autoconf, automake, libtool, gtk-doc,
-# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu, appstream.
-#
-# This makefile provides the following targets:
-#
-# - all: "make all" will build all gitignore files.
-# - gitignore: makes all gitignore files in the current dir and subdirs.
-# - .gitignore: make gitignore file for the current dir.
-# - gitignore-recurse: makes all gitignore files in the subdirs.
-#
-# KNOWN ISSUES:
-#
-# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
-# submodule doesn't find us. If you have configure.{in,ac} files in
-# subdirs, add a proxy git.mk file in those dirs that simply does:
-# "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
-# And add those files to git. See vte/gnome-pty-helper/git.mk for
-# example.
-#
-
-
-
-###############################################################################
-# Variables user modules may want to add to toplevel MAINTAINERCLEANFILES:
-###############################################################################
-
-#
-# Most autotools-using modules should be fine including this variable in their
-# toplevel MAINTAINERCLEANFILES:
-GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL = \
- $(srcdir)/aclocal.m4 \
- $(srcdir)/autoscan.log \
- $(srcdir)/configure.scan \
- `AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \
- test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \
- for x in \
- ar-lib \
- compile \
- config.guess \
- config.sub \
- depcomp \
- install-sh \
- ltmain.sh \
- missing \
- mkinstalldirs \
- test-driver \
- ; do echo "$$AUX_DIR/$$x"; done` \
- `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \
- head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done`
-#
-# All modules should also be fine including the following variable, which
-# removes automake-generated Makefile.in files:
-GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \
- `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \
- while read f; do \
- case $$f in Makefile|*/Makefile) \
- test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \
- done`
-#
-# Modules that use libtool and use AC_CONFIG_MACRO_DIR() may also include this,
-# though it's harmless to include regardless.
-GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \
- `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \
- if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \
- for x in \
- libtool.m4 \
- ltoptions.m4 \
- ltsugar.m4 \
- ltversion.m4 \
- lt~obsolete.m4 \
- ; do echo "$$MACRO_DIR/$$x"; done; \
- fi`
-
-
-
-###############################################################################
-# Default rule is to install ourselves in all Makefile.am files:
-###############################################################################
-
-git-all: git-mk-install
-
-git-mk-install:
- @echo "Installing git makefile"
- @any_failed=; \
- find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
- if grep 'include .*/git.mk' $$x >/dev/null; then \
- echo "$$x already includes git.mk"; \
- else \
- failed=; \
- echo "Updating $$x"; \
- { cat $$x; \
- echo ''; \
- echo '-include $$(top_srcdir)/git.mk'; \
- } > $$x.tmp || failed=1; \
- if test x$$failed = x; then \
- mv $$x.tmp $$x || failed=1; \
- fi; \
- if test x$$failed = x; then : else \
- echo "Failed updating $$x"; >&2 \
- any_failed=1; \
- fi; \
- fi; done; test -z "$$any_failed"
-
-.PHONY: git-all git-mk-install
-
-
-
-###############################################################################
-# Actual .gitignore generation:
-###############################################################################
-
-$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
- @echo "git.mk: Generating $@"
- @{ \
- if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
- for x in \
- $(DOC_MODULE)-decl-list.txt \
- $(DOC_MODULE)-decl.txt \
- tmpl/$(DOC_MODULE)-unused.sgml \
- "tmpl/*.bak" \
- xml html \
- ; do echo "/$$x"; done; \
- FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \
- case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \
- fi; \
- if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
- for lc in $(DOC_LINGUAS); do \
- for x in \
- $(if $(DOC_MODULE),$(DOC_MODULE).xml) \
- $(DOC_PAGES) \
- $(DOC_INCLUDES) \
- ; do echo "/$$lc/$$x"; done; \
- done; \
- for x in \
- $(_DOC_OMF_ALL) \
- $(_DOC_DSK_ALL) \
- $(_DOC_HTML_ALL) \
- $(_DOC_MOFILES) \
- $(DOC_H_FILE) \
- "*/.xml2po.mo" \
- "*/*.omf.out" \
- ; do echo /$$x; done; \
- fi; \
- if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
- for lc in $(HELP_LINGUAS); do \
- for x in \
- $(HELP_FILES) \
- "$$lc.stamp" \
- "$$lc.mo" \
- ; do echo "/$$lc/$$x"; done; \
- done; \
- fi; \
- if test "x$(gsettings_SCHEMAS)" = x; then :; else \
- for x in \
- $(gsettings_SCHEMAS:.xml=.valid) \
- $(gsettings__enum_file) \
- ; do echo "/$$x"; done; \
- fi; \
- if test "x$(appstream_XML)" = x; then :; else \
- for x in \
- $(appstream_XML:.xml=.valid) \
- ; do echo "/$$x"; done; \
- fi; \
- if test -f $(srcdir)/po/Makefile.in.in; then \
- for x in \
- po/Makefile.in.in \
- po/Makefile.in.in~ \
- po/Makefile.in \
- po/Makefile \
- po/Makevars.template \
- po/POTFILES \
- po/Rules-quot \
- po/stamp-it \
- po/.intltool-merge-cache \
- "po/*.gmo" \
- "po/*.header" \
- "po/*.mo" \
- "po/*.sed" \
- "po/*.sin" \
- po/$(GETTEXT_PACKAGE).pot \
- intltool-extract.in \
- intltool-merge.in \
- intltool-update.in \
- ; do echo "/$$x"; done; \
- fi; \
- if test -f $(srcdir)/configure; then \
- for x in \
- autom4te.cache \
- configure \
- config.h \
- stamp-h1 \
- libtool \
- config.lt \
- ; do echo "/$$x"; done; \
- fi; \
- if test "x$(DEJATOOL)" = x; then :; else \
- for x in \
- $(DEJATOOL) \
- ; do echo "/$$x.sum"; echo "/$$x.log"; done; \
- echo /site.exp; \
- fi; \
- if test "x$(am__dirstamp)" = x; then :; else \
- echo "$(am__dirstamp)"; \
- fi; \
- if test "x$(LTCOMPILE)" = x -a "x$(GTKDOC_RUN)" = x; then :; else \
- for x in \
- "*.lo" \
- ".libs" "_libs" \
- ; do echo "$$x"; done; \
- fi; \
- for x in \
- .gitignore \
- $(GITIGNOREFILES) \
- $(CLEANFILES) \
- $(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
- $(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
- $(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
- so_locations \
- $(MOSTLYCLEANFILES) \
- $(TEST_LOGS) \
- $(TEST_LOGS:.log=.trs) \
- $(TEST_SUITE_LOG) \
- "*.$(OBJEXT)" \
- $(DISTCLEANFILES) \
- $(am__CONFIG_DISTCLEAN_FILES) \
- $(CONFIG_CLEAN_FILES) \
- TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
- "*.tab.c" \
- $(MAINTAINERCLEANFILES) \
- $(BUILT_SOURCES) \
- $(DEPDIR) \
- $(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \
- $(filter %_vala.stamp,$(DIST_COMMON)) \
- $(filter %.vapi,$(DIST_COMMON)) \
- $(filter %$(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))),$(DIST_COMMON)) \
- Makefile \
- Makefile.in \
- "*.orig" \
- "*.rej" \
- "*.bak" \
- "*~" \
- ".*.sw[nop]" \
- ".dirstamp" \
- ; do echo "/$$x"; done; \
- } | \
- sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
- sed 's@/[.]/@/@g' | \
- LC_ALL=C sort | uniq > $@.tmp && \
- mv $@.tmp $@;
-
-all: $(srcdir)/.gitignore gitignore-recurse-maybe
-gitignore: $(srcdir)/.gitignore gitignore-recurse
-
-gitignore-recurse-maybe:
- @for subdir in $(DIST_SUBDIRS); do \
- case " $(SUBDIRS) " in \
- *" $$subdir "*) :;; \
- *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
- esac; \
- done
-gitignore-recurse:
- @for subdir in $(DIST_SUBDIRS); do \
- test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \
- done
-
-maintainer-clean: gitignore-clean
-gitignore-clean:
- -rm -f $(srcdir)/.gitignore
-
-.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
diff --git a/help/Makefile.am b/help/Makefile.am
deleted file mode 100644
index 08f1bde98..000000000
--- a/help/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-@YELP_HELP_RULES@
-
-HELP_ID = totem
-
-HELP_FILES = \
- index.docbook \
- legal.xml
-
-HELP_MEDIA = \
- figures/totem_show_playlist_button.png \
- figures/totem_next_button.png \
- figures/totem_start_window.png \
- figures/totem_pause_button.png \
- figures/totem_volume_maximum_button.png \
- figures/totem_play_button.png \
- figures/totem_volume_mute_button.png \
- figures/totem_previous_button.png
-
-HELP_LINGUAS = bg ca cs da de el en_GB es eu fi fr gl id it ja oc pa pl pt_BR ro ru sl sv te uk zh_CN zh_HK zh_TW
-
--include $(top_srcdir)/git.mk
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 45d0ba9a6..000000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,256 +0,0 @@
-SUBDIRS = gst backend properties . plugins
-
-bin_PROGRAMS = totem totem-video-thumbnailer
-lib_LTLIBRARIES = libtotem.la
-noinst_LTLIBRARIES = libtotem_player.la
-noinst_PROGRAMS = test-icons
-
-AM_CPPFLAGS = \
- -D_REENTRANT \
- -DDBUS_API_SUBJECT_TO_CHANGE \
- -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
- -DDATADIR=\""$(datadir)"\" \
- -DLIBEXECDIR=\""$(libexecdir)"\" \
- -DTOTEM_PLUGIN_DIR=\""$(libdir)/totem/plugins"\"\
- -DBINDIR=\""$(bindir)"\" \
- -DGTKBUILDERDIR=\"""\" \
- $(DISABLE_DEPRECATED) \
- -I$(top_srcdir)/ \
- -I$(top_srcdir)/src/backend \
- -I$(top_builddir)/src/backend \
- -I$(srcdir)/plugins
-
-AM_CFLAGS = $(WARN_CFLAGS)
-
-# Header files installed for use by plugins (and consequently introspected using gobject-introspection; see the bottom of the Makefile)
-INST_H_FILES = \
- totem.h \
- totem-interface.h \
- plugins/totem-plugin.h \
- plugins/totem-dirs.h
-
-headerdir = $(includedir)/totem/$(TOTEM_API_VERSION)
-header_DATA = $(INST_H_FILES)
-
-# Totem UI ltlibrary (used by browser plugins)
-libtotem_player_la_SOURCES = \
- $(INST_H_FILES) \
- totem-interface.c \
- totem-time-label.c \
- totem-time-label.h
-
-libtotem_player_la_CPPFLAGS = \
- -DG_LOG_DOMAIN=\""Totem"\" \
- $(AM_CPPFLAGS)
-
-libtotem_player_la_LIBADD = \
- $(PLAYER_LIBS) \
- gst/libtotemtimehelpers.la
-
-libtotem_player_la_CFLAGS = \
- $(LIBPLAYER_CFLAGS) \
- -I$(srcdir)/gst/ \
- $(AM_CFLAGS)
-
-# Totem main library (used for main player; separate to allow gtk-doc to be used)
-BUILT_SOURCES = griloresources.h griloresources.c
-EXTRA_DIST = grilo.gresource.xml totemmaintoolbar.ui totemselectiontoolbar.ui grilo.ui totem-grilo.conf
-
-griloresources.h: grilo.gresource.xml
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $(srcdir)/grilo.gresource.xml \
- --target=$@ --sourcedir=$(srcdir) --c-name _totem --generate-header
-griloresources.c: $(EXTRA_DIST) griloresources.h
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $(srcdir)/grilo.gresource.xml \
- --target=$@ --sourcedir=$(srcdir) --c-name _totem --generate-source
-
-libtotem_la_SOURCES = \
- $(TOTEM_MARSHAL_FILES) \
- $(INST_H_FILES) \
- totem-object.c \
- totem-private.h \
- totem-preferences.c \
- totem-preferences.h \
- totem-options.c \
- totem-options.h \
- totem-playlist.c \
- totem-playlist.h \
- totem-session.c \
- totem-session.h \
- totem-open-location.c \
- totem-open-location.h \
- totem-menu.c \
- totem-menu.h \
- totem-uri.c \
- totem-uri.h \
- totem-subtitle-encoding.c \
- totem-subtitle-encoding.h \
- totem-profile.h \
- plugins/totem-plugins-engine.c \
- plugins/totem-plugins-engine.h \
- plugins/totem-dirs.c \
- totem-grilo.c \
- totem-grilo.h \
- totem-search-entry.c \
- totem-search-entry.h \
- totem-main-toolbar.h \
- totem-main-toolbar.c \
- totem-selection-toolbar.h \
- totem-selection-toolbar.c \
- icon-helpers.c \
- icon-helpers.h \
- griloresources.h \
- griloresources.c
-
-libtotem_la_CPPFLAGS = \
- -I$(top_builddir)/data \
- -DG_LOG_DOMAIN=\""Totem"\" \
- $(AM_CPPFLAGS)
-
-libtotem_la_CFLAGS = \
- $(PLAYER_CFLAGS) \
- $(AM_CFLAGS) \
- -I$(srcdir)/gst/ \
- -I$(top_srcdir)/subprojects/libgd/
-
-libtotem_la_LDFLAGS = \
- -export-dynamic \
- -no-undefined \
- $(AM_LDFLAGS)
-
-libtotem_la_LIBADD = \
- libtotem_player.la \
- backend/libbaconvideowidget.la \
- $(top_builddir)/subprojects/libgd/libgd.la \
- $(PLAYER_LIBS)
-
-# Totem
-totem_SOURCES = totem.c
-
-totem_CPPFLAGS = \
- -DG_LOG_DOMAIN=\""Totem"\" \
- $(AM_CPPFLAGS)
-
-totem_CFLAGS = \
- $(PLAYER_CFLAGS) \
- -I$(srcdir)/gst/ \
- $(AM_CFLAGS)
-
-totem_LDADD = \
- libtotem.la \
- $(PLAYER_LIBS)
-
-# Totem video thumbnailer
-totem_video_thumbnailer_SOURCES = \
- totem-video-thumbnailer.c \
- totem-resources.c \
- totem-resources.h
-
-totem_video_thumbnailer_CPPFLAGS = \
- -DG_LOG_DOMAIN=\""TotemVideoThumbnailer"\" \
- $(AM_CPPFLAGS)
-
-totem_video_thumbnailer_CFLAGS = \
- $(THUMBNAILER_CFLAGS) \
- $(AM_CFLAGS)
-
-totem_video_thumbnailer_LDADD = \
- $(THUMBNAILER_LIBS) \
- gst/libtotemgstpixbufhelpers.la \
- gst/libtotemgsthelpers.la \
- gst/libtotemtimehelpers.la \
- -lm
-
-# Nautilus Property Page
-if HAVE_NAUTILUS
-nautilusdir = $(NAUTILUSDIR)
-nautilus_LTLIBRARIES = libtotem-properties-page.la
-
-libtotem_properties_page_la_SOURCES = \
- totem-properties-main.c \
- totem-properties-view.c \
- totem-properties-view.h
-
-libtotem_properties_page_la_CPPFLAGS = \
- -I$(top_srcdir)/src/properties \
- -I$(top_builddir)/data \
- -DG_LOG_DOMAIN=\""TotemPropertiesPage"\"\
- $(AM_CPPFLAGS)
-
-libtotem_properties_page_la_CFLAGS = \
- $(NAUTILUS_CFLAGS) \
- $(AM_CFLAGS)
-
-libtotem_properties_page_la_LDFLAGS = \
- -export_dynamic -avoid-version -module -no-undefined \
- $(AM_LDFLAGS)
-
-libtotem_properties_page_la_LIBADD = \
- properties/libbaconvideowidgetproperties.la \
- $(NAUTILUS_LIBS)
-
-noinst_PROGRAMS = test-properties-page
-
-test_properties_page_SOURCES = \
- totem-properties-main.c \
- totem-properties-view.c \
- totem-properties-view.h \
- test-properties-page.c
-
-test_properties_page_CPPFLAGS = \
- -I$(top_builddir)/data \
- -I$(top_srcdir)/src/properties \
- $(AM_CPPFLAGS)
-
-test_properties_page_CFLAGS = \
- $(NAUTILUS_CFLAGS) \
- $(AM_CFLAGS)
-
-test_properties_page_LDADD = \
- backend/libbaconvideowidget.la \
- properties/libbaconvideowidgetproperties.la \
- libtotem_player.la \
- $(NAUTILUS_LIBS)
-endif # HAVE_NAUTILUS
-
-# Introspection
--include $(INTROSPECTION_MAKEFILE)
-
-INTROSPECTION_GIRS =
-INTROSPECTION_SCANNER_ARGS = --add-include-path=$(srcdir) --warn-all
-INTROSPECTION_COMPILER_ARGS = --includedir=$(srcdir)
-
-if HAVE_INTROSPECTION
-
-introspection_sources = $(INST_H_FILES) $(filter %.c,$(libtotem_player_la_SOURCES) $(libtotem_la_SOURCES))
-
-# NOTE: This should change with $(TOTEM_API_VERSION)
-Totem-1.0.gir: libtotem.la
-Totem_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0 Gio-2.0 Gtk-3.0 TotemPlParser-1.0
-Totem_1_0_gir_SCANNERFLAGS = --c-include=totem.h --pkg-export=totem
-Totem_1_0_gir_CFLAGS = \
- $(PLAYER_CFLAGS) \
- $(libtotem_la_CPPFLAGS)
-Totem_1_0_gir_LIBS = libtotem.la $(top_builddir)/subprojects/libgd/libgd.la
-Totem_1_0_gir_FILES = $(introspection_sources)
-Totem_1_0_gir_EXPORT_PACKAGES = totem
-INTROSPECTION_GIRS += Totem-1.0.gir
-
-girdir = $(datadir)/gir-1.0
-gir_DATA = $(INTROSPECTION_GIRS)
-
-typelibdir = $(libdir)/girepository-1.0
-typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
-
-CLEANFILES = $(gir_DATA) $(typelib_DATA)
-
-endif
-
-test_icons_SOURCES = \
- test-icons.c \
- icon-helpers.c icon-helpers.h
-test_icons_CFLAGS = \
- $(PLAYER_CFLAGS) \
- $(AM_CFLAGS)
-test_icons_LDADD = $(PLAYER_LIBS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/backend/Makefile.am b/src/backend/Makefile.am
deleted file mode 100644
index 75dab1f46..000000000
--- a/src/backend/Makefile.am
+++ /dev/null
@@ -1,86 +0,0 @@
-noinst_PROGRAMS = bvw-test
-
-noinst_LTLIBRARIES = libbaconvideowidget.la
-
-bvw_test_SOURCES = bvw-test.c
-
-bvw_test_CPPFLAGS = \
- -DDATADIR=\"$(pkgdatadir)\" \
- -DLOGO_PATH=DATADIR\"\"G_DIR_SEPARATOR_S\"totem\"G_DIR_SEPARATOR_S\"totem_logo.png\" \
- -DG_LOG_DOMAIN="\"bvw-test\"" \
- $(DISABLE_DEPRECATED) \
- $(AM_CPPFLAGS)
-
-bvw_test_CFLAGS = \
- $(BACKEND_CFLAGS) \
- $(AM_CFLAGS) \
- $(WARN_FLAGS)
-
-bvw_test_LDADD = \
- libbaconvideowidget.la \
- $(BACKEND_LIBS) \
- $(top_builddir)/src/gst/libtotemtimehelpers.la
-
-# Enums
-BVW_ENUM_FILES = bacon-video-widget-enums.c bacon-video-widget-enums.h
-
-bacon-video-widget-enums.h: bacon-video-widget.h Makefile
- $(AM_V_GEN)($(GLIB_MKENUMS) \
- --fhead "#ifndef BVW_ENUMS_H\n#define BVW_ENUMS_H\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
- --fprod "/* enumerations from \"@filename@\" */\n" \
- --vhead "GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define BVW_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \
- --ftail "G_END_DECLS\n\n#endif /* !BVW_ENUMS_H */" $(srcdir)/bacon-video-widget.h > $@)
-
-bacon-video-widget-enums.c: bacon-video-widget.h Makefile bacon-video-widget-enums.h
- $(AM_V_GEN)($(GLIB_MKENUMS) \
- --fhead "#include \"bacon-video-widget.h\"\n#include \"bacon-video-widget-enums.h\"" \
- --fprod "\n/* enumerations from \"@filename@\" */" \
- --vhead "GType\n@enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G@Type@Value values[] = {" \
- --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
- --vtail " { 0, NULL, NULL }\n };\n etype = g_@type@_register_static (\"@EnumName@\", values);\n }\n return etype;\n}\n" \
- $(srcdir)/bacon-video-widget.h > $@)
-
-libbaconvideowidget_la_SOURCES = \
- $(BVW_MARSHAL_FILES) \
- $(BVW_ENUM_FILES) \
- bacon-video-widget.h \
- bacon-video-widget.c \
- bacon-video-widget-gst-missing-plugins.c \
- bacon-video-widget-gst-missing-plugins.h \
- totem-aspect-frame.h \
- totem-aspect-frame.c \
- bacon-video-controls-actor.c \
- bacon-video-controls-actor.h \
- bacon-video-spinner-actor.h \
- bacon-video-spinner-actor.c \
- clock.c clock.h \
- bacon-time-label.c \
- bacon-time-label.h
-
-libbaconvideowidget_la_CPPFLAGS = \
- -D_REENTRANT \
- -DDATADIR=\"$(pkgdatadir)\" \
- -I$(top_srcdir)/src/gst/ \
- -I$(top_builddir)/src/backend \
- $(DISABLE_DEPRECATED) \
- $(AM_CPPFLAGS)
-
-libbaconvideowidget_la_CFLAGS = \
- $(BACKEND_CFLAGS) \
- $(AM_CFLAGS) \
- $(WARN_CFLAGS)
-
-libbaconvideowidget_la_LIBADD = \
- $(top_builddir)/src/gst/libtotemgsthelpers.la \
- $(top_builddir)/src/gst/libtotemgstpixbufhelpers.la \
- $(BACKEND_LIBS) \
- -lm
-
-libbaconvideowidget_la_LDFLAGS= \
- -no-undefined
-
-CLEANFILES = \
- $(BVW_MARSHAL_FILES) \
- $(BVW_ENUM_FILES)
-
--include $(top_srcdir)/git.mk
diff --git a/src/gst/Makefile.am b/src/gst/Makefile.am
deleted file mode 100644
index 76998ccc9..000000000
--- a/src/gst/Makefile.am
+++ /dev/null
@@ -1,70 +0,0 @@
-noinst_LTLIBRARIES = \
- libtotemgsthelpers.la \
- libtotemgstpixbufhelpers.la \
- libtotemtimehelpers.la
-
-libtotemgsthelpers_la_SOURCES = \
- totem-gst-helpers.c \
- totem-gst-helpers.h
-
-libtotemgsthelpers_la_CPPFLAGS = \
- -D_REENTRANT \
- $(DISABLE_DEPRECATED) \
- $(AM_CPPFLAGS)
-
-libtotemgsthelpers_la_CFLAGS = \
- $(HELPER_CFLAGS) \
- $(AM_CFLAGS)
-
-libtotemgsthelpers_la_LIBADD = $(HELPER_LIBS)
-libtotemgsthelpers_la_LDFLAGS= -no-undefined
-
-libtotemgstpixbufhelpers_la_SOURCES = \
- totem-gst-pixbuf-helpers.c \
- totem-gst-pixbuf-helpers.h
-
-libtotemgstpixbufhelpers_la_CPPFLAGS = \
- -D_REENTRANT \
- $(DISABLE_DEPRECATED) \
- $(AM_CPPFLAGS)
-
-libtotemgstpixbufhelpers_la_CFLAGS = \
- $(PIXBUF_HELPER_CFLAGS) \
- $(AM_CFLAGS)
-
-libtotemgstpixbufhelpers_la_LIBADD = $(PIXBUF_HELPER_LIBS)
-libtotemgstpixbufhelpers_la_LDFLAGS= -no-undefined
-
-libtotemtimehelpers_la_SOURCES = \
- totem-time-helpers.c \
- totem-time-helpers.h
-
-libtotemtimehelpers_la_CPPFLAGS = \
- -D_REENTRANT \
- $(DISABLE_DEPRECATED) \
- $(AM_CPPFLAGS)
-
-libtotemtimehelpers_la_CFLAGS = \
- $(TIME_HELPER_CFLAGS) \
- $(AM_CFLAGS)
-
-libtotemtimehelpers_la_LIBADD = $(TIME_HELPER_LIBS)
-libtotemtimehelpers_la_LDFLAGS= -no-undefined
-
-include $(top_srcdir)/Makefile.decl
-
-pwd=`pwd`
-AM_CPPFLAGS = \
- -I$(top_srcdir)/plparse \
- -DTEST_SRCDIR=\""$(srcdir)/"\"
-
-noinst_PROGRAMS = $(TEST_PROGS)
-
-TEST_PROGS += test-time
-test_time_SOURCES = test-time.c
-test_time_CFLAGS = $(HELPER_CFLAGS) $(AM_CFLAGS)
-test_time_LDADD = libtotemtimehelpers.la $(HELPER_LIBS)
-
-EXTRA_DIST = totem-time-helpers.h
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
deleted file mode 100644
index 7dae02724..000000000
--- a/src/plugins/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-SUBDIRS = $(PLUGINS)
-DIST_SUBDIRS = $(ALL_PLUGINS)
-
-EXTRA_DIST = Makefile.plugins
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/apple-trailers/Makefile.am b/src/plugins/apple-trailers/Makefile.am
deleted file mode 100644
index f602750c4..000000000
--- a/src/plugins/apple-trailers/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/apple-trailers
-plugin_LTLIBRARIES = libapple-trailers.la
-
-plugin_in_files = apple-trailers.plugin.in
-
-libapple_trailers_la_SOURCES = totem-apple-trailers.c
-libapple_trailers_la_LDFLAGS = $(plugin_ldflags)
-libapple_trailers_la_LIBADD = $(plugin_libadd)
-libapple_trailers_la_CFLAGS = $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/autoload-subtitles/Makefile.am b/src/plugins/autoload-subtitles/Makefile.am
deleted file mode 100644
index d7bc8f4ae..000000000
--- a/src/plugins/autoload-subtitles/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/autoload-subtitles
-plugin_LTLIBRARIES = libautoload-subtitles.la
-
-plugin_in_files = autoload-subtitles.plugin.in
-
-libautoload_subtitles_la_SOURCES = totem-autoload-subtitles.c
-libautoload_subtitles_la_LDFLAGS = $(plugin_ldflags)
-libautoload_subtitles_la_LIBADD = $(plugin_libadd)
-libautoload_subtitles_la_CFLAGS = $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/brasero-disc-recorder/Makefile.am b/src/plugins/brasero-disc-recorder/Makefile.am
deleted file mode 100644
index 3eee8f6a5..000000000
--- a/src/plugins/brasero-disc-recorder/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/brasero-disc-recorder
-plugin_LTLIBRARIES = libbrasero-disc-recorder.la
-
-plugin_in_files = brasero-disc-recorder.plugin.in
-
-libbrasero_disc_recorder_la_SOURCES = totem-disc-recorder.c
-libbrasero_disc_recorder_la_LDFLAGS = $(plugin_ldflags)
-libbrasero_disc_recorder_la_LIBADD = \
- $(plugin_libadd) \
- $(DISC_RECORDER_LIBS)
-libbrasero_disc_recorder_la_CFLAGS = \
- $(plugin_cflags) \
- $(DISC_RECORDER_CFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/dbusservice/Makefile.am b/src/plugins/dbusservice/Makefile.am
deleted file mode 100644
index ede3339b5..000000000
--- a/src/plugins/dbusservice/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/dbus
-plugin_PYTHON = dbusservice.py
-
-plugin_in_files = dbusservice.plugin.in
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/gromit/Makefile.am b/src/plugins/gromit/Makefile.am
deleted file mode 100644
index 8049f9752..000000000
--- a/src/plugins/gromit/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/gromit
-plugin_LTLIBRARIES = libgromit.la
-
-plugin_in_files = gromit.plugin.in
-
-libgromit_la_SOURCES = totem-gromit.c
-libgromit_la_LDFLAGS = $(plugin_ldflags)
-libgromit_la_CFLAGS = $(plugin_cflags)
-libgromit_la_LIBADD = $(plugin_libadd)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/im-status/Makefile.am b/src/plugins/im-status/Makefile.am
deleted file mode 100644
index fe28da592..000000000
--- a/src/plugins/im-status/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/im-status
-plugin_LTLIBRARIES = libtotem-im-status.la
-
-plugin_in_files = totem-im-status.plugin.in
-
-libtotem_im_status_la_SOURCES = totem-im-status.c
-libtotem_im_status_la_LDFLAGS = $(plugin_ldflags)
-libtotem_im_status_la_LIBADD = \
- $(plugin_libadd)
-libtotem_im_status_la_CFLAGS = \
- $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/lirc/Makefile.am b/src/plugins/lirc/Makefile.am
deleted file mode 100644
index 284242fe3..000000000
--- a/src/plugins/lirc/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/lirc
-plugin_LTLIBRARIES = liblirc.la
-
-plugin_in_files = lirc.plugin.in
-
-configdir = $(PLUGINDIR)/lirc
-config_DATA = totem_lirc_default
-EXTRA_DIST += $(config_DATA)
-
-liblirc_la_SOURCES = totem-lirc.c
-liblirc_la_LDFLAGS = $(plugin_ldflags)
-liblirc_la_LIBADD = \
- $(plugin_libadd) \
- $(LIRC_LIBS)
-liblirc_la_CFLAGS = \
- $(plugin_cflags) \
- $(LIRC_CFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/media-player-keys/Makefile.am b/src/plugins/media-player-keys/Makefile.am
deleted file mode 100644
index ba5fa648f..000000000
--- a/src/plugins/media-player-keys/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/media-player-keys
-plugin_LTLIBRARIES = libmedia_player_keys.la
-
-plugin_in_files = media-player-keys.plugin.in
-
-libmedia_player_keys_la_SOURCES = \
- totem-media-player-keys.c
-libmedia_player_keys_la_LDFLAGS = $(plugin_ldflags)
-libmedia_player_keys_la_LIBADD = \
- $(plugin_libadd) \
- $(MEDIA_PLAYER_KEYS_LIBS)
-libmedia_player_keys_la_CFLAGS = \
- $(plugin_cflags) \
- $(MEDIA_PLAYER_KEYS_CFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/ontop/Makefile.am b/src/plugins/ontop/Makefile.am
deleted file mode 100644
index b4b2ffee2..000000000
--- a/src/plugins/ontop/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/ontop
-plugin_LTLIBRARIES = libontop.la
-
-plugin_in_files = ontop.plugin.in
-
-libontop_la_SOURCES = totem-ontop.c
-libontop_la_LDFLAGS = $(plugin_ldflags)
-libontop_la_CFLAGS = $(plugin_cflags)
-libontop_la_LIBADD = $(plugin_libadd)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/opensubtitles/Makefile.am b/src/plugins/opensubtitles/Makefile.am
deleted file mode 100644
index 62f737c01..000000000
--- a/src/plugins/opensubtitles/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/opensubtitles
-plugin_PYTHON = opensubtitles.py hash.py
-
-plugin_in_files = opensubtitles.plugin.in
-
-uidir = $(plugindir)
-ui_DATA = opensubtitles.ui
-EXTRA_DIST += $(ui_DATA)
-
-gsettings_SCHEMAS = org.gnome.totem.plugins.opensubtitles.gschema.xml
-@GSETTINGS_RULES@
-
-convertdir = $(datadir)/GConf/gsettings
-convert_DATA = opensubtitles.convert
-EXTRA_DIST += opensubtitles.convert
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/properties/Makefile.am b/src/plugins/properties/Makefile.am
deleted file mode 100644
index a7e45cabb..000000000
--- a/src/plugins/properties/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/properties
-plugin_LTLIBRARIES = libmovie-properties.la
-
-plugin_in_files = movie-properties.plugin.in
-
-libmovie_properties_la_SOURCES = totem-movie-properties.c
-libmovie_properties_la_LDFLAGS = $(plugin_ldflags)
-libmovie_properties_la_LIBADD = \
- $(plugin_libadd) \
- $(top_builddir)/src/properties/libbaconvideowidgetproperties.la
-libmovie_properties_la_CFLAGS = $(plugin_cflags)
-libmovie_properties_la_CPPFLAGS = \
- -I$(top_srcdir)/src/properties/ \
- -I$(top_srcdir)/src/backend/ \
- $(AM_CPPFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/pythonconsole/Makefile.am b/src/plugins/pythonconsole/Makefile.am
deleted file mode 100644
index be224a6fd..000000000
--- a/src/plugins/pythonconsole/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/pythonconsole
-plugin_PYTHON = pythonconsole.py console.py
-
-plugin_in_files = pythonconsole.plugin.in
-
-gsettings_SCHEMAS = org.gnome.totem.plugins.pythonconsole.gschema.xml
-@GSETTINGS_RULES@
-
-convertdir = $(datadir)/GConf/gsettings
-convert_DATA = pythonconsole.convert
-EXTRA_DIST += pythonconsole.convert
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/recent/Makefile.am b/src/plugins/recent/Makefile.am
deleted file mode 100644
index 2123db8b1..000000000
--- a/src/plugins/recent/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/recent
-plugin_LTLIBRARIES = librecent.la
-
-plugin_in_files = recent.plugin.in
-
-librecent_la_SOURCES = totem-recent.c
-librecent_la_LDFLAGS = $(plugin_ldflags)
-librecent_la_LIBADD = $(plugin_libadd)
-librecent_la_CFLAGS = $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/rotation/Makefile.am b/src/plugins/rotation/Makefile.am
deleted file mode 100644
index b56164a93..000000000
--- a/src/plugins/rotation/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/rotation
-plugin_LTLIBRARIES = librotation.la
-
-plugin_in_files = rotation.plugin.in
-
-# here we are explicitly specifying gtk+-3.0 to use the vapi
-# because vala still cannot parse the gir
-AM_VALAFLAGS = \
- --girdir=$(abs_top_builddir)/src \
- --pkg Totem-1.0 --pkg libpeas-1.0 --pkg cogl-pango-1.0 --pkg gtk+-3.0 bacon-video.vapi
-
-librotation_la_SOURCES = totem-rotation-plugin.vala
-librotation_la_LDFLAGS = $(plugin_ldflags)
-librotation_la_CFLAGS = $(plugin_cflags) $(vala_plugin_cflags) -include $(CONFIG_HEADER) -I $(top_srcdir)/src/backend
-librotation_la_LIBADD = $(plugin_libadd)
-
-GITIGNOREFILES = \
- $(librotation_la_SOURCES:.vala=.c) \
- librotation_la_vala.stamp \
- $(NULL)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/sample-vala/Makefile.am b/src/plugins/sample-vala/Makefile.am
deleted file mode 100644
index f82f2e388..000000000
--- a/src/plugins/sample-vala/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/sample-vala
-plugin_LTLIBRARIES = libsample-vala.la
-
-plugin_in_files = sample-vala.plugin.in
-
-# here we are explicitly specifying gtk+-3.0 to use the vapi because vala still
-# cannot parse the gir
-AM_VALAFLAGS = \
- --girdir=$(abs_top_builddir)/src \
- --pkg Totem-1.0 --pkg libpeas-1.0 --pkg gtk+-3.0
-
-libsample_vala_la_SOURCES = totem-sample-vala-plugin.vala
-libsample_vala_la_LDFLAGS = $(plugin_ldflags)
-libsample_vala_la_CFLAGS = $(plugin_cflags) $(vala_plugin_cflags)
-libsample_vala_la_LIBADD = $(plugin_libadd)
-
-GITIGNOREFILES = \
- $(libsample_vala_la_SOURCES:.vala=.c) \
- libsample_vala_la_vala.stamp \
- $(NULL)
-
-# Override to _not_ install the test plugins
-install-pluginLTLIBRARIES:
-install-pluginDATA:
-uninstall-pluginLTLIBRARIES:
-uninstall-pluginDATA:
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/samplepython/Makefile.am b/src/plugins/samplepython/Makefile.am
deleted file mode 100644
index 9bbcda652..000000000
--- a/src/plugins/samplepython/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/sample-python
-plugin_PYTHON = samplepython.py
-
-plugin_in_files = samplepython.plugin.in
-
-# Override to _not_ install the test plugins
-install-pluginPYTHON:
-install-pluginDATA:
-uninstall-pluginPYTHON:
-uninstall-pluginDATA:
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/save-file/Makefile.am b/src/plugins/save-file/Makefile.am
deleted file mode 100644
index a479f027c..000000000
--- a/src/plugins/save-file/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/save-file
-plugin_LTLIBRARIES = libsave-file.la
-
-plugin_in_files = save-file.plugin.in
-
-libsave_file_la_SOURCES = totem-save-file.c
-libsave_file_la_LDFLAGS = $(plugin_ldflags)
-libsave_file_la_LIBADD = \
- $(plugin_libadd) \
- $(SAVE_FILE_LIBS)
-libsave_file_la_CFLAGS = \
- $(plugin_cflags) \
- $(SAVE_FILE_CFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/screensaver/Makefile.am b/src/plugins/screensaver/Makefile.am
deleted file mode 100644
index 7f85376cf..000000000
--- a/src/plugins/screensaver/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/screensaver
-plugin_LTLIBRARIES = libscreensaver.la
-
-plugin_in_files = screensaver.plugin.in
-
-libscreensaver_la_SOURCES = totem-screensaver.c
-libscreensaver_la_LDFLAGS = $(plugin_ldflags)
-libscreensaver_la_LIBADD = $(plugin_libadd)
-libscreensaver_la_CPPFLAGS = $(AM_CPPFLAGS)
-libscreensaver_la_CFLAGS = $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/screenshot/Makefile.am b/src/plugins/screenshot/Makefile.am
deleted file mode 100644
index ae4dbf296..000000000
--- a/src/plugins/screenshot/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/screenshot
-plugin_LTLIBRARIES = libscreenshot.la
-
-plugin_in_files = screenshot.plugin.in
-
-uidir = $(plugindir)
-ui_DATA = gallery.ui
-EXTRA_DIST += $(ui_DATA)
-
-libscreenshot_la_SOURCES = \
- totem-screenshot-plugin.c \
- totem-screenshot-plugin.h \
- screenshot-filename-builder.c \
- screenshot-filename-builder.h \
- totem-gallery.c \
- totem-gallery.h \
- totem-gallery-progress.c \
- totem-gallery-progress.h
-libscreenshot_la_LDFLAGS = $(plugin_ldflags)
-# format-nonliteral causes failures for the totem_screenshot_plugin_setup_file_chooser() function
-libscreenshot_la_CFLAGS = $(plugin_cflags) -Wno-error=format-nonliteral -Wno-format-nonliteral
-libscreenshot_la_LIBADD = $(plugin_libadd)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/skipto/Makefile.am b/src/plugins/skipto/Makefile.am
deleted file mode 100644
index 309326c18..000000000
--- a/src/plugins/skipto/Makefile.am
+++ /dev/null
@@ -1,22 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/skipto
-plugin_LTLIBRARIES = libskipto.la
-
-plugin_in_files = skipto.plugin.in
-
-uidir = $(plugindir)
-ui_DATA = skipto.ui
-EXTRA_DIST += $(ui_DATA)
-
-libskipto_la_SOURCES = \
- totem-skipto-plugin.c \
- totem-time-entry.c \
- totem-time-entry.h \
- totem-skipto.c \
- totem-skipto.h
-libskipto_la_LDFLAGS = $(plugin_ldflags)
-libskipto_la_CFLAGS = $(plugin_cflags)
-libskipto_la_LIBADD = $(plugin_libadd)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/variable-rate/Makefile.am b/src/plugins/variable-rate/Makefile.am
deleted file mode 100644
index 03d76c8bf..000000000
--- a/src/plugins/variable-rate/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/variable-rate
-plugin_LTLIBRARIES = libvariable-rate.la
-
-plugin_in_files = variable-rate.plugin.in
-
-libvariable_rate_la_SOURCES = \
- totem-variable-rate-plugin.c
-libvariable_rate_la_LDFLAGS = $(plugin_ldflags)
-libvariable_rate_la_CFLAGS = $(plugin_cflags)
-libvariable_rate_la_LIBADD = $(plugin_libadd)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/vimeo/Makefile.am b/src/plugins/vimeo/Makefile.am
deleted file mode 100644
index 17a3892f5..000000000
--- a/src/plugins/vimeo/Makefile.am
+++ /dev/null
@@ -1,13 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/vimeo
-plugin_LTLIBRARIES = libvimeo.la
-
-plugin_in_files = vimeo.plugin.in
-
-libvimeo_la_SOURCES = totem-vimeo.c
-libvimeo_la_LDFLAGS = $(plugin_ldflags)
-libvimeo_la_LIBADD = $(plugin_libadd)
-libvimeo_la_CFLAGS = $(plugin_cflags)
-
--include $(top_srcdir)/git.mk
diff --git a/src/plugins/zeitgeist-dp/Makefile.am b/src/plugins/zeitgeist-dp/Makefile.am
deleted file mode 100644
index 1272ba2f3..000000000
--- a/src/plugins/zeitgeist-dp/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-include $(top_srcdir)/src/plugins/Makefile.plugins
-
-plugindir = $(PLUGINDIR)/zeitgeist-dp
-plugin_LTLIBRARIES = libtotem-zeitgeist-dp-plugin.la
-
-plugin_in_files = zeitgeist-dp.plugin.in
-
-# here we are explicitly specifying gtk+-3.0 to use the vapi because vala still
-# cannot parse the gir
-AM_VALAFLAGS = \
- --girdir=$(abs_top_builddir)/src \
- --pkg Totem-1.0 --pkg Peas-1.0 --pkg gtk+-3.0 \
- --pkg zeitgeist-2.0 \
- bacon-video.vapi
-
-libtotem_zeitgeist_dp_plugin_la_SOURCES = totem-zeitgeist-dp-plugin.vala
-libtotem_zeitgeist_dp_plugin_la_LDFLAGS = $(plugin_ldflags)
-libtotem_zeitgeist_dp_plugin_la_LIBADD = \
- $(plugin_libadd) \
- $(LIBZEITGEIST_LIBS)
-libtotem_zeitgeist_dp_plugin_la_CFLAGS = \
- $(plugin_cflags) \
- $(vala_plugin_cflags) \
- $(LIBZEITGEIST_CFLAGS) \
- -I $(top_srcdir)/src/backend
-
-GITIGNOREFILES = \
- $(libtotem_zeitgeist_dp_plugin_la_SOURCES:.vala=.c) \
- libtotem_zeitgeist_dp_plugin_la_vala.stamp \
- $(NULL)
-
--include $(top_srcdir)/git.mk
diff --git a/src/properties/Makefile.am b/src/properties/Makefile.am
deleted file mode 100644
index 566f5f6ba..000000000
--- a/src/properties/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-noinst_LTLIBRARIES = libbaconvideowidgetproperties.la
-
-libbaconvideowidgetproperties_la_SOURCES = \
- bacon-video-widget-properties.c \
- bacon-video-widget-properties.h \
- $(NULL)
-
-libbaconvideowidgetproperties_la_CPPFLAGS = \
- -I$(top_srcdir)/src/ \
- -DDATADIR=\""$(datadir)/totem/"\" \
- $(AM_CPPFLAGS)
-
-libbaconvideowidgetproperties_la_CFLAGS = \
- $(PROPERTIES_CFLAGS) \
- $(WARN_CFLAGS) \
- $(AM_CFLAGS)
-
--include $(top_srcdir)/git.mk
diff --git a/subprojects/Makefile.am b/subprojects/Makefile.am
deleted file mode 100644
index 563f375d0..000000000
--- a/subprojects/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-SUBDIRS = libgd
-
--include $(top_srcdir)/git.mk