diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-10-18 08:48:58 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2006-10-18 08:48:58 +0000 |
commit | b4ceff69dc72ecb32acf104154524731748fca23 (patch) | |
tree | c80f37b1af138cff82c70a0ac7a0b72beb72a976 | |
parent | 99f98adab43bfd4b3b46951ab7f6ae2c510950e6 (diff) | |
parent | 0064f6cee7680b22a73d5834203caf0ae7b00ef9 (diff) |
merge of '2890e8a41d4b56afa08fe908f7c38d5dc6d65269'
and 'ab0313a11e170f4e88a966dfdf5b90ab36ca4ccb'
-rw-r--r-- | packages/dhcdbd/dhcdbd_2.0.bb | 25 | ||||
-rw-r--r-- | packages/dhcdbd/files/no-ext-options.patch | 13 |
2 files changed, 38 insertions, 0 deletions
diff --git a/packages/dhcdbd/dhcdbd_2.0.bb b/packages/dhcdbd/dhcdbd_2.0.bb new file mode 100644 index 0000000000..de9e24abd5 --- /dev/null +++ b/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}/*" diff --git a/packages/dhcdbd/files/no-ext-options.patch b/packages/dhcdbd/files/no-ext-options.patch new file mode 100644 index 0000000000..774a2cf140 --- /dev/null +++ b/packages/dhcdbd/files/no-ext-options.patch @@ -0,0 +1,13 @@ +Index: dhcdbd-2.0/include/dhcdbd.h +=================================================================== +--- dhcdbd-2.0.orig/include/dhcdbd.h 2006-10-18 09:38:18.000000000 +0100 ++++ dhcdbd-2.0/include/dhcdbd.h 2006-10-18 09:38:45.000000000 +0100 +@@ -76,7 +76,7 @@ + #endif + + #ifndef DHCLIENT_EXTENDED_OPTION_ENVIRONMENT +-#define DHCLIENT_EXTENDED_OPTION_ENVIRONMENT 1 ++#define DHCLIENT_EXTENDED_OPTION_ENVIRONMENT 0 + #endif + + #define DHCDBD_INTERFACE_TEXT "text" |