blob: 43fd3ab9c7f2c4525a367ba6963adf441553c37d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
LICENSE = "GPL"
SECTION = "libs"
PR = "r0"
DEPENDS= "libxml2 bzip2 glib-2.0 zlib gtk-doc libbonobo gnome-vfs"
RDEPENDS = "gconf gnome-vfs"
PACKAGES =+ "${PN}-gnome ${PN}-gnome-dev "
FILES_${PN}-gnome = "${libdir}/libgsf-gnome-1.so.*"
FILES_${PN}-gnome-dev = "${libdir}/libgsf-gnome-1.* ${includedir}/libgsf-1/gsf-gnome"
inherit autotools pkgconfig gnome gconf
EXTRA_OECONF = "\
--without-python \
--with-gnome \
--with-bz2"
do_stage() {
autotools_stage_all
}
|