blob: 7491882dd30f21b2b94c22767f090c37d7ddac8d (
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
|
# Copyright 2002 Arcady Genkin <agenkin@thpoon.com>
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/e1000/e1000-4.3.15.ebuild,v 1.1 2002/09/23 13:40:19 agenkin Exp $
DESCRIPTION="Kernel driver for Intel Pro/1000 ethernet adapters."
HOMEPAGE="http://support.intel.com/support/network/adapter/1000/index.htm"
LICENSE="GPL-2"
DEPEND="virtual/linux-sources"
RDEPEND="${DEPEND}"
SRC_URI="ftp://aiedownload.intel.com/df-support/2897/eng/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86"
S="${WORKDIR}/${P}"
src_compile() {
check_KV
cd "${S}/src"
make KSRC=/usr/src/linux clean e1000.o
}
src_install () {
insinto "/lib/modules/${KV}/kernel/drivers/net"
doins "${S}/src/e1000.o"
doman e1000.7
dodoc LICENSE README SUMS e1000.spec ldistrib.txt
}
|