net-misc/monmotha: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:16:47 +0000 (19:16 -0500)
committerAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:16:47 +0000 (19:16 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

net-misc/monmotha/files/monmotha.rc6
net-misc/monmotha/monmotha-2.3.8-r1.ebuild [new file with mode: 0644]

index 50f31b9811cd00d6cf490e32b753a4b050c1e9ef..30bcca24ab19b5a92c3e751c3a68f17c6409b1a8 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/net-misc/monmotha/monmotha-2.3.8-r1.ebuild b/net-misc/monmotha/monmotha-2.3.8-r1.ebuild
new file mode 100644 (file)
index 0000000..4f163ff
--- /dev/null
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="MonMotha IPTables-based firewall script"
+HOMEPAGE="http://monmotha.mplug.org/firewall/"
+LICENSE="GPL-2"
+
+KEYWORDS="x86 ~amd64"
+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 ""
+}