diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-07-11 16:43:37 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-07-11 16:43:37 +0000 |
commit | bda4002e7995b4b7a754310000d7e7127c537af5 (patch) | |
tree | 9985bcf0d11d2a0f19130d9c05d9efab62811673 /net-firewall/shorewall | |
parent | Broken manifest. (diff) | |
download | gentoo-2-bda4002e7995b4b7a754310000d7e7127c537af5.tar.gz gentoo-2-bda4002e7995b4b7a754310000d7e7127c537af5.tar.bz2 gentoo-2-bda4002e7995b4b7a754310000d7e7127c537af5.zip |
Version bump. Bug #112942. Thanks to Vieri <rentorbuy at yahoo.com>
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'net-firewall/shorewall')
-rw-r--r-- | net-firewall/shorewall/ChangeLog | 7 | ||||
-rw-r--r-- | net-firewall/shorewall/files/digest-shorewall-3.0.8 | 6 | ||||
-rw-r--r-- | net-firewall/shorewall/shorewall-3.0.8.ebuild | 65 |
3 files changed, 77 insertions, 1 deletions
diff --git a/net-firewall/shorewall/ChangeLog b/net-firewall/shorewall/ChangeLog index fdd435c671e0..292cd1065e0c 100644 --- a/net-firewall/shorewall/ChangeLog +++ b/net-firewall/shorewall/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-firewall/shorewall # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.107 2006/05/30 15:41:25 gustavoz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/ChangeLog,v 1.108 2006/07/11 16:43:37 ticho Exp $ + +*shorewall-3.0.8 (11 Jul 2006) + + 11 Jul 2006; <ticho@gentoo.org> +shorewall-3.0.8.ebuild: + Version bump. Bug #112942. Thanks to Vieri <rentorbuy at yahoo.com> 30 May 2006; Gustavo Zacarias <gustavoz@gentoo.org> shorewall-3.0.6.ebuild: diff --git a/net-firewall/shorewall/files/digest-shorewall-3.0.8 b/net-firewall/shorewall/files/digest-shorewall-3.0.8 new file mode 100644 index 000000000000..fa23c99366c4 --- /dev/null +++ b/net-firewall/shorewall/files/digest-shorewall-3.0.8 @@ -0,0 +1,6 @@ +MD5 04ce2c117eaaa8d5f78da37c89efb326 shorewall-3.0.8.tgz 205265 +RMD160 0da7fce8a09fb4d8a420f456488fc2789b9d9e57 shorewall-3.0.8.tgz 205265 +SHA256 5750f7e972b2633809dd4d999a9964fd3d50e5ec8a9116e45d0b017be2ca2b1b shorewall-3.0.8.tgz 205265 +MD5 85d06ca66bf83dafea191c75b863260f shorewall-docs-html-3.0.8.tgz 3695934 +RMD160 fbe28701867e890fb0cfc516657da90b12ec26f6 shorewall-docs-html-3.0.8.tgz 3695934 +SHA256 a6520eb2ae61baf80dfe98cade90de11f90525c76c0e63baa6ec5644499fd3df shorewall-docs-html-3.0.8.tgz 3695934 diff --git a/net-firewall/shorewall/shorewall-3.0.8.ebuild b/net-firewall/shorewall/shorewall-3.0.8.ebuild new file mode 100644 index 000000000000..3ab981c29c05 --- /dev/null +++ b/net-firewall/shorewall/shorewall-3.0.8.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall/shorewall-3.0.8.ebuild,v 1.1 2006/07/11 16:43:37 ticho Exp $ + +MY_P_DOCS="${P/${PN}/${PN}-docs-html}" + +DESCRIPTION="Full state iptables firewall" +HOMEPAGE="http://www.shorewall.net/" +SRC_URI="http://shorewall.net/pub/${PN}/3.0/${P}/${P}.tgz + doc? ( http://shorewall.net/pub/${PN}/3.0/${P}/${MY_P_DOCS}.tgz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc" + +DEPEND=">=net-firewall/iptables-1.2.4 + sys-apps/iproute2" + +src_compile() { + einfo "Nothing to compile." +} + +src_install() { + keepdir /var/lib/shorewall + + PREFIX="${D}" ./install.sh || die "install.sh failed" + newinitd "${FILESDIR}"/shorewall-r1 shorewall || die "doinitd failed" + + dodoc changelog.txt releasenotes.txt + if use doc; then + cd "${WORKDIR}/${MY_P_DOCS}" + # install documentation + dohtml -r * + dosym Documentation_Index.html "/usr/share/doc/${PF}/html/index.htm" + # install samples + cp -pR "${S}/Samples" "${D}/usr/share/doc/${PF}" + fi +} + +pkg_postinst() { + einfo + if use doc ; then + einfo "Documentation is available at /usr/share/doc/${PF}/html." + einfo "Samples are available at /usr/share/doc/${PF}/Samples." + else + einfo "Documentation is available at http://www.shorewall.net" + fi + einfo "Do not blindly start shorewall, edit the files in /etc/shorewall first" + einfo "At the very least, you must change 'STARTUP_ENABLED' in shorewall.conf" + einfo + einfo "If you intend to use the 2.6 IPSEC Support, you must retrieve the" + einfo "kernel patches from http://shorewall.net/pub/shorewall/contrib/IPSEC/" + einfo "or install kernel 2.6.16+ and compile it with support for policy match." + einfo + einfo "Be aware that version 3 differs substantially from previous releases." + einfo "Information on upgrading is available at:" + einfo "http://www.shorewall.net/upgrade_issues.htm" + einfo + einfo "Known problems:" + einfo "http://shorewall.net/pub/${PN}/3.0/${P}/known_problems.txt" + einfo + einfo "Whether upgrading or installing you should run shorewall check," + einfo "correct any errors found and run shorewall restart|start" +} |