blob: 76e14dce9b5f92c996c736c2158d95fc318ebe25 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-firewall/itval/itval-1.0.ebuild,v 1.1 2007/05/23 09:12:37 jokey Exp $
inherit eutils flag-o-matic
DESCRIPTION="Iptables policy testing and validation tool"
HOMEPAGE="http://itval.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/ITVal-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-devel/bison
sys-devel/flex"
S=${WORKDIR}/ITVal-${PV}
src_install(){
make DESTDIR="${D}" install || die "make install failed"
doman itval.n
dodoc README ChangeLog RELEASE AUTHORS
}
|