summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-01-17 18:19:10 +0000
committerJeroen Roovers <jer@gentoo.org>2012-01-17 18:19:10 +0000
commitf27a60c35730cdee5b4dc459b3d4e301020deea1 (patch)
tree841a99547f6b1d4f733b71e0b6777e83e81166c4 /app-admin/sshguard
parentMask not yet released media-libs/opengtl-0.9.16. (diff)
downloadgentoo-2-f27a60c35730cdee5b4dc459b3d4e301020deea1.tar.gz
gentoo-2-f27a60c35730cdee5b4dc459b3d4e301020deea1.tar.bz2
gentoo-2-f27a60c35730cdee5b4dc459b3d4e301020deea1.zip
Old.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/sshguard')
-rw-r--r--app-admin/sshguard/ChangeLog6
-rw-r--r--app-admin/sshguard/sshguard-1.0.ebuild36
-rw-r--r--app-admin/sshguard/sshguard-1.1.ebuild36
-rw-r--r--app-admin/sshguard/sshguard-1.3.ebuild36
-rw-r--r--app-admin/sshguard/sshguard-1.4.ebuild39
5 files changed, 5 insertions, 148 deletions
diff --git a/app-admin/sshguard/ChangeLog b/app-admin/sshguard/ChangeLog
index cf977eade96a..f73c83f85fb8 100644
--- a/app-admin/sshguard/ChangeLog
+++ b/app-admin/sshguard/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/sshguard
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.16 2012/01/15 15:41:08 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/ChangeLog,v 1.17 2012/01/17 18:19:10 jer Exp $
+
+ 17 Jan 2012; Jeroen Roovers <jer@gentoo.org> -sshguard-1.0.ebuild,
+ -sshguard-1.1.ebuild, -sshguard-1.3.ebuild, -sshguard-1.4.ebuild:
+ Old.
15 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> sshguard-1.5-r1.ebuild:
x86 stable wrt bug #396757
diff --git a/app-admin/sshguard/sshguard-1.0.ebuild b/app-admin/sshguard/sshguard-1.0.ebuild
deleted file mode 100644
index a4f49226e2e2..000000000000
--- a/app-admin/sshguard/sshguard-1.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.0.ebuild,v 1.6 2008/07/18 23:16:24 cla Exp $
-
-DESCRIPTION="protects hosts from brute force attacks against ssh"
-HOMEPAGE="http://sshguard.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd"
-IUSE="ipfilter kernel_FreeBSD kernel_linux"
-
-DEPEND="kernel_linux? ( net-firewall/iptables )
- kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
-RDEPEND="${DEPEND}
- virtual/logger"
-
-src_compile() {
- local myconf
- if use kernel_linux; then
- myconf="--with-firewall=iptables"
- elif use kernel_FreeBSD; then
- use ipfilter && myconf="--with-firewall=ipfw" \
- || myconf="--with-firewall=pf"
- fi
-
- econf ${myconf}
- emake CFLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README Changes || die "dodoc failed"
- dodoc examples/* || die "dodoc failed"
-}
diff --git a/app-admin/sshguard/sshguard-1.1.ebuild b/app-admin/sshguard/sshguard-1.1.ebuild
deleted file mode 100644
index 8200c16395e3..000000000000
--- a/app-admin/sshguard/sshguard-1.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.1.ebuild,v 1.1 2008/08/31 10:12:51 hawking Exp $
-
-DESCRIPTION="protects hosts from brute force attacks against ssh"
-HOMEPAGE="http://sshguard.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="ipfilter kernel_FreeBSD kernel_linux"
-
-DEPEND="kernel_linux? ( net-firewall/iptables )
- kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
-RDEPEND="${DEPEND}
- virtual/logger"
-
-src_compile() {
- local myconf
- if use kernel_linux; then
- myconf="--with-firewall=iptables"
- elif use kernel_FreeBSD; then
- use ipfilter && myconf="--with-firewall=ipfw" \
- || myconf="--with-firewall=pf"
- fi
-
- econf ${myconf}
- emake CFLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README Changes || die "dodoc failed"
- dodoc examples/* || die "dodoc failed"
-}
diff --git a/app-admin/sshguard/sshguard-1.3.ebuild b/app-admin/sshguard/sshguard-1.3.ebuild
deleted file mode 100644
index 0db5eca517e3..000000000000
--- a/app-admin/sshguard/sshguard-1.3.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.3.ebuild,v 1.1 2008/12/22 02:03:00 vanquirius Exp $
-
-DESCRIPTION="protects hosts from brute force attacks against ssh"
-HOMEPAGE="http://sshguard.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="ipfilter kernel_FreeBSD kernel_linux"
-
-DEPEND="kernel_linux? ( net-firewall/iptables )
- kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
-RDEPEND="${DEPEND}
- virtual/logger"
-
-src_compile() {
- local myconf
- if use kernel_linux; then
- myconf="--with-firewall=iptables"
- elif use kernel_FreeBSD; then
- use ipfilter && myconf="--with-firewall=ipfw" \
- || myconf="--with-firewall=pf"
- fi
-
- econf ${myconf}
- emake CFLAGS="${CFLAGS}" || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README Changes || die "dodoc failed"
- dodoc examples/* || die "dodoc failed"
-}
diff --git a/app-admin/sshguard/sshguard-1.4.ebuild b/app-admin/sshguard/sshguard-1.4.ebuild
deleted file mode 100644
index 3ecd7c656276..000000000000
--- a/app-admin/sshguard/sshguard-1.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/sshguard/sshguard-1.4.ebuild,v 1.1 2009/11/12 19:40:18 pva Exp $
-
-EAPI="2"
-
-DESCRIPTION="protects hosts from brute force attacks against ssh"
-HOMEPAGE="http://sshguard.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE="ipfilter kernel_FreeBSD kernel_linux"
-
-CDEPEND="kernel_linux? ( net-firewall/iptables )
- kernel_FreeBSD? ( !ipfilter? ( sys-freebsd/freebsd-pf ) )"
-DEPEND="${CDEPEND}
- sys-devel/flex"
-RDEPEND="${CDEPEND}
- virtual/logger"
-
-src_configure() {
- local myconf
- if use kernel_linux; then
- myconf="--with-firewall=iptables"
- elif use kernel_FreeBSD; then
- use ipfilter && myconf="--with-firewall=ipfw" \
- || myconf="--with-firewall=pf"
- fi
-
- econf ${myconf}
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc README Changes || die "dodoc failed"
- dodoc examples/* || die "dodoc failed"
-}