[oe-commits] [meta-openembedded] 05/11: dhcpcd: cleanup recipe

git at git.openembedded.org git at git.openembedded.org
Fri Apr 1 20:00:58 UTC 2016


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

commit 6a31e7c139fc830b42d518e55dc94a2b2da5872e
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>
    Signed-off-by: Joe MacDonald <joe_macdonald at mentor.com>
---
 meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.1.bb | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.1.bb b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.1.bb
index 5f207f5..cd80428 100644
--- a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.1.bb
+++ b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_6.10.1.bb
@@ -12,11 +12,13 @@ SRC_URI = "http://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz"
 SRC_URI[md5sum] = "a7b83c57f47b62f48373905d3b4f7978"
 SRC_URI[sha256sum] = "284abf8c3be0580bbac5eaca95359346ab0d78d4072317b6ce87cc68f2e8ae7b"
 
-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