diff options
author | root <root@rshg054.dnsready.net> | 2012-09-16 00:06:50 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-09-16 00:06:50 +0000 |
commit | 50634781b5673a447953e357a63baa66515ec868 (patch) | |
tree | 24747da0882ac4b0625fd64adbb25041c2bd5a4d /testing/xf86-video-nouveau | |
parent | 58bcf29e17b49063f0be13069151b9890cb5c6a6 (diff) |
Sun Sep 16 00:06:50 UTC 2012
Diffstat (limited to 'testing/xf86-video-nouveau')
-rw-r--r-- | testing/xf86-video-nouveau/PKGBUILD | 33 | ||||
-rw-r--r-- | testing/xf86-video-nouveau/xf86-video-nouveau.install | 10 |
2 files changed, 11 insertions, 32 deletions
diff --git a/testing/xf86-video-nouveau/PKGBUILD b/testing/xf86-video-nouveau/PKGBUILD index 03a71dbae..7880c824e 100644 --- a/testing/xf86-video-nouveau/PKGBUILD +++ b/testing/xf86-video-nouveau/PKGBUILD @@ -1,41 +1,30 @@ -# $Id: PKGBUILD 161842 2012-06-15 14:06:38Z ibiru $ +# $Id: PKGBUILD 166652 2012-09-14 14:14:34Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: buddabrod <buddabrod@gmail.com> pkgname=xf86-video-nouveau -_gitdate=20120615 -pkgver=0.0.16_git${_gitdate} # see configure.ac +pkgver=1.0.2 pkgrel=1 -pkgdesc="Open Source 2D acceleration driver for nVidia cards (experimental)" +pkgdesc="Open Source 2D acceleration driver for nVidia cards" arch=('i686' 'x86_64') -url="http://nouveau.freedesktop.org/wiki/" -license=('GPL') #and MIT, not yet a license file, see http://nouveau.freedesktop.org/wiki/FAQ#head-09f75d03eb30011c754038a3893119a70745de4e +url="http://nouveau.freedesktop.org/" +license=('GPL') depends=('libdrm' 'udev') -optdepends=('nouveau-dri: experimental gallium3d features') +optdepends=('nouveau-dri: experimental gallium3d features') makedepends=('xorg-server-devel' 'xf86driproto') conflicts=('xorg-server<1.11.99.902') options=('!libtool') install=$pkgname.install -source=(ftp://ftp.archlinux.org/other/$pkgname/xf86-video-nouveau-${_gitdate}.tar.bz2) -md5sums=('9ceb49ff436c9a00536490fb1c8bf6d1') - -# source PKGBUILD && mksource -mksource() { - mkdir /tmp/$pkgname-${_gitdate} - pushd /tmp/$pkgname-${_gitdate} - git clone -v --depth 1 git://anongit.freedesktop.org/nouveau/xf86-video-nouveau - cd xf86-video-nouveau - git archive --prefix=xf86-video-nouveau-${_gitdate}/ --format=tar HEAD | bzip2 > /tmp/$pkgname-${_gitdate}/$pkgname-${_gitdate}.tar.bz2 - popd -} +source=($url/release/$pkgname-$pkgver.tar.bz2) +sha256sums=('765731c2a91d434d4360517a128d18af70b158f727e49813f1a42e26cccbc45d') build() { - cd xf86-video-nouveau-${_gitdate} - ./autogen.sh --prefix=/usr + cd $pkgname-$pkgver + ./configure --prefix=/usr make } package() { - cd xf86-video-nouveau-${_gitdate} + cd $pkgname-$pkgver make DESTDIR="$pkgdir" install } diff --git a/testing/xf86-video-nouveau/xf86-video-nouveau.install b/testing/xf86-video-nouveau/xf86-video-nouveau.install index 027154ff3..23cc4cd5b 100644 --- a/testing/xf86-video-nouveau/xf86-video-nouveau.install +++ b/testing/xf86-video-nouveau/xf86-video-nouveau.install @@ -4,13 +4,3 @@ post_install () { ==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more _EOF } - -post_upgrade() { - if [ "`vercmp $2 0.0.15_git20100117-1`" -lt 0 ]; then - cat << _EOF - ==> ATTENTION: Usermode support has been dropped - ==> make sure you use KernelModeSetting (KMS) - ==> see http://wiki.archlinux.org/index.php/Nouveau#KMS for more -_EOF - fi -} |