diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2005-03-04 14:34:37 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2005-03-04 14:34:37 +0000 |
commit | e65170adbec1764fb3a65122a52ac7f683faa081 (patch) | |
tree | a8c728af209561c6d1164e99bdb8bb5269849818 /net-misc/arpstar | |
parent | depend on xml-commons readded (diff) | |
download | gentoo-2-e65170adbec1764fb3a65122a52ac7f683faa081.tar.gz gentoo-2-e65170adbec1764fb3a65122a52ac7f683faa081.tar.bz2 gentoo-2-e65170adbec1764fb3a65122a52ac7f683faa081.zip |
Updated to depend on CONFIG_NETFILTER, added docs and also let it compile on 2.6.11 thanks to John Shaw <jtshaw@jtshaw.com> in bug 82757
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/arpstar')
-rw-r--r-- | net-misc/arpstar/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/arpstar/arpstar-0.5.0.ebuild | 13 |
2 files changed, 15 insertions, 4 deletions
diff --git a/net-misc/arpstar/ChangeLog b/net-misc/arpstar/ChangeLog index 9fa7c2876c31..bb032749210a 100644 --- a/net-misc/arpstar/ChangeLog +++ b/net-misc/arpstar/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/arpstar # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/ChangeLog,v 1.1 2005/03/04 13:32:32 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/ChangeLog,v 1.2 2005/03/04 14:34:37 genstef Exp $ + + 04 Mar 2005; Stefan Schweizer <genstef@gentoo.org> arpstar-0.5.0.ebuild: + Updated to depend on CONFIG_NETFILTER, added docs and also let it compile on + 2.6.11 thanks to John Shaw <jtshaw@jtshaw.com> in bug 82757 *arpstar-0.5.0 (04 Mar 2005) diff --git a/net-misc/arpstar/arpstar-0.5.0.ebuild b/net-misc/arpstar/arpstar-0.5.0.ebuild index 747929b8cc52..9730a61df6a7 100644 --- a/net-misc/arpstar/arpstar-0.5.0.ebuild +++ b/net-misc/arpstar/arpstar-0.5.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/arpstar-0.5.0.ebuild,v 1.1 2005/03/04 13:32:32 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpstar/arpstar-0.5.0.ebuild,v 1.2 2005/03/04 14:34:37 genstef Exp $ inherit linux-mod @@ -17,13 +17,20 @@ S=${WORKDIR} MODULE_NAMES="arpstar(net:)" BUILD_TARGETS=" " BUILD_PARAMS="KDIR=${KV_DIR}" +CONFIG_CHECK="NETFILTER" pkg_setup() { linux-mod_pkg_setup - if kernel_is gt 2 6 10 || kernel_is lt 2 6 9 + if kernel_is lt 2 6 9 then - einfo "This module does not build for kernels >2.6.10 or <2.6.9" + einfo "This module does not build for kernels <2.6.9" die "Kernel too new .." fi } + +src_install() { + linux-mod_src_install + + dodoc arpstar.README +} |