blob: 9367cbaade15feb43e779f41fa464eba41fb0e7a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rarpd/rarpd-1.1.ebuild,v 1.4 2002/12/09 04:33:18 manson Exp $
DESCRIPTION="rarpd - reverse address resolution protocol daemon"
HOMEPAGE="ftp://ftp.dementia.org/pub/net-tools"
SRC_URI="ftp://ftp.dementia.org/pub/net-tools/${P}.tar.gz"
DEPEND="<net-libs/libnet-1.1
>=net-libs/libpcap-0.7.1"
S=${WORKDIR}/${P}
KEYWORDS="x86 ppc sparc "
SLOT="0"
LICENSE="as-is"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die
emake || die
}
src_install () {
exeinto /usr/sbin
doexe rarpd
doman rarpd.8
dodoc AUTHORS COPYING README TODO VERSION INSTALL
}
|