diff options
Diffstat (limited to 'net-firewall/shorewall/shorewall-2.0.3a.ebuild')
-rw-r--r-- | net-firewall/shorewall/shorewall-2.0.3a.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-firewall/shorewall/shorewall-2.0.3a.ebuild b/net-firewall/shorewall/shorewall-2.0.3a.ebuild new file mode 100644 index 000000000000..d8adbca29538 --- /dev/null +++ b/net-firewall/shorewall/shorewall-2.0.3a.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-2.0.3a.ebuild,v 1.1 2004/07/01 12:04:13 mholzer Exp $ + +IUSE="doc" + +MY_P_DOCS=${P/${PN}/${PN}-docs-html} + +DESCRIPTION="Full state iptables firewall" +HOMEPAGE="http://www.shorewall.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tgz + doc? ( mirror://sourceforge/${PN}/${MY_P_DOCS}.tgz )" +RESTRICT="nomirror" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64" + +DEPEND="virtual/glibc + >=net-firewall/iptables-1.2.4 + sys-apps/iproute2" + +S=${WORKDIR}/${MY_P} + +src_install() { + keepdir /var/lib/shorewall + + cd ${WORKDIR}/${P} + PREFIX=${D} ./install.sh || die + + exeinto /etc/init.d + newexe ${FILESDIR}/shorewall shorewall + dodoc COPYING INSTALL changelog.txt releasenotes.txt + if use doc; then + cd ${WORKDIR}/${MY_P_DOCS} + dohtml -r * + fi +} + +pkg_postinst() { + einfo + einfo "Read the documentation from http://www.shorewall.net" + einfo "available at /usr/share/doc/${PF}/html/index.htm" + einfo "Do not blindly start shorewall, edit the files in /etc/shorewall first" + einfo +} |