blob: 7bd5c6945b9f8f1fa88c40e5a6b3e5f82b2d3420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# totem OE build file
# Copyright (C) 2004, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
DESCRIPTION = "A GTK2 based media player"
HOMEPAGE = "http://www.gnome.org/projects/totem/"
LICENSE = "GPL"
DEPENDS = " totem-pl-parser gtk+ dbus bluez-libs libglade gconf libxml2 gst-ffmpeg gst-plugins-bad gst-plugins-base"
RDEPENDS = "iso-codes"
RRECOMMENDS = "gst-plugin-playbin gst-ffmpeg gst-plugin-audioresample gst-plugin-ximagesink gst-plugin-xvimagesink gst-plugin-alsa"
inherit gnome
SRC_URI += "file://gst-detect.diff;patch=1"
EXTRA_OECONF=" --disable-schemas-install \
--enable-gtk \
--disable-iso-codes \
--disable-debug \
--enable-gstreamer \
--enable-browser-plugins \
--disable-run-in-source-tree \
--with-dbus \
"
do_configure_prepend() {
sed -i -e s:help::g ${S}/Makefile.am
}
PACKAGES =+ "totem-browser-plugin-dbg totem-browser-plugin"
FILES_${PN} += "${datadir}/icons"
FILES_${PN}-dbg += "${libdir}/totem/plugins/*/.debug"
FILES_totem-browser-plugin-dbg += "${libdir}/mozilla/plugins/.debug"
FILES_totem-browser-plugin += "${libdir}/mozilla/plugins/"
|