summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-03-07 21:31:32 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-03-07 21:31:32 +0000
commitad3b60dc5c798103921fad1e8d84bbf5acb3c96d (patch)
tree31e0dcdf41140bc8954cc82c9ac0d030983f378d /dbus
parentff4142dc9696c554ae8f22a4cdfc8004c95559f8 (diff)
add gpe-bluetooth, libxml2 and libglade courtesy Philip Blundell.
Improve gtk+, libgpewidget, libgpevtype and dbus staging courtesy Philip Blundell. BKrev: 404b94b4XPu2WpxNUiSONlbWI0rYwg
Diffstat (limited to 'dbus')
-rw-r--r--dbus/dbus_0.20.oe33
1 files changed, 30 insertions, 3 deletions
diff --git a/dbus/dbus_0.20.oe b/dbus/dbus_0.20.oe
index a47a6b26aa..254b752957 100644
--- a/dbus/dbus_0.20.oe
+++ b/dbus/dbus_0.20.oe
@@ -1,13 +1,40 @@
HOMEPAGE = http://www.freedesktop.org/Software/dbus
DESCRIPTION = "message bus system for applications to talk to one another"
-DEPENDS = virtual/libc expat
+DEPENDS = virtual/libc expat glib-2.0
RDEPENDS = libc6 expat
SRC_URI = 'http://freedesktop.org/Software/dbus/releases/dbus-${PV}.tar.gz \
file://${FILESDIR}/cross.patch;patch=1'
-inherit autotools libtool
+inherit autotools libtool pkgconfig
-EXTRA_OECONF = '--disable-qt --disable-glib --disable-gtk --disable-tests \
+EXTRA_OECONF = '--disable-qt --disable-gtk --disable-tests \
--disable-checks --disable-xml-docs --disable-doxygen-docs \
--with-xml=expat --without-x'
+
+headers = dbus-address.h dbus-bus.h dbus-connection.h dbus-errors.h dbus-macros.h dbus-memory.h dbus-message.h dbus-pending-call.h dbus-protocol.h dbus-server.h dbus-threads.h dbus-types.h dbus.h
+
+libname = libdbus-1.so.0.0.0
+glibname = libdbus-glib-1.so.0.0.0
+
+do_stage () {
+ install -m 0755 dbus/.libs/${libname} ${STAGING_LIBDIR}/
+ ln -sf ${libname} ${STAGING_LIBDIR}/libdbus-1.so.0
+ ln -sf ${libname} ${STAGING_LIBDIR}/libdbus-1.so
+ install -m 0644 dbus/libdbus-1.la ${STAGING_LIBDIR}/
+
+ install -m 0755 glib/.libs/${glibname} ${STAGING_LIBDIR}/
+ ln -sf ${glibname} ${STAGING_LIBDIR}/libdbus-glib-1.so.0
+ ln -sf ${glibname} ${STAGING_LIBDIR}/libdbus-glib-1.so
+ install -m 0644 glib/libdbus-glib-1.la ${STAGING_LIBDIR}/
+
+ mkdir -p ${STAGING_INCDIR}/dbus-1.0/dbus
+ for i in ${headers}; do
+ install -m 0644 dbus/$i ${STAGING_INCDIR}/dbus-1.0/dbus/$i
+ done
+
+ install -m 0644 glib/dbus-glib.h ${STAGING_INCDIR}/dbus-1.0/dbus/
+
+ mkdir -p ${STAGING_LIBDIR}/dbus-1.0/include/dbus/
+ install -m 0644 dbus/dbus-arch-deps.h ${STAGING_LIBDIR}/dbus-1.0/include/dbus/
+}