summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ullmann <jokey@gentoo.org>2007-09-06 17:50:03 +0000
committerMarkus Ullmann <jokey@gentoo.org>2007-09-06 17:50:03 +0000
commit80d1455849fa32b4f6734864d25f39103e4e77b6 (patch)
tree540d6c48080d8c10bf6a11022a478ee747acee31 /net-analyzer/portsentry
parentdrop old (diff)
downloadgentoo-2-80d1455849fa32b4f6734864d25f39103e4e77b6.tar.gz
gentoo-2-80d1455849fa32b4f6734864d25f39103e4e77b6.tar.bz2
gentoo-2-80d1455849fa32b4f6734864d25f39103e4e77b6.zip
Cleanup
(Portage version: 2.1.3.7)
Diffstat (limited to 'net-analyzer/portsentry')
-rw-r--r--net-analyzer/portsentry/ChangeLog5
-rw-r--r--net-analyzer/portsentry/files/digest-portsentry-1.1-r73
-rw-r--r--net-analyzer/portsentry/portsentry-1.1-r7.ebuild53
3 files changed, 4 insertions, 57 deletions
diff --git a/net-analyzer/portsentry/ChangeLog b/net-analyzer/portsentry/ChangeLog
index 6d6a523ca7a6..cb6c241c70e1 100644
--- a/net-analyzer/portsentry/ChangeLog
+++ b/net-analyzer/portsentry/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/portsentry
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/ChangeLog,v 1.21 2007/04/22 08:53:44 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/ChangeLog,v 1.22 2007/09/06 17:50:03 jokey Exp $
+
+ 06 Sep 2007; Markus Ullmann <jokey@gentoo.org> -portsentry-1.1-r7.ebuild:
+ Cleanup
22 Apr 2007; <pva@gentoo.org> portsentry-1.1-r7.ebuild,
portsentry-1.2.ebuild:
diff --git a/net-analyzer/portsentry/files/digest-portsentry-1.1-r7 b/net-analyzer/portsentry/files/digest-portsentry-1.1-r7
deleted file mode 100644
index f47bc27c037a..000000000000
--- a/net-analyzer/portsentry/files/digest-portsentry-1.1-r7
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 782839446b7eca554bb1880ef0882670 portsentry-1.1.tar.gz 45871
-RMD160 07ddd73040834bd700f0d9e03c23a2d0c8872016 portsentry-1.1.tar.gz 45871
-SHA256 eb06f3c328614365a9fe61b8878acb76cbf364cb695dda37536a3b0e07a13f1f portsentry-1.1.tar.gz 45871
diff --git a/net-analyzer/portsentry/portsentry-1.1-r7.ebuild b/net-analyzer/portsentry/portsentry-1.1-r7.ebuild
deleted file mode 100644
index ee586204bd82..000000000000
--- a/net-analyzer/portsentry/portsentry-1.1-r7.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/portsentry-1.1-r7.ebuild,v 1.12 2007/04/22 08:53:44 pva Exp $
-
-DESCRIPTION="Automated port scan detector and response tool"
-# Seems like CISCO took the site down?
-HOMEPAGE="http://sourceforge.net/projects/sentrytools/"
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc sparc"
-IUSE=""
-
-DEPEND=">=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A} ; cd "${S}"
-
- # Setting the portsentry.conf file location
- sed -i \
- -e 's:/usr/local/psionic/portsentry/portsentry.conf:/etc/portsentry/portsentry.conf:' \
- portsentry_config.h || die "sed portsentry_config.h failed"
-
- # presetting the other file locations in portsentry.conf
- sed -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 || die "sed portsentry.conf failed"
-
- sed -i \
- -e "s:^set SENTRYDIR.*:set SENTRYDIR=/etc/portsentry:g" \
- ignore.csh || die "sed ignore.csh failed"
-}
-
-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
-
- newinitd "${FILESDIR}"/portsentry.rc6 portsentry
- newconfd "${FILESDIR}"/portsentry.confd portsentry
-}