summaryrefslogtreecommitdiff
blob: 011d11a25dc08c9fdca80dcb61b5629fd2da042e (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/bcm570x/bcm570x-7.3.5.ebuild,v 1.2 2005/01/21 18:40:50 genstef Exp $

inherit linux-mod

MY_P=${P/570x/5700}
SRC_URI="http://www.broadcom.com/docs/driver_download/570x/linux-${PV}.zip"
DESCRIPTION="Driver for the Broadcom 570x-based gigabit cards (found on many mainboards)."
HOMEPAGE="http://www.broadcom.com/docs/driver-sla.php?driver=570x-Linux"
LICENSE="GPL-2"

KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="app-arch/unzip"

S=${WORKDIR}/${MY_P}

MODULE_NAMES="bcm5700(net:${S}/src)"
BUILD_TARGETS="default"
BUILD_PARAMS="LINUX=${KV_DIR}"

src_unpack() {
	unpack ${A}
	tar xzpf ${WORKDIR}/Server/Linux/Driver/${MY_P}.tar.gz || \
		die "could not extract second level archive"
}

src_install() {
	linux-mod_src_install

	dodoc DISTRIB.TXT LICENSE README.TXT RELEASE.TXT

	cd ${S}/src
	doman bcm5700.4
}

pkg_postinst() {
	linux-mod_pkg_postinst

	einfo "For more detailed information about this driver:"
	einfo "man 4 bcm5700"
}