diff options
-rw-r--r-- | net-misc/arpstar/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/arpstar/arpstar-0.5.5-r1.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/net-misc/arpstar/ChangeLog b/net-misc/arpstar/ChangeLog index f9f8e118a8a3..12c3e7a964ad 100644 --- a/net-misc/arpstar/ChangeLog +++ b/net-misc/arpstar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/arpstar -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/ChangeLog,v 1.7 2006/08/08 13:26:22 phreak Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/ChangeLog,v 1.8 2007/02/25 09:21:37 genstef Exp $ + + 25 Feb 2007; <genstef@gentoo.org> arpstar-0.5.5-r1.ebuild: + use KV_DIR only after linux-mod_pkg_setup, bug 168051 08 Aug 2006; Christian Heim <phreak@gentoo.org> arpstar-0.5.5-r1.ebuild: Including cleanups from Barbu Eros Iulian. diff --git a/net-misc/arpstar/arpstar-0.5.5-r1.ebuild b/net-misc/arpstar/arpstar-0.5.5-r1.ebuild index 26122d70840b..cd4ae97334a4 100644 --- a/net-misc/arpstar/arpstar-0.5.5-r1.ebuild +++ b/net-misc/arpstar/arpstar-0.5.5-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/arpstar-0.5.5-r1.ebuild,v 1.3 2006/08/08 13:26:22 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/arpstar-0.5.5-r1.ebuild,v 1.4 2007/02/25 09:21:37 genstef Exp $ inherit eutils linux-mod @@ -16,9 +16,13 @@ S=${WORKDIR} MODULE_NAMES="arpstar(net:)" BUILD_TARGETS=" " -BUILD_PARAMS="KDIR=${KV_DIR}" CONFIG_CHECK="NETFILTER" +pkg_setup() { + linux-mod_pkg_setup + BUILD_PARAMS="KDIR=${KV_DIR}" +} + src_unpack() { unpack ${A} epatch "${FILESDIR}"/${P}-2.6.16.patch || die "epatch failed" |