summaryrefslogtreecommitdiff
blob: c8227ba72a4ac8fb7d10c2712a864007cf7617f6 (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
46
47
48
49
50
51
52
# 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-8.2.18.ebuild,v 1.1 2005/08/27 21:30:24 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/drivers"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="app-arch/unzip"
S=${WORKDIR}/Server/Linux/Driver/${MY_P}/src

MODULE_NAMES="bcm5700(net:)"
BUILD_TARGETS="default"

pkg_setup() {
	linux-mod_pkg_setup
	BUILD_PARAMS="LINUX=${KV_DIR}"
}

src_unpack() {
	unpack ${A}
	cd ${WORKDIR}/Server/Linux/Driver
	tar xzpf ${MY_P}.tar.gz || \
		die "could not extract second level archive"
	tar xzpf bcm_sup-${PV}.tar.gz || \
		die "could not extract supplementary archive"
	convert_to_m ${S}/Makefile
}

src_install() {
	insinto /usr/share/${PN}
	doins ${WORKDIR}/Server/Linux/Driver/bcm_sup-${PV}/patches/${MY_P}-2.4.31.patch \
		${WORKDIR}/Server/Linux/Driver/bcm_sup-${PV}/patches/${MY_P}-2.6.12.patch

	linux-mod_src_install
	doman bcm5700.4
	dodoc ../../DISTRIB.TXT ../README.TXT
}

pkg_postinst() {
	linux-mod_pkg_postinst

	einfo "For more detailed information about this driver:"
	einfo "man 4 bcm5700"
	einfo "If you prefer patching your kernel,"
	einfo "you can find kernel patches in /usr/share/${PN}"
}