blob: 2805d05457fb57249b83b8aec3a0524456333039 (
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-2003 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.5 2003/02/13 15:05:10 vapier 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
}
|