diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/extra-testing/community/nvidia-beta | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/extra-testing/community/nvidia-beta')
-rw-r--r-- | abs/extra-testing/community/nvidia-beta/PKGBUILD | 44 | ||||
-rw-r--r-- | abs/extra-testing/community/nvidia-beta/nvidia.install | 22 |
2 files changed, 0 insertions, 66 deletions
diff --git a/abs/extra-testing/community/nvidia-beta/PKGBUILD b/abs/extra-testing/community/nvidia-beta/PKGBUILD deleted file mode 100644 index d4beaf7..0000000 --- a/abs/extra-testing/community/nvidia-beta/PKGBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer : Dan Vratil <progdan@progdansoft.com> - -pkgname=nvidia-beta -pkgver=180.41 -_kernver=2.6.28-LinHES -pkgrel=1 -pkgdesc="NVIDIA beta drivers for kernel26." -arch=('i686' 'x86_64') -[ "$CARCH" = "i686" ] && ARCH=x86 && NV=0 -[ "$CARCH" = "x86_64" ] && ARCH=x86_64 && NV=0 -provides=('nvidia=180.41') -url="http://www.nvidia.com/" -depends=('kernel26' 'nvidia-utils-beta=180.41') -conflicts=('nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy') -license=('custom') -provides=("nvidia") -install=('nvidia.install') -source=(ftp://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg${NV}.run) - -md5sums=('ec91f014a00357303c12f4cfd03c8a3f') -[ "$CARCH" = "x86_64" ] && md5sums=('07ec7b5521d927b6ff332ef019ac80cd') - - -build() -{ - # Extract - echo ${_kernver} - cd $startdir/src/ - sh NVIDIA-Linux-$ARCH-${pkgver}-pkg${NV}.run --extract-only - cd NVIDIA-Linux-$ARCH-${pkgver}-pkg${NV} - - # Any extra patches are applied in here... - - cd usr/src/nv/ - ln -s Makefile.kbuild Makefile - make SYSSRC=/lib/modules/${_kernver}/build module - - # install kernel module - mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/ - install -m644 nvidia.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/ - - sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install -} - diff --git a/abs/extra-testing/community/nvidia-beta/nvidia.install b/abs/extra-testing/community/nvidia-beta/nvidia.install deleted file mode 100644 index f892d98..0000000 --- a/abs/extra-testing/community/nvidia-beta/nvidia.install +++ /dev/null @@ -1,22 +0,0 @@ -# arg 1: the new package version -post_install() { - KERNEL_VERSION=`uname -r` - depmod -v $KERNEL_VERSION > /dev/null 2>&1 -} - -# arg 1: the new package version -# arg 2: the old package version -post_upgrade() { - post_install $1 - rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.' -} - -# arg 1: the old package version -post_remove() { - KERNEL_VERSION=`uname -r` - depmod -v $KERNEL_VERSION > /dev/null 2>&1 -} - -op=$1 -shift -$op $* |