| 1 |
# Copyright 1999-2011 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-firewall/iptables/iptables-1.4.11.1-r2.ebuild,v 1.1 2011/06/16 12:53:26 pva Exp $ |
| 4 |
|
| 5 |
EAPI="4" |
| 6 |
|
| 7 |
# Force users doing their own patches to install their own tools |
| 8 |
AUTOTOOLS_AUTO_DEPEND=no |
| 9 |
|
| 10 |
inherit eutils toolchain-funcs autotools |
| 11 |
|
| 12 |
DESCRIPTION="Linux kernel (2.4+) firewall, NAT and packet mangling tools" |
| 13 |
HOMEPAGE="http://www.iptables.org/" |
| 14 |
SRC_URI="http://iptables.org/projects/iptables/files/${P}.tar.bz2" |
| 15 |
|
| 16 |
LICENSE="GPL-2" |
| 17 |
SLOT="0" |
| 18 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" |
| 19 |
IUSE="ipv6 netlink" |
| 20 |
|
| 21 |
COMMON_DEPEND=" |
| 22 |
netlink? ( net-libs/libnfnetlink ) |
| 23 |
" |
| 24 |
DEPEND=" |
| 25 |
${COMMON_DEPEND} |
| 26 |
virtual/os-headers |
| 27 |
sys-devel/automake |
| 28 |
" |
| 29 |
RDEPEND=" |
| 30 |
${COMMON_DEPEND} |
| 31 |
" |
| 32 |
|
| 33 |
src_prepare() { |
| 34 |
# Only run autotools if user patched something |
| 35 |
epatch_user && eautoreconf || elibtoolize |
| 36 |
} |
| 37 |
|
| 38 |
src_configure() { |
| 39 |
sed -i \ |
| 40 |
-e "/nfnetlink=[01]/s:=[01]:=$(use netlink && echo 1 || echo 0):" \ |
| 41 |
configure || die |
| 42 |
econf \ |
| 43 |
--sbindir=/sbin \ |
| 44 |
--libexecdir=/$(get_libdir) \ |
| 45 |
--enable-devel \ |
| 46 |
--enable-libipq \ |
| 47 |
--enable-shared \ |
| 48 |
--enable-static \ |
| 49 |
$(use_enable ipv6) |
| 50 |
} |
| 51 |
|
| 52 |
src_compile() { |
| 53 |
emake V=1 |
| 54 |
} |
| 55 |
|
| 56 |
src_install() { |
| 57 |
emake install DESTDIR="${D}" |
| 58 |
dodoc INCOMPATIBILITIES iptables/iptables.xslt |
| 59 |
|
| 60 |
# all the iptables binaries are in /sbin, so might as well |
| 61 |
# put these small files in with them |
| 62 |
into / |
| 63 |
dosbin iptables/iptables-apply |
| 64 |
dosym iptables-apply /sbin/ip6tables-apply |
| 65 |
doman iptables/iptables-apply.8 |
| 66 |
|
| 67 |
insinto /usr/include |
| 68 |
doins include/iptables.h $(use ipv6 && echo include/ip6tables.h) |
| 69 |
insinto /usr/include/iptables |
| 70 |
doins include/iptables/internal.h |
| 71 |
|
| 72 |
keepdir /var/lib/iptables |
| 73 |
newinitd "${FILESDIR}"/${PN}-1.4.11.init iptables |
| 74 |
newconfd "${FILESDIR}"/${PN}-1.3.2.confd iptables |
| 75 |
if use ipv6 ; then |
| 76 |
keepdir /var/lib/ip6tables |
| 77 |
newinitd "${FILESDIR}"/iptables-1.4.11.init ip6tables |
| 78 |
newconfd "${FILESDIR}"/ip6tables-1.3.2.confd ip6tables |
| 79 |
fi |
| 80 |
|
| 81 |
# Move important libs to /lib |
| 82 |
gen_usr_ldscript -a ip{4,6}tc ipq iptc xtables |
| 83 |
find "${ED}" -type f -name '*.la' -exec rm -rf '{}' '+' || die "la removal failed" |
| 84 |
} |