blob: 3e7db8e2cf13f64c6a133eafb84734c901041227 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/portsentry-1.1-r6.ebuild,v 1.8 2002/09/18 20:27:53 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Automated port scan detector and response tool"
HOMEPAGE="http://www.psionic.com/abacus/portsentry/"
SRC_URI="http://www.psionic.com/tools/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc sparc64"
DEPEND="sys-apps/supersed"
src_unpack() {
unpack ${A} ; cd ${S}
# Setting the portsentry.conf file location
sed -i 's:/usr/local/psionic/portsentry/portsentry.conf:/etc/portsentry/portsentry.conf:' \
portsentry_config.h
# presetting the other file locations in portsentry.conf
ssed -i -e 's:\(^IGNORE_FILE\).*:\1="/etc/portsentry/portsentry.ignore":g' \
-e 's:^\(HISTORY_FILE\).*:\1="/etc/portsentry/portsentry.history":g' \
-e 's:^\(BLOCKED_FILE\).*:\1="/etc/portsentry/portsentry.blocked":g' \
portsentry.conf
ssed -i "s:^set SENTRYDIR.*:set SENTRYDIR=/etc/portsentry:g" \
ignore.csh
}
src_compile() {
make CFLAGS="${CFLAGS}" linux || die
}
src_install () {
dobin portsentry ignore.csh
dodoc README* CHANGES LICENSE CREDITS
newdoc portsentry.ignore portsentry.ignore.sample
newdoc portsentry.conf portsentry.conf.sample
insinto /etc/portsentry
newins portsentry.ignore portsentry.ignore.sample
newins portsentry.conf portsentry.conf.sample
exeinto /etc/init.d ; newexe ${FILESDIR}/portsentry.rc6 portsentry
insinto /etc/conf.d ; newins ${FILESDIR}/portsentry.confd portsentry
}
|