blob: fa4a9fe16384f10ecd3922febd1d1ee4c0abed8d (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/argus/argus-2.0.5.ebuild,v 1.3 2003/07/13 11:30:10 aliz Exp $
DESCRIPTION="network Audit Record Generation and Utilization System"
HOMEPAGE="http://www.qosient.com/argus/"
SRC_URI="ftp://ftp.qosient.com/pub/argus/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/glibc
>=net-libs/libpcap-0.6.2"
DEPEND="${RDEPEND}
>=sys-devel/bison-1.28
>=sys-devel/flex-2.4.6"
src_unpack() {
unpack ${A}
cd ${S}
# Fix hardcoded config file
patch -p0 < ${FILESDIR}/${PF}-gentoo.diff || die
}
src_install () {
dodoc COPYING CREDITS INSTALL README
dodoc doc/FAQ doc/HOW-TO doc/CHANGES
doman man/man1/* man/man5/* man/man8/*
dolib lib/argus_common.a lib/argus_parse.a
dobin bin/ra*
newsbin bin/argus_linux argus
insinto /etc/argus
doins support/Config/argus.conf
}
|