blob: ed9f45e1306dd30b449699f51167af373d31cfe6 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit git linux-info
EGIT_REPO_URI="git://${PN}.git.sourceforge.net/gitroot/${PN}"
EGIT_PROJECT="${PN}"
EGIT_PATCHES=( "${FILESDIR}/${PN}-makefile.patch" )
DESCRIPTION="Blocks connections from/to hosts listed in files using iptables."
HOMEPAGE="http://iplist.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="java"
DEPEND="net-firewall/iptables
net-libs/libnetfilter_queue
net-libs/libnfnetlink
sys-libs/zlib"
RDEPEND="java? ( >=virtual/jre-1.5 )
${DEPEND}"
CONFIG_CHECK="NETFILTER_XT_MATCH_IPRANGE"
src_install() {
if use java ; then
insinto "/usr/share/${PN}"
doins ipblockUI.jar || die "gui install failed"
fi
emake DESTDIR="${D}" install || die "install failed!"
doman {${PN},ipblock}.8 || die "doman failed!"
exeinto /etc/cron.daily
newexe debian/ipblock.cron.daily ipblock || die "cron failed"
}
pkg_postinst() {
einfo "a cron file was set in /etc/cron.daily"
einfo "and it will update your lists once a day"
}
|