2013-02-26 01:57:01 +00:00
# $Id$
2011-01-14 22:52:00 +00:00
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
2012-03-13 20:41:09 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - Removed DRI and Gallium3D drivers/packages for chipsets that don't exist in our ARM devices (intel, radeon, VMware svga).
2011-08-04 22:43:39 +00:00
# - Build v7h with -O1 instead of -O2
2011-01-14 22:52:00 +00:00
pkgbase = mesa
2013-02-26 01:57:01 +00:00
pkgname = ( 'mesa' 'mesa-libgl' )
pkgver = 9.1
pkgrel = 2
2011-01-31 17:23:45 +00:00
arch = ( 'i686' 'x86_64' )
2013-02-26 01:57:01 +00:00
makedepends = ( 'python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'libxxf86vm' 'libxdamage'
'libvdpau' 'wayland' )
2011-01-14 22:52:00 +00:00
url = "http://mesa3d.sourceforge.net"
license = ( 'custom' )
2012-10-14 16:42:59 +00:00
options = ( '!libtool' )
2013-02-26 01:57:01 +00:00
source = ( ftp://ftp.freedesktop.org/pub/mesa/${ pkgver } /MesaLib-${ pkgver } .tar.bz2
#ftp://ftp.freedesktop.org/pub/mesa/9.1/MesaLib-9.1-rc2.tar.bz2 # for RC testing
LICENSE)
md5sums = ( 'd3891e02215422e120271d976ff1947e'
'5c65a0fe315dd347e09b1f2826a1df5a' )
2011-01-14 22:52:00 +00:00
build( ) {
2011-08-04 21:41:18 +00:00
cd ${ srcdir } /?esa-*
2012-06-02 18:22:07 +00:00
2013-02-26 01:57:01 +00:00
autoreconf -vfi # our automake is far too new for their build system :)
2011-01-14 22:52:00 +00:00
2013-02-26 01:57:01 +00:00
./configure --prefix= /usr \
2012-10-14 16:42:59 +00:00
--sysconfdir= /etc \
2011-01-14 22:52:00 +00:00
--with-dri-driverdir= /usr/lib/xorg/modules/dri \
2011-08-04 21:41:18 +00:00
--with-gallium-drivers= swrast \
2013-02-26 01:57:01 +00:00
--with-dri-drivers= swrast \
2011-08-04 21:41:18 +00:00
--enable-gallium-llvm \
2012-08-31 16:25:10 +00:00
--enable-egl \
2012-05-20 17:21:46 +00:00
--enable-gallium-egl \
2013-02-26 01:57:01 +00:00
--with-egl-platforms= x11,drm,wayland \
2012-05-20 17:21:46 +00:00
--enable-shared-glapi \
--enable-gbm \
2011-01-14 22:52:00 +00:00
--enable-glx-tls \
2012-03-13 20:41:09 +00:00
--enable-dri \
--enable-glx \
--enable-osmesa \
2011-03-03 18:06:38 +00:00
--enable-gles1 \
--enable-gles2 \
2011-08-04 21:41:18 +00:00
--enable-texture-float \
2013-02-26 01:57:01 +00:00
--enable-xa
# --help
# --with-llvm-shared-libs \ # enabling this would force us to move llvm-amdgpu-snapshot from community to extra, delay it until llvm 3.3 / Mesa 9.2/10.0
make
# fake installation
mkdir $srcdir /fakeinstall
make DESTDIR = ${ srcdir } /fakeinstall install
2011-01-14 22:52:00 +00:00
}
2012-10-14 16:42:59 +00:00
package_mesa( ) {
2013-02-26 01:57:01 +00:00
pkgdesc = "an open-source implementation of the OpenGL specification"
depends = ( 'libdrm' 'libvdpau' 'wayland' 'libxxf86vm' 'libxdamage' 'systemd' )
2012-10-14 16:42:59 +00:00
optdepends = ( 'opengl-man-pages: for the OpenGL API man pages' )
2013-02-26 01:57:01 +00:00
provides = ( 'libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel' )
conflicts = ( 'libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel' )
replaces = ( 'libglapi' 'osmesa' 'libgbm' 'libgles' 'libegl' 'khrplatform-devel' )
2012-10-14 16:42:59 +00:00
2013-02-26 01:57:01 +00:00
mv -v ${ srcdir } /fakeinstall/* ${ pkgdir }
# rename libgl.so to not conflict with blobs - may break gl.pc ?
mv ${ pkgdir } /usr/lib/libGL.so.1.2.0 ${ pkgdir } /usr/lib/mesa-libGL.so.1.2.0
rm ${ pkgdir } /usr/lib/libGL.so{ ,.1}
2012-10-14 16:42:59 +00:00
install -m755 -d " ${ pkgdir } /usr/share/licenses/mesa "
install -m644 " ${ srcdir } /LICENSE " " ${ pkgdir } /usr/share/licenses/mesa/ "
}
2013-02-26 01:57:01 +00:00
package_mesa-libgl( ) {
pkgdesc = "Mesa 3-D graphics library"
depends = ( " mesa= ${ pkgver } " )
provides = ( " libgl= ${ pkgver } " )
replaces = ( 'libgl' )
# See FS#26284
install -m755 -d " ${ pkgdir } /usr/lib/xorg/modules/extensions "
ln -s libglx.xorg " ${ pkgdir } /usr/lib/xorg/modules/extensions/libglx.so "
2011-11-19 18:56:00 +00:00
2013-02-26 01:57:01 +00:00
ln -s mesa-libGL.so.1.2.0 ${ pkgdir } /usr/lib/libGL.so
ln -s mesa-libGL.so.1.2.0 ${ pkgdir } /usr/lib/libGL.so.1
ln -s mesa-libGL.so.1.2.0 ${ pkgdir } /usr/lib/libGL.so.1.2.0
2011-11-19 18:56:00 +00:00
2013-02-26 01:57:01 +00:00
install -m755 -d " ${ pkgdir } /usr/share/licenses/mesa-libgl "
install -m644 " ${ srcdir } /LICENSE " " ${ pkgdir } /usr/share/licenses/mesa-libgl/ "
2011-11-19 18:56:00 +00:00
}