mirror of
https://git.yoctoproject.org/poky
synced 2026-09-12 15:49:36 +02:00
Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
19 lines
695 B
PHP
19 lines
695 B
PHP
SECTION = "base"
|
|
HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
|
|
DESCRIPTION = "message bus system for applications to talk to one another"
|
|
LICENSE = "GPL"
|
|
DEPENDS = "expat glib-2.0 virtual/libintl dbus-glib-native dbus"
|
|
|
|
SRC_URI = "http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-${PV}.tar.gz \
|
|
file://fix_asneeded.patch;patch=1 \
|
|
file://no-examples.patch;patch=1"
|
|
|
|
inherit autotools pkgconfig gettext
|
|
|
|
EXTRA_OECONF = "--with-introspect-xml=${STAGING_DATADIR_NATIVE}/dbus/dbus-bus-introspect.xml"
|
|
|
|
FILES_${PN} = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool"
|
|
FILES_${PN}-dev += "${bindir}/dbus-binding-tool"
|
|
|