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
|
2013-03-13 20:18:39 +00:00
|
|
|
# - Removed libgles, libegl and khrplatform-devel from conflicts for marvell-libgfx compatibility.
|
2011-01-14 22:52:00 +00:00
|
|
|
|
|
|
|
pkgbase=mesa
|
2013-02-26 01:57:01 +00:00
|
|
|
pkgname=('mesa' 'mesa-libgl')
|
2013-10-07 14:07:48 +00:00
|
|
|
pkgver=9.2.1
|
|
|
|
pkgrel=1
|
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'
|
2013-08-28 15:57:21 +00:00
|
|
|
'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd')
|
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-10-07 14:07:48 +00:00
|
|
|
source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2
|
2013-07-01 23:33:14 +00:00
|
|
|
LICENSE)
|
2013-10-07 14:07:48 +00:00
|
|
|
md5sums=('dd4c82667d9c19c28a553b12eba3f8a0'
|
2013-07-01 23:33:14 +00:00
|
|
|
'5c65a0fe315dd347e09b1f2826a1df5a')
|
2011-01-14 22:52:00 +00:00
|
|
|
|
2013-06-22 14:48:56 +00:00
|
|
|
build() {
|
2013-09-12 13:35:10 +00:00
|
|
|
cd ${srcdir}/?esa-*
|
2013-03-14 18:18:42 +00:00
|
|
|
|
2013-09-12 13:35:10 +00:00
|
|
|
autoreconf -vfi # our automake is far too new for their build system :)
|
2011-01-14 22:52:00 +00:00
|
|
|
|
2013-09-12 13:35:10 +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 \
|
2013-08-28 15:57:21 +00:00
|
|
|
--with-egl-platforms=x11,drm,wayland \
|
2013-05-25 13:51:07 +00:00
|
|
|
--with-llvm-shared-libs \
|
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 \
|
|
|
|
--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
|
|
|
|
|
2013-09-12 13:35:10 +00:00
|
|
|
make
|
2013-08-28 15:57:21 +00:00
|
|
|
|
2013-09-12 13:35:10 +00:00
|
|
|
# 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"
|
2013-08-28 15:57:21 +00:00
|
|
|
depends=('libdrm' 'libvdpau' 'wayland' 'libxxf86vm' 'libxdamage' 'systemd' 'elfutils' 'llvm-libs')
|
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')
|
2013-03-13 20:18:39 +00:00
|
|
|
conflicts=('libglapi' 'osmesa' 'libgbm')
|
2013-02-26 01:57:01 +00:00
|
|
|
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
|
|
|
}
|