blob: 1e2dd9439bbab17b030be796ddd9135ce08654bf (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/firestorm/firestorm-0.5.5.ebuild,v 1.1 2004/11/24 14:10:15 dragonheart Exp $
DESCRIPTION="Network IDS"
SRC_URI="http://www.scaramanga.co.uk/firestorm/v${PV}/${P}.tar.gz"
HOMEPAGE="http://www.scaramanga.co.uk/firestorm/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~s390 ~ppc"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
econf || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING CREDITS ChangeLog HACKING INSTALL NEWS README
}
|