summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-02-02 17:36:12 +0100
committerMichał Górny <mgorny@gentoo.org>2024-02-02 17:38:57 +0100
commit7b6b7c29891e85cef704ceb8a9b1be45aace7c9b (patch)
treeb08d7a0255a892a0f5828c3bf6927e6a6eea77e5
parentnet-firewall/sanewall: Remove last-rited pkg (diff)
downloadgentoo-7b6b7c29891e85cef704ceb8a9b1be45aace7c9b.tar.gz
gentoo-7b6b7c29891e85cef704ceb8a9b1be45aace7c9b.tar.bz2
gentoo-7b6b7c29891e85cef704ceb8a9b1be45aace7c9b.zip
net-misc/monmotha: Remove last-rited pkg
Closes: https://bugs.gentoo.org/920658 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--net-misc/monmotha/Manifest1
-rw-r--r--net-misc/monmotha/files/monmotha.rc640
-rw-r--r--net-misc/monmotha/metadata.xml5
-rw-r--r--net-misc/monmotha/monmotha-2.3.8-r1.ebuild46
-rw-r--r--profiles/package.mask6
5 files changed, 0 insertions, 98 deletions
diff --git a/net-misc/monmotha/Manifest b/net-misc/monmotha/Manifest
deleted file mode 100644
index 44c8b1906d66..000000000000
--- a/net-misc/monmotha/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rc.firewall-2.3.8 56204 BLAKE2B d699d5eb2c7efdfe258a2f38e2ffc1bb1e568c260c90a77a0fd1d27fbbe5b08ecefcc99d798fd210133ff8f7943fddacfc06a754044434e7525cd6449a92dc46 SHA512 ccdd3427a274204c697a64a8936d4311cb34fbb66738c6afc4c242baad01407d1a36adac7a73b24b432943cd7cec05c9c1d9b2d4845b8b132bd61378c0c2e098
diff --git a/net-misc/monmotha/files/monmotha.rc6 b/net-misc/monmotha/files/monmotha.rc6
deleted file mode 100644
index 9bd0eeb8e2b1..000000000000
--- a/net-misc/monmotha/files/monmotha.rc6
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting the MonMotha Firewall"
- /etc/monmotha/monmotha > /var/log/monmotha.log
- eend $?
-}
-
-stop() {
- ebegin "Stopping the MonMotha Firewall"
-
- # RESET ALL IPTABLES STUFF
-
- /sbin/iptables -P INPUT ACCEPT
- /sbin/iptables -P FORWARD ACCEPT
- /sbin/iptables -P OUTPUT ACCEPT
-
- /sbin/iptables -t nat -P PREROUTING ACCEPT
- /sbin/iptables -t nat -P POSTROUTING ACCEPT
- /sbin/iptables -t nat -P OUTPUT ACCEPT
-
- /sbin/iptables -t mangle -P PREROUTING ACCEPT
- /sbin/iptables -t mangle -P OUTPUT ACCEPT
-
- /sbin/iptables -F
- /sbin/iptables -t nat -F
- /sbin/iptables -t mangle -F
-
- /sbin/iptables -X
- /sbin/iptables -t nat -X
- /sbin/iptables -t mangle -X
-
- eend $?
-}
diff --git a/net-misc/monmotha/metadata.xml b/net-misc/monmotha/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/net-misc/monmotha/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/net-misc/monmotha/monmotha-2.3.8-r1.ebuild b/net-misc/monmotha/monmotha-2.3.8-r1.ebuild
deleted file mode 100644
index 00c63fadd917..000000000000
--- a/net-misc/monmotha/monmotha-2.3.8-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="MonMotha IPTables-based firewall script"
-HOMEPAGE="http://monmotha.mplug.org/firewall/"
-LICENSE="GPL-2"
-
-KEYWORDS="~amd64 x86"
-IUSE=""
-SLOT="0"
-RDEPEND=">=net-firewall/iptables-1.2.5"
-
-MY_PVP=(${PV//[-\._]/ })
-
-S=${WORKDIR}
-
-SRC_URI="http://monmotha.mplug.org/~monmotha/firewall/firewall/${MY_PVP[0]}.${MY_PVP[1]}/rc.firewall-${PV}"
-
-src_unpack() {
- cp "${DISTDIR}"/${A} "${S}"/
-}
-
-src_install() {
- newinitd "${FILESDIR}/monmotha.rc6" monmotha
- exeinto /etc/monmotha
- newexe "${S}/rc.firewall-${PV}" monmotha
-}
-
-pkg_postinst() {
- einfo "Don't forget to add the 'monmotha' startup script to your default"
- einfo "runlevel by typing the following command:"
- einfo ""
- einfo " rc-update add monmotha default"
- einfo ""
- einfo "You need to edit /etc/monmotha/monmotha before using"
- einfo "it. Enter the right vars in the file, start the script"
- einfo "by typing: '/etc/init.d/monmotha start' and it should work."
- einfo ""
- einfo "Don't forget to change the path to iptables!!!"
- einfo ""
- einfo "Note: If You are stopping the firewall, all iptables rulesets"
- einfo "will be flushed!!!"
- einfo ""
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index 4d54a5da29d5..444387e980a4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -203,12 +203,6 @@ media-sound/daudio
dev-python/pydocstyle
dev-python/pylama
-# Michał Górny <mgorny@gentoo.org> (2023-12-31)
-# Homepage gone. Last updated in 2005. There are many alternatives
-# available in net-firewall/*.
-# Removal on 2024-01-30. Bug #920658.
-net-misc/monmotha
-
# Andreas Sturmlechner <asturm@gentoo.org> (2023-12-25)
# Masked until KF6 is unmasked.
~media-libs/mpvqt-1.0.0