blob: ab106f4f5215d4486fc5bc6a19b67c101d787ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
SECTION = "base"
HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
DESCRIPTION = "message bus system for applications to talk to one another"
DEPENDS = "expat glib-2.0"
SRC_URI = "http://freedesktop.org/Software/dbus/releases/dbus-${PV}.tar.gz \
file://cross.patch;patch=1"
inherit autotools pkgconfig
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"
do_stage () {
oe_libinstall -so -C dbus libdbus-1 ${STAGING_LIBDIR}
oe_libinstall -so -C glib libdbus-glib-1 ${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/
}
|