diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-10 06:00:09 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-10 06:00:09 +0000 |
commit | a802793803a392a677320355bb5a33434aab31c8 (patch) | |
tree | f21f6ab429adc94c8ecdb9be6d29ef57c0262725 /gnome/gconf_2.6.1.oe | |
parent | 65a4d5ba1400f37f92ec2e52e0d72f856cf647cb (diff) |
Kill off some references to the old nonexistant libtool oeclass.
BKrev: 409f1a69MOYozddYWZQKFCk4AwQeoA
Diffstat (limited to 'gnome/gconf_2.6.1.oe')
-rw-r--r-- | gnome/gconf_2.6.1.oe | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnome/gconf_2.6.1.oe b/gnome/gconf_2.6.1.oe index e69de29bb2..7eed5a6bc4 100644 --- a/gnome/gconf_2.6.1.oe +++ b/gnome/gconf_2.6.1.oe @@ -0,0 +1,19 @@ +SECTION = "gnome/base" +DESCRIPTION = "GNOME configuration database system" +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/GConf/2.6/GConf-${PV}.tar.bz2" +DEPENDS = "orbit2 glib-2.0" + +S = "${WORKDIR}/GConf-${PV}" + +EXTRA_OECONF = "--disable-gtk-doc" + +inherit autotools pkgconfig + +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_stage() { + oe_soinstall gconf/.libs/libgconf-2.so.4.1.0 ${STAGING_LIBDIR}/ + install -m 0644 gconf/.libs/libgconf-2.lai ${STAGING_LIBDIR}/libgconf-2.la + 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 ) +} |