blob: 251eb61ae02994929323cd4d55ece137005eac08 (
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
|
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 (deprecated, needs --enable-gnomecd separate package for gnome-cd and cddb-slave2):
#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
}
do_install_append() {
rm ${D}${libdir}/libglade/2.0/libgnome-media-profiles.la
}
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"
|