blob: d9da0f179ff952f12f711c01d3f9616b0a04d9dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/udhcp-0.9.9_pre20041216-r3.ebuild,v 1.10 2006/11/12 04:19:02 vapier Exp $
inherit eutils toolchain-funcs
DESCRIPTION="udhcp Server/Client Package"
HOMEPAGE="http://udhcp.busybox.net/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc sparc x86"
IUSE=""
DEPEND="virtual/libc"
PROVIDE="virtual/dhcpc"
S="${WORKDIR}/${PN}"
pkg_setup() {
enewgroup dhcp
enewuser dhcp -1 -1 /var/lib/dhcp dhcp
}
src_unpack() {
unpack ${A}
cd "${S}"
# This patch adds the --env,-e option to udhcpc so we can pass the dhcp
# client some environment variables to pass to the script. We do this so
# the script knows mertric and whether to setup DNS, NTP and routers.
epatch "${FILESDIR}/${P}"-env.patch
}
src_compile() {
emake \
CROSS_COMPILE=${CHOST}- \
STRIP=true \
UDHCP_SYSLOG=1 \
|| die
}
src_install() {
make STRIP=true install DESTDIR="${D}" USRSBINDIR="${D}/sbin" || die
newinitd "${FILESDIR}"/udhcp.rc udhcp
insinto /etc
doins samples/udhcpd.conf
dodoc AUTHORS ChangeLog README* TODO
newdoc samples/README README.scripts
# udhcpc setup script - the supplied ones don't work
# This does it supports resolvconf, metrics and whether to setup
# dns, ntp and routers. Requires the --env patch above.
exeinto /lib/rcscripts/sh
newexe "${FILESDIR}"/udhcpc.sh udhcpc.sh
}
|