# 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.6 2004/03/25 21:20:09 gustavoz 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 ~alpha ~hppa ~mips ~ia64 amd64" 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 }