blob: 8073d067a01c5a8897200b3112e1759f9f3d17e5 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=1
DESCRIPTION="ArpON (Arp handler inspectiON) is a portable Arp handler."
HOMEPAGE="http://arpon.sourceforge.net/"
SRC_URI="mirror://sourceforge/arpon/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
DEPEND="dev-libs/libdnet
net-libs/libnet:1.1
net-libs/libpcap"
RDEPEND=${DEPEND}
src_compile() {
emake gentoo || die "emake Gentoo failed"
}
src_install() {
dosbin arpon || die "arpon installation failed"
doman man8/arpon.8 || die "arpon man installation failed"
dodoc AUTHORS CHANGELOG TODO || die "arpon doc instalation failed"
}
|