Add gtk+, avahi, dbus-0.34 (.36 coming soon) and dependencies. Fix x11-common breakage.

git-svn-id: https://svn.o-hand.com/repos/poky@13 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2005-09-02 11:50:01 +00:00
parent 7755d9d194
commit 95efeafc86
164 changed files with 30609 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
SECTION = "libs"
DESCRIPTION = "libdaemon is a lightweight C library which eases the writing of UNIX daemons."
HOMEPAGE = "http://0pointer.de/lennart/projects/libdaemon/"
LICENSE = "GPLv2"
SRC_URI = "http://0pointer.de/lennart/projects/libdaemon/libdaemon-${PV}.tar.gz"
inherit autotools pkgconfig
EXTRA_OECONF = "--disable-lynx --disable-doxygen"
do_stage () {
oe_libinstall -a -so -C src libdaemon ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/libdaemon
for i in dlog.h dexec.h dfork.h dsignal.h dnonblock.h dpid.h; do
install -m 0644 ${S}/src/$i ${STAGING_INCDIR}/libdaemon/
done
}