diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-05-10 14:07:04 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-05-10 14:07:04 +0000 |
commit | 2db383cb2155bbb2b0bd4e9ce6631426e5f04197 (patch) | |
tree | 0f29a9088f9dc49b4db750d637daeaf69b0f0db4 /net-firewall | |
parent | Closing #46698 (diff) | |
download | historical-2db383cb2155bbb2b0bd4e9ce6631426e5f04197.tar.gz historical-2db383cb2155bbb2b0bd4e9ce6631426e5f04197.tar.bz2 historical-2db383cb2155bbb2b0bd4e9ce6631426e5f04197.zip |
Closing #44204.
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 5 | ||||
-rw-r--r-- | net-firewall/iptables/Manifest | 4 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.2.9-r1.ebuild | 6 |
3 files changed, 11 insertions, 4 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index 651799162958..054d65d43c71 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-firewall/iptables # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.24 2004/04/25 16:30:35 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.25 2004/05/10 14:07:04 aliz Exp $ + + 10 May 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.9-r1.ebuild: + CFLAGS must have -O flag, closing #44204 *iptables-1.2.9-r1 (25 Apr 2004) diff --git a/net-firewall/iptables/Manifest b/net-firewall/iptables/Manifest index 95a464e5c4cb..a1d9656067e1 100644 --- a/net-firewall/iptables/Manifest +++ b/net-firewall/iptables/Manifest @@ -1,7 +1,7 @@ MD5 54906c7ffcd304a8202c5058287041ac iptables-1.2.7a-r3.ebuild 1968 MD5 c0801b41abdd37d9dc1f494abf53494e iptables-1.2.9.ebuild 2718 -MD5 176e2ef87bdd89a3d5bc965208c536e6 iptables-1.2.9-r1.ebuild 3347 -MD5 154bdcd43a0b3c1555a157f9d3b53866 ChangeLog 10024 +MD5 e7909016b20da914182958eb0a77a6f9 iptables-1.2.9-r1.ebuild 3399 +MD5 1c9ccf5b4271e11739863bc019c0f0e4 ChangeLog 10142 MD5 37236013e0d26d43c6bff35a8a48e8ec metadata.xml 220 MD5 f876be872ec78bc824f2503059338d8d files/iptables.confd 382 MD5 04a4f2f4455c1c5df002cde52d354dee files/ip6tables.init 2108 diff --git a/net-firewall/iptables/iptables-1.2.9-r1.ebuild b/net-firewall/iptables/iptables-1.2.9-r1.ebuild index fb91c4fb1711..2ea8956d9d4e 100644 --- a/net-firewall/iptables/iptables-1.2.9-r1.ebuild +++ b/net-firewall/iptables/iptables-1.2.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 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.9-r1.ebuild,v 1.2 2004/04/28 05:05:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.9-r1.ebuild,v 1.3 2004/05/10 14:07:04 aliz Exp $ inherit eutils flag-o-matic @@ -19,6 +19,10 @@ DEPEND="virtual/linux-sources" src_unpack() { replace-flags -O0 -O2 + if [ -z `get-flag O` ]; then + append-flags -O2 + fi + unpack ${A} ; cd ${S} epatch ${FILESDIR}/${PV}-files |