blob: 8102dfcde66da899f51f5fde360ae3c1b79a0d53 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Protects computers from SSH brute force attacks by dynamically blocking IP addresses by adding iptables rules."
HOMEPAGE="http://sourceforge.net/projects/blocksshd"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-perl/File-Tail-0.99.1
>=dev-perl/Net-DNS-0.53-r1
>=dev-perl/Sys-Hostname-Long-1.2
>=net-firewall/iptables-1.3.5-r1
>=perl-core/Getopt-Long-2.34
>=perl-core/Sys-Syslog-0.16"
src_unpack() {
unpack ${A}
cd "${S}"
# convert CRLF to LF
edos2unix blocksshd blocksshd.conf
#apply patches
epatch "${FILESDIR}"/blocksshd-${PV}.conf-dir-change.patch
epatch "${FILESDIR}"/blocksshd-${PV}.etc-dir-change.patch
}
src_install() {
dosbin blocksshd || die "dosbin failed"
dodoc CHANGELOG CREDITS README VERSION blocksshd.conf
newinitd "${FILESDIR}/blocksshd.init" blocksshd
insinto /etc/blocksshd
newins blocksshd.conf blocksshd.conf.sample
}
pkg_postinst() {
ewarn
ewarn "The configuration file ${ROOT}etc/blocksshd/blocksshd.conf.sample"
ewarn "must be renamed before blocksshd will run."
ewarn "Please review this configuration file for settings that might"
ewarn "be appropiate for your setup."
ewarn
}
|