diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-07-05 18:11:34 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-07-05 18:11:34 +0000 |
commit | 128efc36824fb757baca8d7798b0d94f90e22de2 (patch) | |
tree | 77474f2b67d321784a1519de2929015d7f90f315 /net-firewall | |
parent | Re-adding version 2.0 as it's required by net-news/gnewspost-0.6. (Manifest r... (diff) | |
download | gentoo-2-128efc36824fb757baca8d7798b0d94f90e22de2.tar.gz gentoo-2-128efc36824fb757baca8d7798b0d94f90e22de2.tar.bz2 gentoo-2-128efc36824fb757baca8d7798b0d94f90e22de2.zip |
Fixed problems with iptables installing into /usr/local/sbin/
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/iptables/ChangeLog | 6 | ||||
-rw-r--r-- | net-firewall/iptables/iptables-1.2.11-r2.ebuild | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/net-firewall/iptables/ChangeLog b/net-firewall/iptables/ChangeLog index 88b9fa79f5c8..c3fd90b1f5af 100644 --- a/net-firewall/iptables/ChangeLog +++ b/net-firewall/iptables/ChangeLog @@ -1,6 +1,10 @@ # 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.37 2004/07/04 11:42:58 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/ChangeLog,v 1.38 2004/07/05 18:11:34 spock Exp $ + + 05 Jul 2004; Michal Januszewski <spock@gentoo.org> + iptables-1.2.11-r2.ebuild: + Fixed problems with iptables installing into /usr/local/sbin/. 04 Jul 2004; Daniel Ahlberg <aliz@gentoo.org> iptables-1.2.11-r2.ebuild: + Fix installation path, initscript and config script. Closing #55978. diff --git a/net-firewall/iptables/iptables-1.2.11-r2.ebuild b/net-firewall/iptables/iptables-1.2.11-r2.ebuild index d5d5e383970a..011b86d71997 100644 --- a/net-firewall/iptables/iptables-1.2.11-r2.ebuild +++ b/net-firewall/iptables/iptables-1.2.11-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.11-r2.ebuild,v 1.3 2004/07/04 11:42:58 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.2.11-r2.ebuild,v 1.4 2004/07/05 18:11:34 spock Exp $ inherit eutils flag-o-matic @@ -103,6 +103,7 @@ src_install() { make DESTDIR=${D} ${myconf} \ PREFIX= \ LIBDIR=/lib \ + BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr/src/linux \ @@ -111,6 +112,7 @@ src_install() { make DESTDIR=${D} ${myconf} \ PREFIX= \ LIBDIR=/usr/lib \ + BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr/src/linux \ @@ -118,6 +120,7 @@ src_install() { else make DESTDIR=${D} ${myconf} \ LIBDIR=/lib \ + BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr \ @@ -125,6 +128,7 @@ src_install() { make DESTDIR=${D} ${myconf} \ LIBDIR=/usr/lib \ + BINDIR=/sbin \ MANDIR=/usr/share/man \ INCDIR=/usr/include \ KERNEL_DIR=/usr \ |