diff options
Diffstat (limited to 'net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild')
-rw-r--r-- | net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild b/net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild deleted file mode 100644 index 6fe2f7c9fcf7..000000000000 --- a/net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipp2p/ipp2p-0.8.2-r2.ebuild,v 1.6 2007/03/10 11:11:19 mrness Exp $ - -inherit linux-mod eutils - -DESCRIPTION="Netfilter module for dealing with P2P Applications." -HOMEPAGE="http://www.ipp2p.org/index_en.html" -SRC_URI="http://www.ipp2p.org/downloads/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="virtual/modutils - >=net-firewall/iptables-1.2.11" - -DEPEND="${RDEPEND} - virtual/linux-sources" - -pkg_setup() { - CONFIG_CHECK="NETFILTER" - NETFILTER_ERROR="Your kernel is not configured to support Netfilter." - MODULE_NAMES="ipt_ipp2p(${PN}:${S}:${S})" - - linux-mod_pkg_setup -} - -src_unpack() { - unpack ${A} - - cd "${S}" - epatch "${FILESDIR}"/${P}-matchsize.patch - convert_to_m Makefile - - sed -i -e "s/^IPTABLES_VERSION/#IPTABLES_VERSION/" Makefile - if has_version '>=net-firewall/iptables-1.3.6' ; then - sed -i -e "s/ld -shared/\$\(CC\) -shared/" Makefile - fi -} - -src_compile() { - local IPTABLES_VERSION="$(/sbin/iptables --version | cut -f2 -dv)" - emake CFLAGS="${CFLAGS}" CC="$(tc-getCC)" \ - IPTABLES_SRC="/usr" IPTABLES_VERSION="${IPTABLES_VERSION}" libipt_ipp2p.so \ - || die "Failed to build iptables module" - - local myARCH="${ARCH}" - ARCH="$(tc-arch-kernel)" - emake KERNEL_SRC="${KV_DIR}" \ - IPTABLES_SRC="/usr" IPTABLES_VERSION="${IPTABLES_VERSION}" \ - || die "Failed to build kernel module." - ARCH="${myARCH}" -} - -src_install() { - exeinto /$(get_libdir)/iptables - doexe libipt_ipp2p.so - - dodoc README - linux-mod_src_install -} - -pkg_postinst() { - linux-mod_pkg_postinst -} |