mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1175 311d38ba-8fff-0310-9ca6-ca027cbcb966
26 lines
573 B
BlitzBasic
26 lines
573 B
BlitzBasic
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}/*"
|