blob: dfb0625b9493ceefdca1e7d654c8c1ef2436472a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# $Id: PKGBUILD 22281 2008-12-25 17:05:24Z jgc $
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=xf86-video-sis
pkgver=0.10.1
pkgrel=1
pkgdesc="X.org SiS video driver"
_mesaver="7.2"
arch=(i686 x86_64)
url="http://xorg.freedesktop.org/"
depends=('libgl>=7.2')
makedepends=('pkgconfig' 'xorg-server>=1.5.3' 'xf86driproto' 'mesa>=7.1' 'glproto>=1.4.9')
conflicts=('xorg-server<1.5.1')
options=('!libtool')
groups=('xorg-video-drivers')
source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2
http://downloads.sourceforge.net/mesa3d/MesaLib-${_mesaver}.tar.bz2
mesa-7.1-link-shared.patch)
md5sums=('9f57c2f5ccbd8340db32da1c74083771'
'04d379292e023df0b0266825cb0dbde5'
'f0baa948d9810f268413111ee439d24b')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--enable-dri || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
cd "${srcdir}/Mesa-${_mesaver}"
patch -Np1 -i "${srcdir}/mesa-7.1-link-shared.patch" || return 1
./configure --prefix=/usr \
--with-dri-driverdir=/usr/lib/xorg/modules/dri \
--with-dri-drivers=sis \
--enable-glx-tls \
--disable-ttm-api \
--with-driver=dri \
--enable-xcb \
--disable-glu \
--disable-glut \
--disable-glw || return 1
make || return 1
cd src/mesa/drivers/dri || return 1
make DESTDIR="${pkgdir}" install || return 1
rm -rf "${pkgdir}/usr/lib/pkgconfig"
rm -rf "${pkgdir}/usr/include"
rm -f "${pkgdir}/usr/lib/xorg/modules/dri/libdricore.so"
}
|