blob: e4a520cb860211bf40af9a5620ce29e60d185076 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/udhcp-0.9.8-r3.ebuild,v 1.7 2004/05/24 22:29:12 vapier Exp $
inherit eutils
DESCRIPTION="udhcp Server/Client Package"
HOMEPAGE="http://udhcp.busybox.net/"
SRC_URI="http://udhcp.busybox.net/source/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc sparc ~mips ~alpha arm hppa amd64 ~ia64"
IUSE=""
DEPEND="virtual/glibc"
PROVIDE="virtual/dhcpc"
pkg_setup() {
enewgroup dhcp
enewuser dhcp -1 /bin/false /var/lib/dhcp dhcp
}
src_compile() {
emake CROSS_COMPILE=${CHOST}- STRIP=true SYSLOG=1 || die
}
src_install() {
dodir /usr/sbin /usr/bin /sbin
insinto /etc
doins samples/udhcpd.conf
make \
prefix=${D}/usr \
SBINDIR=${D}/sbin \
CROSS_COMPILE=${CHOST}- \
STRIP=true \
install \
|| die
dodoc AUTHORS COPYING ChangeLog README* TODO
insinto /usr/share/udhcpc
doins samples/*
exeinto /etc/init.d
newexe ${FILESDIR}/udhcp.init udhcp
}
|