diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-04-23 00:03:05 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-04-23 00:03:05 +0000 |
commit | 7ab6b4449200c528908cfd9f8f3a6503d704c3b9 (patch) | |
tree | cfb7e552bcba4a489d4798b1a3bd3fc618a9fb96 /net-analyzer/portsentry | |
parent | app-text/aspell -> virtual/aspell-dict (diff) | |
download | historical-7ab6b4449200c528908cfd9f8f3a6503d704c3b9.tar.gz historical-7ab6b4449200c528908cfd9f8f3a6503d704c3b9.tar.bz2 historical-7ab6b4449200c528908cfd9f8f3a6503d704c3b9.zip |
Change supersed dependencies
Diffstat (limited to 'net-analyzer/portsentry')
-rw-r--r-- | net-analyzer/portsentry/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/portsentry/Manifest | 5 | ||||
-rw-r--r-- | net-analyzer/portsentry/portsentry-1.1-r7.ebuild | 10 |
3 files changed, 14 insertions, 6 deletions
diff --git a/net-analyzer/portsentry/ChangeLog b/net-analyzer/portsentry/ChangeLog index ea53bd5579b9..efeddf751732 100644 --- a/net-analyzer/portsentry/ChangeLog +++ b/net-analyzer/portsentry/ChangeLog @@ -1,11 +1,14 @@ # ChangeLog for net-analyzer/portsentry # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/ChangeLog,v 1.8 2003/02/12 07:49:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/ChangeLog,v 1.9 2003/04/23 00:02:57 lostlogic Exp $ 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords *portsentry-1.1-r7 (27 Sept. 2002) + 22 Apr 2003; Brandon Low <lostlogic@gentoo.org> portsentry-1.1-r7.ebuild: + Change supersed dependencies + 27 Sept. 2002; Grant Goodyear <g2boojum@gentoo.org> portsentry-1.1-r7.ebuild : Fixed sed -i in first line to read ssed -i (and added -e). diff --git a/net-analyzer/portsentry/Manifest b/net-analyzer/portsentry/Manifest new file mode 100644 index 000000000000..bc1418e52bed --- /dev/null +++ b/net-analyzer/portsentry/Manifest @@ -0,0 +1,5 @@ +MD5 043c8c32e80fdbdfc6ca8d84108fa4f7 portsentry-1.1-r7.ebuild 1602 +MD5 5736f386f7453a66d4329461bc0b2963 ChangeLog 1475 +MD5 cb697669e22866aafbfa76e941c21e37 files/portsentry.confd 90 +MD5 8bc2e5465021071443fbd1be780cb91d files/portsentry.rc6 980 +MD5 78771791b063cd2784d6b60d5ad9f89f files/digest-portsentry-1.1-r7 65 diff --git a/net-analyzer/portsentry/portsentry-1.1-r7.ebuild b/net-analyzer/portsentry/portsentry-1.1-r7.ebuild index 9085147e6d14..25ba7da70f29 100644 --- a/net-analyzer/portsentry/portsentry-1.1-r7.ebuild +++ b/net-analyzer/portsentry/portsentry-1.1-r7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # 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.4 2003/02/13 13:49:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/portsentry/portsentry-1.1-r7.ebuild,v 1.5 2003/04/23 00:02:57 lostlogic Exp $ S=${WORKDIR}/${P} DESCRIPTION="Automated port scan detector and response tool" @@ -11,23 +11,23 @@ SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 ppc sparc " -DEPEND="sys-apps/supersed" +DEPEND="=sys-apps/sed-4*" src_unpack() { unpack ${A} ; cd ${S} # Setting the portsentry.conf file location - ssed -i -e 's:/usr/local/psionic/portsentry/portsentry.conf:/etc/portsentry/portsentry.conf:' \ + sed -i -e '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' \ + 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 - ssed -i "s:^set SENTRYDIR.*:set SENTRYDIR=/etc/portsentry:g" \ + sed -i "s:^set SENTRYDIR.*:set SENTRYDIR=/etc/portsentry:g" \ ignore.csh } |