blob: 96fe83e09171de3f52036b88cff0f3e4e4e50f2e (
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
38
39
40
41
42
43
44
45
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/e100/e100-3.0.27.ebuild,v 1.2 2005/04/30 10:39:01 mholzer 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="mirror://sourceforge/e1000/${P}.tar.gz"
SLOT="${KV}"
KEYWORDS="~x86 ~ppc"
IUSE=""
src_compile() {
check_KV
cd "${S}/src"
emake 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 "If you are already running the eepro100 driver, you will need "
einfo "to remove it before loading the e100 driver as they cannot "
einfo "be used simulaneously."
einfo ""
einfo "To load the module at boot up, add e100 to /etc/modules.autoload "
einfo "and remove eepro100"
einfo ""
einfo "To load the module now without rebooting, use the "
einfo "following command:"
einfo "modprobe e100"
einfo ""
einfo "For more detailed information about this driver, "
einfo "see the man page by typing:"
einfo "man 7 e100"
einfo ""
}
|