[oe-commits] [meta-openembedded] 09/10: dhcpcd: cleanup recipe

git at git.openembedded.org git at git.openembedded.org
Thu Mar 17 14:13:36 UTC 2016


martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit 5a61b14bc2f0ed3d0be3ca909e38b358612fe011
Author: Pascal Bach <pascal.bach at siemens.com>
AuthorDate: Thu Mar 17 14:25:10 2016 +0100

    dhcpcd: cleanup recipe
    
    - use autotools-brokensep instead of B = "${S}"
    - make udev configurable via PACKAGECONFIG
    - make ipv6 configurable via PACKAGECONFIG
    
    Signed-off-by: Pascal Bach <pascal.bach at siemens.com>
    Signed-off-by: Freudiger Raphael <raphael.freudiger at siemens.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb
index 058a932..76d0103 100644
--- a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb
+++ b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.0.bb
@@ -12,11 +12,13 @@ SRC_URI = "http://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz"
 SRC_URI[md5sum] = "f39c5773e7c4bea352d9fb7367c899de"
 SRC_URI[sha256sum] = "ab56af9b2e86913c55a965cb0f835e87749df78318564acf90d5d698f413ad35"
 
-inherit autotools
+inherit autotools-brokensep
 
-B = "${S}"
-EXTRA_OECONF = "--enable-ipv4 --enable-ipv6"
+PACKAGECONFIG ?= "udev ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}"
 
-FILES_${PN}-dbg += "${libdir}/dhcpcd/dev/.debug"
+PACKAGECONFIG[udev] = "--with-udev,--without-udev,udev,udev"
+PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6"
+
+EXTRA_OECONF = "--enable-ipv4"
 
-RDEPENDS_${PN} = "udev"
+FILES_${PN}-dbg += "${libdir}/dhcpcd/dev/.debug"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list