diff options
Diffstat (limited to 'net-misc/bcm4400/bcm4400-3.0.7.ebuild')
-rw-r--r-- | net-misc/bcm4400/bcm4400-3.0.7.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net-misc/bcm4400/bcm4400-3.0.7.ebuild b/net-misc/bcm4400/bcm4400-3.0.7.ebuild deleted file mode 100644 index 551bd26f21c5..000000000000 --- a/net-misc/bcm4400/bcm4400-3.0.7.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bcm4400/bcm4400-3.0.7.ebuild,v 1.6 2005/01/01 22:39:36 genstef Exp $ - -SRC_URI="http://www.broadcom.com/docs/driver_download/440x/linux-3.0.7.zip" -DESCRIPTION="Driver for the bcm4400 10/100 network card (in the form of kernel modules)." -HOMEPAGE="http://www.broadcom.com" -LICENSE="GPL-2" - -SLOT="0" -KEYWORDS="x86" -IUSE="" - -DEPEND="app-arch/unzip" - -S=${WORKDIR}/linux/${P}/src - -src_unpack() { - - unpack ${A} - cd ${WORKDIR}/linux - tar -xzpf ${P}.tar.gz - -} - -src_compile() { - - check_KV - - sed -i -e "s|\$(shell uname -r)|$KV|" -e "s|shell uname -r|echo $KV|" Makefile - emake || die - -} - -src_install() { - - mkdir -p ${D}/usr/share/man/man4 - make PREFIX=${D} install || die - -} - -pkg_postinst() { - - echo ">>> Updating module dependencies..." - /sbin/depmod -a >/dev/null 2>&1 - -} |