diff options
author | Peter Volkov <pva@gentoo.org> | 2008-02-27 15:40:07 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-02-27 15:40:07 +0000 |
commit | d8385787a7dbe91d07d9843b29b6f9e0225bb767 (patch) | |
tree | 3f759f77349b1028e98746ffc24433358e063bbd /net-firewall/shorewall-perl | |
parent | rename for bug #211648 (diff) | |
download | gentoo-2-d8385787a7dbe91d07d9843b29b6f9e0225bb767.tar.gz gentoo-2-d8385787a7dbe91d07d9843b29b6f9e0225bb767.tar.bz2 gentoo-2-d8385787a7dbe91d07d9843b29b6f9e0225bb767.zip |
Updating patch level to fix bridging issues, bug #211585, reported Stefan Wimmer, fixed by Vieri.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-firewall/shorewall-perl')
-rw-r--r-- | net-firewall/shorewall-perl/ChangeLog | 8 | ||||
-rw-r--r-- | net-firewall/shorewall-perl/shorewall-perl-4.0.9-r1.ebuild | 53 |
2 files changed, 60 insertions, 1 deletions
diff --git a/net-firewall/shorewall-perl/ChangeLog b/net-firewall/shorewall-perl/ChangeLog index 551cde07ccbc..b0b8ebf5b081 100644 --- a/net-firewall/shorewall-perl/ChangeLog +++ b/net-firewall/shorewall-perl/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-firewall/shorewall-perl # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-perl/ChangeLog,v 1.12 2008/02/25 18:10:27 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-perl/ChangeLog,v 1.13 2008/02/27 15:40:07 pva Exp $ + +*shorewall-perl-4.0.9-r1 (27 Feb 2008) + + 27 Feb 2008; <pva@gentoo.org> +shorewall-perl-4.0.9-r1.ebuild: + Updating patch level to fix bridging issues, bug #211585, reported Stefan + Wimmer, fixed by Vieri. 25 Feb 2008; <pva@gentoo.org> shorewall-perl-4.0.9.ebuild: Don't depend on shorewall-shell by default, bug #211321, thank you Stefan diff --git a/net-firewall/shorewall-perl/shorewall-perl-4.0.9-r1.ebuild b/net-firewall/shorewall-perl/shorewall-perl-4.0.9-r1.ebuild new file mode 100644 index 000000000000..2557ef7339f1 --- /dev/null +++ b/net-firewall/shorewall-perl/shorewall-perl-4.0.9-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-perl/shorewall-perl-4.0.9-r1.ebuild,v 1.1 2008/02/27 15:40:07 pva Exp $ + +# Select version (stable, RC, Beta, upstream patched): +MY_P_TREE="4.0" # stable/devel (eg. "4.0" or "development/4.0") +MY_P_BETA="" # stable or experimental (eg. "-RC1" or "-Beta4") +MY_P_PATCH=".1" # upstream patch (eg. ".2") + +MY_P="shorewall-${PV}" + +DESCRIPTION="Shoreline Firewall Perl-based compiler that allows faster compilation and execution." +HOMEPAGE="http://www.shorewall.net/" +SRC_URI="http://www1.shorewall.net/pub/shorewall/${MY_P_TREE}/${MY_P}${MY_P_BETA}/${P}${MY_P_PATCH}${MY_P_BETA}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +IUSE="" + +DEPEND="net-firewall/iptables + sys-apps/iproute2 + dev-lang/perl + !<net-firewall/shorewall-4.0" + +PDEPEND="~net-firewall/shorewall-common-${PV}" + +src_compile() { + einfo "Nothing to compile." +} + +src_install() { + cd "${WORKDIR}/${P}${MY_P_PATCH}${MY_P_BETA}" + PREFIX="${D}" ./install.sh || die "install.sh failed" + + dodoc releasenotes.txt +} + +pkg_postinst() { + einfo + einfo "Documentation is available at http://www.shorewall.net" + einfo + elog "In order to use the Perl compiler you need to add" + elog "SHOREWALL_COMPILER=perl" + elog "to shorewall.conf unless you did not install the Shell compiler." + einfo + einfo "Please read the included release notes for more information." + einfo + einfo "Known problems:" + einfo "http://www1.shorewall.net/pub/shorewall/${MY_P_TREE}/${MY_P}${MY_P_BETA}/known_problems.txt" + einfo +} |