summaryrefslogtreecommitdiff
path: root/extra/xf86-video-intel
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-25 01:38:48 -0700
committerroot <root@rshg054.dnsready.net>2013-08-25 01:38:48 -0700
commiteed3b2a218be9aa9d9d8256f6b8ccd06d04b8804 (patch)
tree2404ba9a8a5481c0a2e700ca72d9657f6c393a64 /extra/xf86-video-intel
parent49e0f6ae5dad013852999f497117d6798b2fb085 (diff)
Sun Aug 25 01:38:43 PDT 2013
Diffstat (limited to 'extra/xf86-video-intel')
-rw-r--r--extra/xf86-video-intel/PKGBUILD10
-rw-r--r--extra/xf86-video-intel/xf86-video-intel.install19
2 files changed, 18 insertions, 11 deletions
diff --git a/extra/xf86-video-intel/PKGBUILD b/extra/xf86-video-intel/PKGBUILD
index 962feec51..f7f2d4f4b 100644
--- a/extra/xf86-video-intel/PKGBUILD
+++ b/extra/xf86-video-intel/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 192403 2013-08-10 17:30:29Z lcarlier $
+# $Id: PKGBUILD 193567 2013-08-24 08:12:29Z andyrtr $
# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xf86-video-intel
-pkgver=2.21.14
-pkgrel=2
+pkgver=2.21.15
+pkgrel=1
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
license=('custom')
install=$pkgname.install
pkgdesc="X.org Intel i810/i830/i915/945G/G965+ video drivers"
-depends=('intel-dri' 'libxvmc' 'xcb-util>=0.3.9' 'systemd')
+depends=('intel-dri' 'libxvmc' 'pixman' 'xcb-util>=0.3.9')
makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 'scrnsaverproto' 'libx11' 'libxrender')
replaces=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
provides=('xf86-video-intel-uxa' 'xf86-video-intel-sna')
@@ -19,7 +19,7 @@ conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 'X-ABI-VIDEODRV_VERS
options=('!libtool')
groups=('xorg-drivers' 'xorg')
source=(${url}/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('cc74d482dfd1f6b87773233a6d5c36118039b42fe7f8d99ee28bda7b78aa3b49')
+sha256sums=('7d5a140f82a72fd1cbc8a664d66c3d4eca47ee240ca4927b8a98d7af6f65d6fc')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/xf86-video-intel/xf86-video-intel.install b/extra/xf86-video-intel/xf86-video-intel.install
index b03eea8aa..661387906 100644
--- a/extra/xf86-video-intel/xf86-video-intel.install
+++ b/extra/xf86-video-intel/xf86-video-intel.install
@@ -1,12 +1,19 @@
post_upgrade() {
- post_install
+ if (( $(vercmp $2 2.21.15) < 0 )); then
+ post_install
+ fi
}
post_install() {
- echo ">>> This driver now uses sna as the default"
- echo ">>> acceleration methods."
- echo ">>> You can use uxa method if you run into trouble."
- echo ">>> Add to the device section in /etc/X11/xorg.conf"
- echo ">>> Option \"AccelMethod\" \"uxa\""
+ cat <<MSG
+>>> This driver now uses SNA as the default acceleration method. You can
+ still fall back to UXA if you run into trouble. To do so, save a file
+ with the following content as /etc/X11/xorg.conf.d/20-intel.conf :
+ Section "Device"
+ Identifier "Intel Graphics"
+ Driver "intel"
+ Option "AccelMethod" "uxa"
+ EndSection
+MSG
}