blob: eaad1d8a7df448b4d52495dd40764bc72c273dd9 (
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
|
DESCRIPTION = "GNOME Media Tools"
LICENSE = "GPL"
SECTION = "x11/gnome"
DEPENDS = "gconf glib-2.0 gstreamer gst-plugins-base gtk+ gdk-pixbuf-csource-native libcanberra libglade libgnomeui libunique libxml2"
# optional for volume control:
DEPENDS += "pulseaudio"
# optional for gnome-cd and cddbslave:
DEPENDS += "nautilus-cd-burner"
inherit gnome
PR = "r1"
EXTRA_OECONF = "--disable-static --disable-gtk-doc --disable-scrollkeeper"
# FIXME: Native doc processing with xsltproc using docbook needs additional work:
do_configure_prepend() {
sed -i 's/^\(SUBDIRS = .*\)\(doc\|help\)/\1/' */Makefile.am
}
do_stage() {
autotools_stage_all
}
FILES_${PN} += "${libdir}/libglade/2.0/libgnome-media-profiles.so \
${datadir}/gstreamer-properties \
${datadir}/gnome-sound-recorder"
FILES_${PN}-dbg += "${libdir}/libglade/2.0/.debug"
|