blob: 77d2302703c42d9814fadc2a138602879dff1eca (
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
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/arpwatch/arpwatch-2.1.11.ebuild,v 1.4 2003/07/13 11:30:10 aliz Exp $
P=arpwatch-2.1a11
S=${WORKDIR}/$P
DESCRIPTION="An ethernet monitor program that keeps track of ethernet/ip address pairings"
SRC_URI="ftp://ftp.ee.lbl.gov/${P}.tar.gz"
HOMEPAGE="http://www-nrg.ee.lbl.gov/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~ppc"
DEPEND="net-libs/libpcap
sys-libs/ncurses"
src_unpack() {
unpack $A
cd ${S}
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff
}
src_compile() {
./configure \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
|| die "./configure failed"
emake || die
}
src_install () {
dodir /usr/sbin /etc /var /var/arpwatch /etc /etc/init.d
keepdir /var/arpwatch
make DESTDIR=${D} install || die
exeinto /etc/init.d ; newexe ${FILESDIR}/arpwatch.init arpwatch
}
pkg_postinst() {
ewarn "NOTE: if you want to run arpwatch on boot then execute"
ewarn " rc-update add arpwatch default "
}
|