diff options
author | Peter Volkov <pva@gentoo.org> | 2008-02-25 18:11:55 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2008-02-25 18:11:55 +0000 |
commit | 7c7b29e8ec8c8d84a2111d0deb54528ede912458 (patch) | |
tree | cef53c87e95b1d41771b48f14d7bf937c876cde6 | |
parent | Remove, bug #192741 (diff) | |
download | gentoo-2-7c7b29e8ec8c8d84a2111d0deb54528ede912458.tar.gz gentoo-2-7c7b29e8ec8c8d84a2111d0deb54528ede912458.tar.bz2 gentoo-2-7c7b29e8ec8c8d84a2111d0deb54528ede912458.zip |
Don't depend on shorewall-shell by default, bug #211321, thank you Stefan Wimmer for report and Vieri for the fix.
(Portage version: 2.1.4.4)
-rw-r--r-- | net-firewall/shorewall-shell/ChangeLog | 6 | ||||
-rw-r--r-- | net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild | 21 |
2 files changed, 15 insertions, 12 deletions
diff --git a/net-firewall/shorewall-shell/ChangeLog b/net-firewall/shorewall-shell/ChangeLog index 9360025f4efa..7ecedb7f7d24 100644 --- a/net-firewall/shorewall-shell/ChangeLog +++ b/net-firewall/shorewall-shell/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-firewall/shorewall-shell # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-shell/ChangeLog,v 1.9 2008/02/24 18:45:36 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-shell/ChangeLog,v 1.10 2008/02/25 18:11:55 pva Exp $ + + 25 Feb 2008; <pva@gentoo.org> shorewall-shell-4.0.9.ebuild: + Don't depend on shorewall-shell by default, bug #211321, thank you Stefan + Wimmer for report and Vieri for the fix. *shorewall-shell-4.0.9 (24 Feb 2008) diff --git a/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild b/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild index 052a73eb3e44..6742056d13de 100644 --- a/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild +++ b/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild @@ -1,18 +1,17 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild,v 1.1 2008/02/24 18:45:36 pva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/shorewall-shell/shorewall-shell-4.0.9.ebuild,v 1.2 2008/02/25 18:11:55 pva Exp $ -# Choose between experimental, stable and beta: -#MY_P_TREE="development/4.0" # experimental and beta -MY_P_TREE="4.0" # stable -#MY_P_BETA="-Beta7" # only beta -MY_P_BETA="" # stable or experimental +# 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="" # upstream patch (eg. ".2") MY_P="shorewall-${PV}" DESCRIPTION="Shoreline Firewall shell-based compiler." HOMEPAGE="http://www.shorewall.net/" -SRC_URI="http://www1.shorewall.net/pub/shorewall/${MY_P_TREE}/${MY_P}${MY_P_BETA}/${P}${MY_P_BETA}.tar.bz2" +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" @@ -30,7 +29,7 @@ src_compile() { } src_install() { - cd "${WORKDIR}/${P}${MY_P_BETA}" + cd "${WORKDIR}/${P}${MY_P_PATCH}${MY_P_BETA}" PREFIX="${D}" ./install.sh || die "install.sh failed" dodoc releasenotes.txt @@ -40,9 +39,9 @@ pkg_postinst() { einfo einfo "Documentation is available at http://www.shorewall.net" einfo - einfo "In order to use the shell compiler you need to add" - einfo "SHOREWALL_COMPILER=shell" - einfo "to shorewall.conf" + elog "In order to use the shell compiler you need to add" + elog "SHOREWALL_COMPILER=shell" + elog "to shorewall.conf unless you do not have the Perl compiler." einfo einfo "Please read the included release notes for more information." einfo |