blob: c67b0e5a2758fc67152f19fdaf5a5aa2cd14f7b4 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ferm/ferm-1.2.4.ebuild,v 1.1 2007/09/20 18:10:32 armin76 Exp $
inherit versionator
MY_PV="$(get_version_component_range 1-2)"
DESCRIPTION="Command line util for managing firewall rules"
HOMEPAGE="http://ferm.foo-projects.org/"
SRC_URI="http://ferm.foo-projects.org/download/${MY_PV}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~ppc ~sparc ~x86"
IUSE=""
SLOT="0"
DEPEND=""
RDEPEND="dev-lang/perl
|| ( net-firewall/iptables net-firewall/ipchains )"
src_install () {
make PREFIX=${D}/usr DOCDIR="${D}/usr/share/doc/${PF}" install || die 'make install failed'
}
pkg_postinst() {
einfo "See /usr/share/doc/${PF}/examples for sample configs"
}
|