1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- SECTION = "console/network"
- SUMMARY = "dhcpcd - a DHCP client"
- DESCRIPTION = "dhcpcd runs on your machine and silently configures your \
- computer to work on the attached networks without trouble \
- and mostly without configuration."
- HOMEPAGE = "http://roy.marples.name/projects/dhcpcd/"
- LICENSE = "BSD-2-Clause"
- LIC_FILES_CHKSUM = "file://LICENSE;md5=4dda5beb433a809f2e0aeffbf9da3d91"
- SRC_URI = "git://github.com/NetworkConfiguration/dhcpcd;protocol=https;branch=master \
- file://0001-remove-INCLUDEDIR-to-prevent-build-issues.patch \
- file://0001-20-resolv.conf-improve-the-sitation-of-working-with-.patch \
- file://dhcpcd.service \
- file://dhcpcd@.service \
- file://0001-dhcpcd.8-Fix-conflict-error-when-enable-multilib.patch \
- "
- SRCREV = "f6983c18dbf7989f43a2838beeaf62a54c53ff1d"
- S = "${WORKDIR}/git"
- # Doesn't use automake so we can't do out-of-tree builds
- inherit pkgconfig autotools-brokensep systemd useradd
- SYSTEMD_SERVICE:${PN} = "dhcpcd.service"
- PACKAGECONFIG ?= "udev ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
- PACKAGECONFIG[udev] = "--with-udev,--without-udev,udev,udev"
- PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6"
- # ntp conflicts with chrony
- PACKAGECONFIG[ntp] = "--with-hook=ntp, , ,ntp"
- PACKAGECONFIG[chrony] = "--with-hook=ntp, , ,chrony"
- PACKAGECONFIG[ypbind] = "--with-eghook=yp, , ,ypbind-mt"
- # add option to override DBDIR location
- DBDIR ?= "${localstatedir}/lib/${BPN}"
- EXTRA_OECONF = "--enable-ipv4 \
- --dbdir=${DBDIR} \
- --sbindir=${base_sbindir} \
- --runstatedir=/run \
- --enable-privsep \
- --privsepuser=dhcpcd \
- --with-hooks \
- --with-eghooks \
- "
- USERADD_PACKAGES = "${PN}"
- USERADD_PARAM:${PN} = "--system -d ${DBDIR} -M -s /bin/false -U dhcpcd"
- # This isn't autoconf but is instead a configure script that tries to look like
- # autoconf, so just run it directly.
- do_configure() {
- oe_runconf
- }
- do_install:append () {
- # install systemd unit files
- install -d ${D}${systemd_system_unitdir}
- install -m 0644 ${UNPACKDIR}/dhcpcd*.service ${D}${systemd_system_unitdir}
- chmod 700 ${D}${DBDIR}
- chown dhcpcd:dhcpcd ${D}${DBDIR}
- }
- FILES:${PN}-dbg += "${libdir}/dhcpcd/dev/.debug"
|