diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-16 21:27:29 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2019-02-16 21:27:47 +0300 |
commit | bec7f7cfc97a7daa51638f3c7cf286c5ca750291 (patch) | |
tree | 06b01b3e832c783539f614b2eafe47036ef97917 /net-firewall/ipkungfu | |
parent | kde-frameworks/kauth: Fix CVE-2019-7443 (diff) | |
download | gentoo-bec7f7cfc97a7daa51638f3c7cf286c5ca750291.tar.gz gentoo-bec7f7cfc97a7daa51638f3c7cf286c5ca750291.tar.bz2 gentoo-bec7f7cfc97a7daa51638f3c7cf286c5ca750291.zip |
net-firewall/ipkungfu: Drop old
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'net-firewall/ipkungfu')
-rw-r--r-- | net-firewall/ipkungfu/Manifest | 1 | ||||
-rw-r--r-- | net-firewall/ipkungfu/files/nat_ftp.patch | 11 | ||||
-rw-r--r-- | net-firewall/ipkungfu/ipkungfu-0.5.2-r2.ebuild | 59 |
3 files changed, 0 insertions, 71 deletions
diff --git a/net-firewall/ipkungfu/Manifest b/net-firewall/ipkungfu/Manifest index 1c689fd6b12c..6fc13f1229f9 100644 --- a/net-firewall/ipkungfu/Manifest +++ b/net-firewall/ipkungfu/Manifest @@ -1,2 +1 @@ -DIST ipkungfu-0.5.2.tgz 35985 BLAKE2B de3bda12956ad97068f1ba00c98ca6d2f3fee5a3fb3f7ee914e5628e6f695fcb02c93141826b703ff46060d18bc1d42d865c3f54bda2a6629e18b28fd6cdbaf7 SHA512 9aaef341b85a0788d65dd6d341a94319cb8083a57f06645c5ad938dabccd53abbb590e8eddd3a9172f9b226780cc9e6e1f906da668f6a80c3a6fb0a9be081046 DIST ipkungfu-0.6.1.tar.bz2 104516 BLAKE2B 94ff9942deb072a7dc372c89e4238fcfdbd29d69e3afe26b05b9d70cfd0058da731cfe8910b89a04ee4d765f24277b670fc8b932373b66b512b5237cc68582f1 SHA512 bc1df9894d36d40f5394cbaef6f7cc9f95a8eaaf45a03d1c3a809bc5a7a5ae685c8cf6a27363ab83f6f817a0d44277b28de8bd40230d29c5700dda1d52e231b7 diff --git a/net-firewall/ipkungfu/files/nat_ftp.patch b/net-firewall/ipkungfu/files/nat_ftp.patch deleted file mode 100644 index db919c5565e1..000000000000 --- a/net-firewall/ipkungfu/files/nat_ftp.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- ipkungfu 2003-10-03 13:05:59.000000000 -0400 -+++ ipkungfu 2004-02-09 16:34:37.000000000 -0500 -@@ -138,7 +138,7 @@ - if [ $INIT != 1 ] ; then - echo "Loading FTP NAT module..." - fi -- $MODPROBE ip_nat_irc -+ $MODPROBE ip_nat_ftp - fi - fi - } diff --git a/net-firewall/ipkungfu/ipkungfu-0.5.2-r2.ebuild b/net-firewall/ipkungfu/ipkungfu-0.5.2-r2.ebuild deleted file mode 100644 index 1febf0b58fef..000000000000 --- a/net-firewall/ipkungfu/ipkungfu-0.5.2-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -DESCRIPTION="A nice iptables firewall script" -HOMEPAGE="http://www.linuxkungfu.org/" -SRC_URI="http://www.linuxkungfu.org/ipkungfu/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86" -IUSE="" - -DEPEND="net-firewall/iptables" -RDEPEND="${DEPEND} - virtual/logger" - -src_unpack() { - unpack ${A} - - # Patch ipkungfu to load the right module for ip_nat_ftp - # Fixes bug #42443. Thanks to George L. Emigh <george@georgelemigh.com> - cd "${WORKDIR}"/${P} && epatch "${FILESDIR}"/nat_ftp.patch - - # man page comes bzip2'd, so bunzip2 it. - cd "${WORKDIR}"/${P}/files - bunzip2 ipkungfu.8.bz2 -} - -src_install() { - - # Package comes with a hard coded shell script, so here we - # replicate what they did, but so it's compatible with portage. - - # Install shell script executable - dosbin ipkungfu - - # Install Gentoo init script - newinitd "${FILESDIR}"/ipkungfu.init ipkungfu - - # Install config files into /etc - dodir /etc/ipkungfu - insinto /etc/ipkungfu - doins files/*.conf - - # Install man page - doman files/ipkungfu.8 - - # Install documentation - dodoc COPYRIGHT Changelog FAQ INSTALL README gpl.txt -} - -pkg_postinst() { - einfo "Be sure to edit the config files" - einfo "in /etc/ipkungfu before running" -} |