blob: 9ebdd6861b64179ebceddb230adbed0d9dd05413 (
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
31
32
33
34
35
36
37
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/e100-2.1.24.ebuild,v 1.1 2002/12/17 02:22:05 agenkin Exp $
DESCRIPTION="Linux Base Driver for the Intel(R) PRO/100 Family of Adapters"
HOMEPAGE="http://support.intel.com/support/network/adapter/index.htm"
LICENSE="GPL-2"
DEPEND="virtual/linux-sources"
SRC_URI="http://aiedownload.intel.com/df-support/2896/eng/${P}.tar.gz"
S="${WORKDIR}/${P}"
SLOT="0"
KEYWORDS="~x86"
src_compile() {
check_KV
cd "${S}/src"
make KSRC=/usr/src/linux clean e100.o || die
}
src_install () {
insinto "/lib/modules/${KV}/kernel/drivers/net"
doins ${S}/src/e100.o
doman e100.7
dodoc LICENSE README SUMS e100.spec ldistrib.txt
}
pkg_postinst() {
einfo ""
einfo "Please add e100 to your /etc/modules.autoload and"
einfo "remove eepro100 from your /etc/modules.autoload"
einfo "if it is present."
einfo "If you would like to enable the module now:"
einfo " depmod"
einfo " modprobe e100"
einfo ""
}
|