diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2008-01-28 21:04:43 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2008-01-28 21:04:43 +0000 |
commit | d76686de147df8b1e8d20a1320d7b5ba8ad94dbb (patch) | |
tree | 08884ddeacc510e515520de1a285729d5b78faa6 /packages/dbus/dbus.inc | |
parent | 164e5360d809af7b7023de88df75b773afa924ce (diff) | |
parent | 2341180574deb73dbdcefe6974dd62780ee15d62 (diff) |
merge of '416609d94012a3c6bcceb5665830fd720e6cbc0c'
and '88b6d0d5b0e5836a9bbf16311ac747bf25d751d6'
Diffstat (limited to 'packages/dbus/dbus.inc')
-rw-r--r-- | packages/dbus/dbus.inc | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/packages/dbus/dbus.inc b/packages/dbus/dbus.inc index ecd3d18e70..09fc7e389a 100644 --- a/packages/dbus/dbus.inc +++ b/packages/dbus/dbus.inc @@ -1,16 +1,18 @@ -SECTION = "base" -HOMEPAGE = "http://www.freedesktop.org/Software/dbus" +HOMEPAGE = "http://dbus.freedesktop.org" DESCRIPTION = "Message bus system for applications to talk to one another" LICENSE = "GPL" DEPENDS = "expat glib-2.0 virtual/libintl" DEFAULT_PREFERENCE = "-1" -SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-${PV}.tar.gz \ - file://cross.patch;patch=1 \ - file://tmpdir.patch;patch=1 \ - file://dbus-1.init \ - " +SRC_URI = "\ + http://freedesktop.org/software/dbus/releases/dbus-${PV}.tar.gz \ + file://cross.patch;patch=1 \ + file://tmpdir.patch;patch=1 \ + file://fix-install-daemon.patch;patch=1 \ + file://dbus-1.init \ +" +S = "${WORKDIR}/dbus-${PV}" inherit autotools pkgconfig update-rc.d gettext @@ -51,7 +53,7 @@ EXTRA_OECONF = "--disable-qt --disable-qt3 --disable-gtk --disable-tests \ --with-xml=expat --without-x" -do_stage () { +do_stage() { oe_libinstall -so -C dbus libdbus-1 ${STAGING_LIBDIR} autotools_stage_includes @@ -60,8 +62,7 @@ do_stage () { install -m 0644 dbus/dbus-arch-deps.h ${STAGING_LIBDIR}/dbus-1.0/include/dbus/ } -do_install_append () { +do_install_append() { install -d ${D}${sysconfdir}/init.d install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1 } - |