blob: 60d9f262d0901604f62f5b8d17d9913b71871246 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2005 Gentoo Foundation
# 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.14 2005/08/25 04:35:11 vapier Exp $
inherit eutils flag-o-matic
DESCRIPTION="Linux kernel (2.4+) firewall, NAT and packet mangling tools"
HOMEPAGE="http://www.iptables.org/"
SRC_URI="http://www.iptables.org/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
IUSE="ipv6 static"
# iptables is dependent on kernel sources. Strange but true.
DEPEND="virtual/linux-sources"
RDEPEND=""
src_unpack() {
replace-flags -O0 -O2
if [ -z `get-flag O` ]; then
append-flags -O2
fi
unpack ${A} ; cd ${S}
epatch ${FILESDIR}/${PV}-files
# The folowing hack is needed because ${ARCH} is "sparc" and not "sparc64"
# and epatch uses ??_${ARCH}_foo.${EPATCH_SUFFIX} when reading from directories
[ "${PROFILE_ARCH}" = "sparc64" ] && epatch ${FILESDIR}/sparc64_limit_fix.patch.bz2
chmod +x extensions/.IMQ-test*
chmod +x extensions/.childlevel-test*
chmod +x extensions/.layer7-test*
sed -i -e "s:-O2:${CFLAGS} -Iinclude:g" -e "s:/usr/local::g" -e "s:-Iinclude/::" Makefile
}
src_compile() {
# Only check_KV if /usr/src/linux exists
if [ -L ${ROOT}/usr/src/linux -o -d ${ROOT}/usr/src/linux ]; then
check_KV
fi
# prevent it from causing ICMP errors.
# http://bugs.gentoo.org/show_bug.cgi?id=23645
filter-flags "-fstack-protector"
# iptables and libraries are now installed to /sbin and /lib, so that
# systems with remote network-mounted /usr filesystems can get their
# network interfaces up and running correctly without /usr.
use ipv6 || myconf="${myconf} DO_IPV6=0"
use static && myconf="${myconf} NO_SHARED_LIBS=0"
make ${myconf} \
LIBDIR=/lib \
BINDIR=/sbin \
MANDIR=/usr/share/man \
INCDIR=/usr/include \
KERNEL_DIR=/usr/src/linux \
|| die
}
src_install() {
make DESTDIR=${D} MANDIR=/usr/share/man ${myconf} install || die
make DESTDIR=${D} ${myconf} \
LIBDIR=/usr/lib \
MANDIR=/usr/share/man \
INCDIR=/usr/include \
install-devel || die
dodoc COPYING
dodir /var/lib/iptables ; keepdir /var/lib/iptables
exeinto /etc/init.d
newexe ${FILESDIR}/${PF}.init iptables
insinto /etc/conf.d
newins ${FILESDIR}/${PF}.confd iptables
if use ipv6; then
dodir /var/lib/ip6tables ; keepdir /var/lib/ip6tables
exeinto /etc/init.d
newexe ${FILESDIR}/${PF/iptables/ip6tables}.init ip6tables
insinto /etc/conf.d
newins ${FILESDIR}/${PF/iptables/ip6tables}.confd ip6tables
fi
}
pkg_postinst() {
einfo "This package now includes an initscript which loads and saves"
einfo "rules stored in /var/lib/iptables/rules-save"
use ipv6 && einfo "and /var/lib/ip6tables/rules-save"
einfo "This location can be changed in /etc/conf.d/iptables"
einfo
einfo "If you are using the iptables initsscript you should save your"
einfo "rules using the new iptables version before rebooting."
einfo
einfo "If you are upgrading to a >=2.4.21 kernel you may need to rebuild"
einfo "iptables."
einfo
ewarn "!!! ipforwarding is now not a part of the iptables initscripts."
einfo
einfo "To enable ipforwarding at bootup:"
einfo "/etc/sysctl.conf and set net.ipv4.ip_forward = 1"
if use ipv6 ; then
einfo "and/or"
einfo " net.ipv6.ip_forward = 1"
einfo "for ipv6."
fi
}
|