diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-10-10 13:28:39 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-10-10 13:28:39 +0000 |
commit | 042fd0dcf7e8d6ee9068fcea8a20c733b4beee05 (patch) | |
tree | f42ab0a84518854d6a489ed90ae000ccc45c73ff /net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild | |
parent | XML-LibXML-Common was merged in XML-LibXML-1.70 (diff) | |
download | gentoo-2-042fd0dcf7e8d6ee9068fcea8a20c733b4beee05.tar.gz gentoo-2-042fd0dcf7e8d6ee9068fcea8a20c733b4beee05.tar.bz2 gentoo-2-042fd0dcf7e8d6ee9068fcea8a20c733b4beee05.zip |
Version bump to 1.9.2d , bug 287237
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild')
-rw-r--r-- | net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild b/net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild new file mode 100644 index 000000000000..5b41dfa6affe --- /dev/null +++ b/net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/arno-iptables-firewall/arno-iptables-firewall-1.9.2d.ebuild,v 1.1 2009/10/10 13:28:39 vostorga Exp $ + +EAPI=1 + +DESCRIPTION="Arno's iptables firewall script" +HOMEPAGE="http://rocky.molphys.leidenuniv.nl/" +SRC_URI="http://rocky.eld.leidenuniv.nl/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+plugins" + +DEPEND=">=net-firewall/iptables-1.2.5" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${PN}_${PV} + +src_install() { + insinto /etc/arno-iptables-firewall + + # update the default location of the environment script + sed -e 's:/usr/local/share/:/usr/share/:' \ + etc/arno-iptables-firewall/firewall.conf > \ + "${T}"/firewall.conf || die + doins "${T}"/firewall.conf || die + doins etc/arno-iptables-firewall/custom-rules || die + + sed -e 's:local/::' \ + contrib/Gentoo/firewall.conf > \ + "${T}"/arno-iptables-firewall.confd || die + newconfd "${T}"/arno-iptables-firewall.confd arno-iptables-firewall \ + || die + newinitd contrib/Gentoo/rc.firewall arno-iptables-firewall || die + + dobin bin/arno-fwfilter || die + dosbin bin/arno-iptables-firewall || die + + insinto /usr/share/arno-iptables-firewall/ + doins share/arno-iptables-firewall/environment || die + + if use plugins + then + insinto /etc/arno-iptables-firewall/plugins + doins etc/arno-iptables-firewall/plugins/* || die + + insinto /usr/share/arno-iptables-firewall/plugins + doins share/arno-iptables-firewall/plugins/*.plugin || die + + exeinto /usr/share/arno-iptables-firewall/plugins + doexe share/arno-iptables-firewall/plugins/dyndns-host-open-helper \ + || die + doexe share/arno-iptables-firewall/plugins/traffic-accounting-helper \ + || die + doexe \ + share/arno-iptables-firewall/plugins/traffic-accounting-log-rotate \ + || die + doexe \ + share/arno-iptables-firewall/plugins/traffic-accounting-show || die + + docinto plugins + dodoc share/arno-iptables-firewall/plugins/*.CHANGELOG || die + fi + + dodoc CHANGELOG README || die "dodoc failed" + + doman share/man/man1/arno-fwfilter.1 \ + share/man/man8/arno-iptables-firewall.8 || die "doman failed" +} + +pkg_postinst () { + elog "You will need to configure /etc/${PN}/firewall.conf before using this" + elog "package. To start the script, run:" + elog " /etc/init.d/${PN} start" + echo + elog "If you want to start this script at boot, run:" + elog " rc-update add ${PN} default" + echo + ewarn "When you start the firewall, the default is to," + ewarn "DROP ALL existing connections! So be carefull when installing" + ewarn "on a remote host! There is a option to disable this behavior" + ewarn "for testing." + echo + ewarn "When you stop this script, all firewall rules are flushed!" + echo +} |