blob: 658c12146b92b6f6c389451900a17cc515e14ff8 (
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
|
# Copyright 1999-2003 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-r1.ebuild,v 1.1 2003/10/30 07:52:59 seemant Exp $
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 ~alpha ~hppa ~mips ~arm ~ia64 amd64"
DEPEND=""
src_compile() {
emake SYSLOG=1 || die
}
src_install() {
dodir /usr/sbin
dodir /usr/bin
dodir /sbin
insinto /etc
doins samples/udhcpd.conf
make prefix=${D}/usr SBINDIR=${D}/sbin install || die
dodoc AUTHORS COPYING ChangeLog README* TODO
insinto /usr/share/udhcpc
doins samples/*
exeinto /etc/init.d
newexe ${FILESDIR}/udhcp.init udhcp
}
|