blob: 384603dc52f6c79b943e4b2645f42253d504ddda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/noarp/noarp-1.2.3.ebuild,v 1.3 2004/07/15 03:10:06 agriffis Exp $
DESCRIPTION="a kernel module and userspace tool for hiding network interfaces"
HOMEPAGE="http://www.masarlabs.com/noarp/"
SRC_URI="http://www.masarlabs.com/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
pkg_setup() {
if [ "${KV:0:3}" != "2.4" ] ; then
die "Sorry but this only works with 2.4 kernels"
fi
}
src_compile() {
econf --prefix=/ || die
emake || die
}
src_install() {
emake DESTDIR=${D} install || die
dodoc README ChangeLog AUTHORS
}
|