diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-02 09:45:56 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2003-05-02 09:45:56 +0000 |
commit | b2f6631d4d5032d29ec004e248d5c8595a77d981 (patch) | |
tree | 08a7b771215f0bd9ce849f1d17e01b48c66f1442 /net-firewall/iptables | |
parent | openmosix.config resists now in /etc/openmosix (diff) | |
download | historical-b2f6631d4d5032d29ec004e248d5c8595a77d981.tar.gz historical-b2f6631d4d5032d29ec004e248d5c8595a77d981.tar.bz2 historical-b2f6631d4d5032d29ec004e248d5c8595a77d981.zip |
Fixed optimization issues
Diffstat (limited to 'net-firewall/iptables')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/iptables/files/1.2.8-files/03_all_no_optimize_fix.patch.bz2 | bin | 549 -> 0 bytes | |||
-rw-r--r-- | net-firewall/iptables/files/1.2.8-files/03_hppa_gentoo.patch.bz2 (renamed from net-firewall/iptables/files/1.2.8-files/04_hppa_gentoo.patch.bz2) | 0 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.2.8.ebuild | 9 |
4 files changed, 11 insertions, 3 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index c21b3fa29fa4..6b3d252edc7c 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/iptables # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.8 2003/04/19 12:45:59 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.9 2003/05/02 09:45:56 aliz Exp $ + + 02 May 2003; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.8.ebuild : + Force -O2 if no -O flag is set. Remove 03_all_no_optimize_fix.patch.bz2. 19 Apr 2003; Daniel Ahlberg <aliz@gentoo.org> : Removed 03_all_mac_fix.patch.bz2 becuse it was fixed in 1.2.8. diff --git a/net-firewall/iptables/files/1.2.8-files/03_all_no_optimize_fix.patch.bz2 b/net-firewall/iptables/files/1.2.8-files/03_all_no_optimize_fix.patch.bz2 Binary files differdeleted file mode 100644 index 7bb811fbbb16..000000000000 --- a/net-firewall/iptables/files/1.2.8-files/03_all_no_optimize_fix.patch.bz2 +++ /dev/null diff --git a/net-firewall/iptables/files/1.2.8-files/04_hppa_gentoo.patch.bz2 b/net-firewall/iptables/files/1.2.8-files/03_hppa_gentoo.patch.bz2 index fc5d267a7ba4..fc5d267a7ba4 100644 --- a/net-firewall/iptables/files/1.2.8-files/04_hppa_gentoo.patch.bz2 +++ b/net-firewall/iptables/files/1.2.8-files/03_hppa_gentoo.patch.bz2 diff --git a/net-firewall/iptables/iptables-1.2.8.ebuild b/net-firewall/iptables/iptables-1.2.8.ebuild index 1b0bb98c3c48..945c739da4ba 100644 --- a/net-firewall/iptables/iptables-1.2.8.ebuild +++ b/net-firewall/iptables/iptables-1.2.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.8.ebuild,v 1.1 2003/04/19 12:18:36 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.8.ebuild,v 1.2 2003/05/02 09:45:56 aliz Exp $ -inherit eutils +inherit eutils flag-o-matic IUSE="" @@ -19,6 +19,11 @@ LICENSE="GPL-2" DEPEND="virtual/os-headers" src_unpack() { + + if [ -z $( get-flag O ) ]; then + append-flags -O2 + fi + unpack ${A} cd ${S} |