diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-05 17:21:56 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-05 17:21:56 +0000 |
commit | f0b6ce84826e63cd9c95e0427ee7890c454bc364 (patch) | |
tree | 2ec818ec1f9218f94accafb86c560a69fb809291 /meta/packages/dbus/dbus-glib-native_0.76.bb | |
parent | 0d8a8c893226ec11bdfb51466199e1d748875338 (diff) | |
download | openembedded-core-f0b6ce84826e63cd9c95e0427ee7890c454bc364.tar.gz openembedded-core-f0b6ce84826e63cd9c95e0427ee7890c454bc364.tar.bz2 openembedded-core-f0b6ce84826e63cd9c95e0427ee7890c454bc364.zip |
dbus-glib: Factor into a common .inc file and cleanup the recipe using autotools staging
Diffstat (limited to 'meta/packages/dbus/dbus-glib-native_0.76.bb')
-rw-r--r-- | meta/packages/dbus/dbus-glib-native_0.76.bb | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/meta/packages/dbus/dbus-glib-native_0.76.bb b/meta/packages/dbus/dbus-glib-native_0.76.bb index 9486a3ed37..f3bd5ab13d 100644 --- a/meta/packages/dbus/dbus-glib-native_0.76.bb +++ b/meta/packages/dbus/dbus-glib-native_0.76.bb @@ -1,20 +1,14 @@ -SECTION = "base" -PR = "r1" -HOMEPAGE = "http://www.freedesktop.org/Software/dbus" -DESCRIPTION = "message bus system for applications to talk to one another" -LICENSE = "GPL" - -SRC_URI = "http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-${PV}.tar.gz \ - file://run-with-tmp-session-bus.patch;patch=1" - -inherit autotools pkgconfig gettext native +require dbus-glib.inc +inherit native DEPENDS = "glib-2.0-native dbus-native" -EXTRA_OECONF = "--with-introspect=${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml" +PR = "r2" + +SRC_URI += "file://run-with-tmp-session-bus.patch;patch=1" do_stage() { - oe_runmake install + autotools_stage_all install -d ${STAGING_DATADIR}/dbus install -m 0644 tools/dbus-glib-bindings.h ${STAGING_DATADIR}/dbus } |