diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2003-05-05 14:07:56 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2003-05-05 14:07:56 +0000 |
commit | 96a4c9f3fff924a6b2dbe01c8b50aee660bae3d4 (patch) | |
tree | 601c8ef24c8ae9b2e1d4b1523a81b9df3feb7f0b /net-misc/nforce-net | |
parent | Fixes to address 05-05-2003 comment on bug #20008 (diff) | |
download | historical-96a4c9f3fff924a6b2dbe01c8b50aee660bae3d4.tar.gz historical-96a4c9f3fff924a6b2dbe01c8b50aee660bae3d4.tar.bz2 historical-96a4c9f3fff924a6b2dbe01c8b50aee660bae3d4.zip |
Fixes to address 05-05-2003 comment on bug #20008
Diffstat (limited to 'net-misc/nforce-net')
-rw-r--r-- | net-misc/nforce-net/Manifest | 4 | ||||
-rw-r--r-- | net-misc/nforce-net/nforce-net-1.0.0256.ebuild | 23 |
2 files changed, 8 insertions, 19 deletions
diff --git a/net-misc/nforce-net/Manifest b/net-misc/nforce-net/Manifest index 02d14f996f14..ac2b88defa7d 100644 --- a/net-misc/nforce-net/Manifest +++ b/net-misc/nforce-net/Manifest @@ -1,7 +1,7 @@ -MD5 2b333b4df0435cd166be220a229720cf nforce-net-1.0.0256.ebuild 2147 +MD5 9fbda1f91d8185805534106f5b92d1e8 nforce-net-1.0.0256.ebuild 1601 MD5 a4c8585c337d2d53b9d51afe72f88d36 nforce-net-1.0.0248-r2.ebuild 1989 MD5 54cc6c20f2bf3f2dd1b35dc7d673cbe7 nforce-net-1.0.0248.ebuild 1737 -MD5 bf24141e9b8871fb5fa5d318a880cc4a ChangeLog 633 +MD5 83c543208d63b0c8a045c3f7de26198b ChangeLog 784 MD5 5759391de3247b16f6a8eb2ed1ee9940 files/digest-nforce-net-1.0.0248-r2 73 MD5 5759391de3247b16f6a8eb2ed1ee9940 files/digest-nforce-net-1.0.0248 73 MD5 03580a26c5b10797541c68e7473510bf files/digest-nforce-net-1.0.0256 73 diff --git a/net-misc/nforce-net/nforce-net-1.0.0256.ebuild b/net-misc/nforce-net/nforce-net-1.0.0256.ebuild index e7d2acc94fe4..0cd13fdddf10 100644 --- a/net-misc/nforce-net/nforce-net-1.0.0256.ebuild +++ b/net-misc/nforce-net/nforce-net-1.0.0256.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/nforce-net/nforce-net-1.0.0256.ebuild,v 1.1 2003/05/04 12:37:15 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/nforce-net/nforce-net-1.0.0256.ebuild,v 1.2 2003/05/05 14:07:39 drobbins Exp $ inherit gcc @@ -20,26 +20,13 @@ HOMEPAGE="http://www.nvidia.com/" # modules for other kernels. LICENSE="NVIDIA" SLOT="${KV}" -KEYWORDS="~x86 -ppc -sparc -alpha" +KEYWORDS="-* ~x86" DEPEND="virtual/linux-sources >=sys-apps/portage-1.9.10" -src_unpack() { - unpack ${A} - if [ `gcc-major-version` -eq 2 ] ; then - einfo "Applying gcc2 compatability patch" - cp nforce/nvnet/Makefile{,.old} - sed -e "s/-falign-functions/-malign-functions/" nforce/nvnet/Makefile.old > nforce/nvnet/Makefile - fi -} - src_compile() { # Portage should determine the version of the kernel sources check_KV - #IGNORE_CC_MISMATCH disables a sanity check that's needed when gcc has been - #updated but the running kernel is still compiled with an older gcc. This is - #needed for chrooted building, where the sanity check detects the gcc of the - #kernel outside the chroot rather than within. cd ${S}/nvnet make KERNSRC="/usr/src/linux" || die } @@ -50,7 +37,7 @@ src_install() { doins nvnet/nvnet.o # Docs - dodoc ${S}/README + dodoc ${S}/ReleaseNotes.html } pkg_postinst() { @@ -62,6 +49,8 @@ pkg_postinst() { echo einfo "You need to add \"nvnet\" to your /etc/modules.autoload to load" - einfo "this module when the system is started." + einfo "this module when the system is started. Alternatively, you can" + einfo "use the 'hotplug' package ('emerge hotplug' then 'rc-update add" + einfo "hotplug default') to auto-detect and load \"nvnet\" on startup." } |