diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-01-04 09:23:09 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-01-04 09:23:09 +0100 |
commit | 1dd603fb736646bcb081c711907f7d68012cff09 (patch) | |
tree | 8bd55f0b9b75df66195cafc3d94cecd0017b24f1 /app-admin | |
parent | app-admin/sshguard: Version bump. (diff) | |
download | gentoo-1dd603fb736646bcb081c711907f7d68012cff09.tar.gz gentoo-1dd603fb736646bcb081c711907f7d68012cff09.tar.bz2 gentoo-1dd603fb736646bcb081c711907f7d68012cff09.zip |
app-admin/sshguard: Old.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/sshguard/Manifest | 2 | ||||
-rw-r--r-- | app-admin/sshguard/sshguard-1.5-r1.ebuild | 50 | ||||
-rw-r--r-- | app-admin/sshguard/sshguard-1.7.0.ebuild | 67 |
3 files changed, 0 insertions, 119 deletions
diff --git a/app-admin/sshguard/Manifest b/app-admin/sshguard/Manifest index 9dfc24171721..0d4b10985ecc 100644 --- a/app-admin/sshguard/Manifest +++ b/app-admin/sshguard/Manifest @@ -1,4 +1,2 @@ -DIST sshguard-1.5.tar.bz2 303767 SHA256 b537f8765455fdf8424f87d4bd695e5b675b88e5d164865452137947093e7e19 SHA512 6d17abccd94af9e7fb04a54477ff5686caa64dc36e2f2cbc4a8cd7bc293923daf2fee87fa7f2e247eba1b310abe68549e652ab3224c2d19822d2e8a0306e49e6 WHIRLPOOL 7d579f5c9a03d79f7cc7b51b537b91b053faa56653ba7c5182550ddab41c0fbcd12a6cd7a6dfb2d1e2323905ef3e35aaef9ca8175d97e26cb953d57403f46562 -DIST sshguard-1.7.0.tar.gz 769779 SHA256 5ce784bc25dc9801fbfadc4117669ee02397526c420170ae1145ada96df8cd59 SHA512 876789ee0a457b656f9d9488043f0d4f59cb2ba5a6fc3243f6f05e64995c6cf719bffa01bea7f96897b7092946e441507f2ced4f372fb475dfd7ec0cd70bda55 WHIRLPOOL 7ade8de747f398c7552b17bc3b6ce8c9400e169757072cd10147b2f0ca2e67c427a09e4761a63d9bcc24caca499464301388b4d8b709a4f8cc4325e57dbb312d DIST sshguard-1.7.1.tar.gz 832220 SHA256 2e527589c9b33219222d827dff63974229d044de945729aa47271c4a29aaa195 SHA512 205f45f0f1260ebf2a1efabe5b4391b23c219f37df096383d87c220e7392cf58827a4e509be65287bac5b2af49fa0fc390775e1472cff4fb28f2323821f00fd1 WHIRLPOOL 2810c8c77d623dd21baace30bcd4c20efe1f7544e0db3a8abe84ca823e4cc391ecde072d56e63e10c2a490d1417e18fcd9cae16692ac72fffbf216a23036798e DIST sshguard-1.99.0.tar.gz 878414 SHA256 d55ec6f57c24d954998328e0363000dbded9aed0580cfe4b558fce0abe550f95 SHA512 f691a123291f44b9b8a53a3f4fd599145da08819371d880f8ec70b77328aaa5c8b271e443ae5ff348f9f9a206b6b8b88dab84b2fad1e9e3d7d5f8a499fe67763 WHIRLPOOL a35b4f3bff7841f5d380e8da0e347b968e7349611b9caf2a78c2ac306a0b18624bd9889fadbf4e63e237abf90e7a4da7f16574bc44f714724bfbb24d599cdd3a diff --git a/app-admin/sshguard/sshguard-1.5-r1.ebuild b/app-admin/sshguard/sshguard-1.5-r1.ebuild deleted file mode 100644 index 3e1e0b03b9e4..000000000000 --- a/app-admin/sshguard/sshguard-1.5-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="2" - -inherit flag-o-matic - -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} - sys-apps/openrc - virtual/logger" - -src_prepare() { - sed -i configure -e '/OPTIMIZER_CFLAGS=/d' || die -} - -src_configure() { - # Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c - append-flags -D_BSD_SOURCE - - 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" - newinitd "${FILESDIR}"/${PN}.initd ${PN} || die - newconfd "${FILESDIR}"/${PN}.confd ${PN} || die - dodoc README Changes scripts/sshguard_backendgen.sh examples/* || die -} diff --git a/app-admin/sshguard/sshguard-1.7.0.ebuild b/app-admin/sshguard/sshguard-1.7.0.ebuild deleted file mode 100644 index 9196fdf4b631..000000000000 --- a/app-admin/sshguard/sshguard-1.7.0.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -inherit flag-o-matic - -DESCRIPTION="protects hosts from brute force attacks against ssh" -HOMEPAGE="http://sshguard.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -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} - sys-apps/openrc - virtual/logger -" - -DOCS=( - CHANGELOG.rst - README.rst - examples/sshguard.service - examples/whitelistfile.example -) - -src_prepare() { - default - - sed -i -e '/OPTIMIZER_CFLAGS=/d' configure || die -} - -src_configure() { - # Needed for usleep(3), see "nasty" in src/sshguard_logsuck.c - append-cppflags -D_DEFAULT_SOURCE - - local myconf - if use kernel_linux; then - myconf="--with-firewall=iptables" - elif use kernel_FreeBSD; then - if use ipfilter; then - myconf="--with-firewall=ipfw" - else - myconf="--with-firewall=pf" - fi - fi - - econf ${myconf} -} - -src_install() { - default - - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} -} |