diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-06-17 16:40:53 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-06-17 16:40:53 +0000 |
commit | 382e56548b2b8880c44caaca6d45208e76123fd5 (patch) | |
tree | effac1c45834689428ac7880d18a42dad4654737 | |
parent | 47bb9dd4228b229d383518bc3ba0b99b47d2f706 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/06/17 18:07:55+02:00 utwente.nl!koen
gconf-osso_2.6.4-3.1osso13.bb: fix gconf-osso, courtesy Florian Boor
BKrev: 42b2fd159iRhoB0aNfPGBcW500JnbQ
-rw-r--r-- | packages/maemo/gconf-osso/gconf-daemon-oe.sh | 0 | ||||
-rw-r--r-- | packages/maemo/gconf-osso_2.6.4-3.1osso13.bb | 38 |
2 files changed, 38 insertions, 0 deletions
diff --git a/packages/maemo/gconf-osso/gconf-daemon-oe.sh b/packages/maemo/gconf-osso/gconf-daemon-oe.sh new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/maemo/gconf-osso/gconf-daemon-oe.sh diff --git a/packages/maemo/gconf-osso_2.6.4-3.1osso13.bb b/packages/maemo/gconf-osso_2.6.4-3.1osso13.bb index e69de29bb2..8792aa19df 100644 --- a/packages/maemo/gconf-osso_2.6.4-3.1osso13.bb +++ b/packages/maemo/gconf-osso_2.6.4-3.1osso13.bb @@ -0,0 +1,38 @@ +SECTION = "x11/utils" +DEPENDS = "gtk+ glib-2.0 dbus libxml2 popt" +DESCRIPTION = "Settings daemon using DBUS for communication (osso version)." +LICENSE = "GPL" +MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" +PROVIDES = "gconf" +RPROVIDES = "gconf" + +PR = "r1" + +SRC_URI = "http://repository.maemo.org/pool/maemo/ossw/source/g/gconf2/gconf2_${PV}.tar.gz \ + file://gconf-update.patch;patch=1;pnum=0 \ + file://gconf-daemon-oe.sh" + +S = "${WORKDIR}/gconf2-2.6.4/GConf-2.6.4" + + +inherit pkgconfig autotools + +FILES_${PN} += "${sysconfdir} ${libdir}/dbus-1.0/ ${libdir}/GConf ${datadir}/sgml" + +EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static" + +HEADERS = "gconf.h gconf-changeset.h gconf-listeners.h gconf-schema.h gconf-value.h gconf-error.h gconf-engine.h gconf-client.h gconf-enum-types.h" + +do_install_append () { + install -d ${D}/${sysconfdir}/osso-af-init + install -m755 ${WORKDIR}/gconf-daemon-oe.sh ${D}${sysconfdir}/osso-af-init/gconf-daemon.sh + install -d ${D}${sysconfdir}/osso-af-init/gconf-dir + install -d ${D}/var/lib/gconf +} + +do_stage() { + oe_libinstall -so -C gconf libgconf-2 ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/gconf/2/gconf/ + ( cd gconf; for i in ${HEADERS}; do install -m 0644 $i ${STAGING_INCDIR}/gconf/2/gconf/$i; done ) + install -m 0644 gconf.m4 ${STAGING_DATADIR}/aclocal/gconf-2.m4 +} |