blob: 4b6e2fa89deb7cfb27bac548553b1b1b56d7c92b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/labrea/labrea-2.5.ebuild,v 1.4 2005/01/29 05:12:51 dragonheart Exp $
DESCRIPTION="'Sticky' Honeypot and IDS"
HOMEPAGE="http://labrea.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-stable-1.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="virtual/libpcap
>=dev-libs/libdnet-1.7"
MY_P="${P}-stable-1"
S=${WORKDIR}/${MY_P}
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die "einstall failed"
dodoc AUTHORS ChangeLog INSTALL README TODO NEWS
}
pkg_postinst() {
ewarn CAUTION:
ewarn Before using this package READ the INSTALL and README!
ewarn as the author states that it can cause serious problems on your network.
}
|