diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-02-25 09:21:37 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-02-25 09:21:37 +0000 |
commit | e82ad28395ce6caa0e3b6bb9a82b5c644add86bd (patch) | |
tree | 3bd975ceec7a354a7d90cd270dde7cbc06ff5efa /net-misc/arpstar | |
parent | use KV_DIR only after linux-mod_pkg_setup, bug 168051 (diff) | |
download | gentoo-2-e82ad28395ce6caa0e3b6bb9a82b5c644add86bd.tar.gz gentoo-2-e82ad28395ce6caa0e3b6bb9a82b5c644add86bd.tar.bz2 gentoo-2-e82ad28395ce6caa0e3b6bb9a82b5c644add86bd.zip |
use KV_DIR only after linux-mod_pkg_setup, bug 168051
(Portage version: 2.1.2-r9)
Diffstat (limited to 'net-misc/arpstar')
-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" |