diff options
author | Ross Burton <ross@openedhand.com> | 2007-01-19 20:55:09 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-01-19 20:55:09 +0000 |
commit | 776490a40df8d1b4a84a07dd3e13bd10cd4c8bdd (patch) | |
tree | 489df56bf4725a99dc095a17cdfe7ef4c680ac82 /meta-extras/packages/dhcdbd/dhcdbd_2.0.bb | |
parent | 6564355fb79604e818722ae3f6acf3dbb0665fca (diff) | |
download | openembedded-core-776490a40df8d1b4a84a07dd3e13bd10cd4c8bdd.tar.gz openembedded-core-776490a40df8d1b4a84a07dd3e13bd10cd4c8bdd.tar.bz2 openembedded-core-776490a40df8d1b4a84a07dd3e13bd10cd4c8bdd.zip |
Add dhcp3 and dhcdbd for Network Manager
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1175 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta-extras/packages/dhcdbd/dhcdbd_2.0.bb')
-rw-r--r-- | meta-extras/packages/dhcdbd/dhcdbd_2.0.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-extras/packages/dhcdbd/dhcdbd_2.0.bb b/meta-extras/packages/dhcdbd/dhcdbd_2.0.bb new file mode 100644 index 0000000000..de9e24abd5 --- /dev/null +++ b/meta-extras/packages/dhcdbd/dhcdbd_2.0.bb @@ -0,0 +1,25 @@ +DESCRIPTION="DBus-enabled dhcp client" +SECTION="net" +LICENSE="GPL" +HOMEPAGE="http://people.redhat.com/jvdias/dhcdbd/" + +DEPENDS = "dbus" +RDEPENDS = "dhcp-client" + +PR = "r0" + +SRC_URI="http://people.redhat.com/dcantrel/dhcdbd/dhcdbd-${PV}.tar.bz2 \ + file://no-ext-options.patch;patch=1 \ + file://dhcdbd" + +do_compile() { + CC=${TARGET_SYS}-gcc DESTDIR=${prefix} make +} + +do_install() { + DESTDIR=${D} make install + install -d ${D}/etc/init.d + install -m 0755 ${WORKDIR}/dhcdbd ${D}/etc/init.d/ +} + +FILES_${PN} += "${sysconfdir} ${datadir}/dbus-1 ${base_sbindir}/*" |