2015-08-07 23:56:11 +08:00
|
|
|
# Maintainer: Lone_Wolf <lonewolf at xs4all dot nl>
|
|
|
|
# Contributor: Armin K. <krejzi at email dot com>
|
2014-12-31 02:42:36 +08:00
|
|
|
# Contributor: Kristian Klausen <klausenbusk@hotmail.com>
|
|
|
|
# Contributor: Egon Ashrafinia <e.ashrafinia@gmail.com>
|
|
|
|
# Contributor: Tavian Barnes <tavianator@gmail.com>
|
|
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# Contributor: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# Contributor: Thomas Dziedzic < gostrc at gmail >
|
|
|
|
# Contributor: Antti "Tera" Oja <antti.bofh@gmail.com>
|
|
|
|
# Contributor: Diego Jose <diegoxter1006@gmail.com>
|
|
|
|
|
|
|
|
pkgbase=mesa-git
|
2017-05-22 23:01:33 +08:00
|
|
|
pkgname=('mesa-git')
|
2016-02-01 22:21:55 +08:00
|
|
|
pkgdesc="an open-source implementation of the OpenGL specification, git version"
|
2018-05-13 19:04:42 +08:00
|
|
|
pkgver=18.2.0_devel.102206.c879011c72
|
2018-04-22 21:50:22 +08:00
|
|
|
pkgrel=1
|
2017-02-28 06:48:24 +08:00
|
|
|
arch=('x86_64')
|
2018-04-27 06:41:17 +08:00
|
|
|
makedepends=('git' 'python2-mako' 'llvm-svn' 'clang-svn' 'xorgproto'
|
2018-03-06 20:23:01 +08:00
|
|
|
'libxml2' 'libx11' 'libvdpau' 'libva' 'elfutils' 'libomxil-bellagio'
|
2018-05-13 19:04:42 +08:00
|
|
|
'ocl-icd' 'vulkan-icd-loader' 'libgcrypt' 'libclc')
|
2018-04-04 05:56:41 +08:00
|
|
|
depends=('libdrm' 'libxxf86vm' 'libxdamage' 'libxshmfence' 'libelf'
|
2018-05-13 19:04:42 +08:00
|
|
|
'libomxil-bellagio' 'llvm-libs-svn' 'libunwind' 'libglvnd' 'libclc')
|
2017-06-03 08:34:32 +08:00
|
|
|
optdepends=('opengl-man-pages: for the OpenGL API man pages')
|
2018-05-13 19:04:42 +08:00
|
|
|
provides=('mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau' 'vulkan-driver' 'opencl-mesa' 'opencl-driver' 'opengl-driver')
|
2018-04-04 18:57:38 +08:00
|
|
|
conflicts=('mesa' 'opencl-mesa' 'vulkan-intel' 'vulkan-radeon' 'libva-mesa-driver' 'mesa-vdpau' 'wayland<1.14.93')
|
2014-12-31 02:42:36 +08:00
|
|
|
url="http://mesa3d.sourceforge.net"
|
|
|
|
license=('custom')
|
2017-03-15 22:03:38 +08:00
|
|
|
source=('mesa::git://anongit.freedesktop.org/mesa/mesa'
|
2016-06-20 22:20:46 +08:00
|
|
|
'LICENSE'
|
2018-05-13 19:04:42 +08:00
|
|
|
'opencl-autotools-Fix-linking-order-for-OpenCL-target.patch'
|
2016-11-09 02:20:48 +08:00
|
|
|
)
|
2016-08-15 06:48:39 +08:00
|
|
|
sha512sums=('SKIP'
|
2018-04-22 21:50:22 +08:00
|
|
|
'25da77914dded10c1f432ebcbf29941124138824ceecaf1367b3deedafaecabc082d463abcfa3d15abff59f177491472b505bcb5ba0c4a51bb6b93b4721a23c2'
|
2018-05-13 19:04:42 +08:00
|
|
|
'f23e31e902e05f9102fdc3f3c7cc96306e04e297785bdc46f955f668588256c8ebfeb530a47bea9e9fea16f5c4e4e75cc0dceb71b042bed6a17a0ce320e234f1')
|
2017-05-22 23:01:33 +08:00
|
|
|
|
|
|
|
prepare() {
|
2018-01-10 07:27:36 +08:00
|
|
|
cd mesa
|
2018-05-13 19:04:42 +08:00
|
|
|
# fixes opencl build failure, see https://bugs.freedesktop.org/show_bug.cgi?id=106209 and https://patchwork.freedesktop.org/patch/219763/
|
|
|
|
patch -Np1 -i ../opencl-autotools-Fix-linking-order-for-OpenCL-target.patch
|
2018-03-06 20:23:01 +08:00
|
|
|
autoreconf -vfi
|
2017-05-22 23:01:33 +08:00
|
|
|
}
|
2016-08-26 21:00:03 +08:00
|
|
|
|
2014-12-31 02:42:36 +08:00
|
|
|
pkgver() {
|
2016-01-30 02:09:39 +08:00
|
|
|
cd mesa
|
2017-02-28 06:48:24 +08:00
|
|
|
read -r _ver <VERSION
|
|
|
|
echo ${_ver/-/_}.$(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
2014-12-31 02:42:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
build () {
|
2016-01-30 02:09:39 +08:00
|
|
|
cd mesa
|
2018-01-10 07:27:36 +08:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2018-03-13 21:59:44 +08:00
|
|
|
--with-gallium-drivers=r300,r600,radeonsi,nouveau,svga,swrast,virgl \
|
2018-04-04 17:07:37 +08:00
|
|
|
--with-dri-drivers=i915,i965,r200,radeon,nouveau \
|
2018-04-04 06:13:04 +08:00
|
|
|
--with-platforms=x11,drm,surfaceless \
|
2018-01-10 07:27:36 +08:00
|
|
|
--with-vulkan-drivers=intel,radeon \
|
|
|
|
--enable-texture-float \
|
|
|
|
--enable-gallium-osmesa \
|
|
|
|
--enable-xa \
|
|
|
|
--enable-nine \
|
|
|
|
--disable-xvmc \
|
|
|
|
--enable-vdpau \
|
|
|
|
--enable-omx-bellagio \
|
2018-05-13 19:04:42 +08:00
|
|
|
--enable-opencl \
|
|
|
|
--enable-opencl-icd \
|
2018-01-10 07:27:36 +08:00
|
|
|
--enable-glx-tls \
|
|
|
|
--enable-libglvnd
|
2016-04-28 20:51:51 +08:00
|
|
|
|
2018-04-27 06:41:17 +08:00
|
|
|
# broken, see https://bugs.freedesktop.org/show_bug.cgi?id=106209
|
|
|
|
|
2016-02-01 22:21:55 +08:00
|
|
|
|
2017-02-28 06:48:24 +08:00
|
|
|
# Used configure settings
|
2016-02-01 22:21:55 +08:00
|
|
|
#
|
2017-02-28 06:48:24 +08:00
|
|
|
# --prefix=PREFIX install architecture-independent files in PREFIX
|
|
|
|
# --sysconfdir=DIR read-only single-machine data
|
|
|
|
# [PREFIX/etc]
|
|
|
|
# --with-gallium-drivers[=DIRS...] comma delimited Gallium drivers list, e.g. "i915,ilo,nouveau,r300,r600,radeonsi,freedreno,svga,swrast,vc4,virgl"
|
|
|
|
# [default=r300,r600,svga,swrast]
|
|
|
|
# --with-dri-drivers[=DIRS...] comma delimited classic DRI drivers list, e.g. "swrast,i965,radeon"
|
|
|
|
# [default=auto]
|
2017-05-22 19:09:18 +08:00
|
|
|
# --with-platforms[=DIRS...] comma delimited native platforms libEGL/Vulkan/other
|
|
|
|
# supports, e.g. "x11,drm,wayland,surfaceless..."
|
2017-02-28 06:48:24 +08:00
|
|
|
# [default=auto]
|
|
|
|
# --with-vulkan-drivers[=DIRS...] comma delimited Vulkan drivers list, e.g. "intel"
|
|
|
|
# [default=no]
|
|
|
|
# --enable-texture-float enable floating-point textures and renderbuffers
|
|
|
|
# [default=disabled]
|
2017-03-06 21:30:23 +08:00
|
|
|
# --enable-gallium-osmesa enable Gallium implementation of the OSMesa library
|
2017-02-28 06:48:24 +08:00
|
|
|
# [default=disabled]
|
|
|
|
# --enable-xa enable build of the XA X Acceleration API
|
|
|
|
# [default=disabled]
|
|
|
|
# --enable-nine enable build of the nine Direct3D9 API
|
|
|
|
# [default=no]
|
|
|
|
# --disable-xvmc enable xvmc library
|
|
|
|
# [default=auto]
|
|
|
|
# --enable-vdpau enable vdpau library
|
|
|
|
# [default=auto]
|
2017-09-16 21:13:31 +08:00
|
|
|
# --enable-omx-bellagio enable OpenMAX Bellagio library
|
2017-02-28 06:48:24 +08:00
|
|
|
# [default=disabled]
|
|
|
|
# --enable-opencl enable OpenCL library
|
|
|
|
# [default=disabled]
|
|
|
|
# --enable-opencl-icd Build an OpenCL ICD library to be loaded by an ICD implementation
|
|
|
|
# [default=disabled]
|
|
|
|
# --enable-glx-tls enable TLS support in GLX
|
2017-05-22 23:01:33 +08:00
|
|
|
# [default=disabled]
|
|
|
|
# --enable-libglvnd Build GLX and EGL for libglvnd
|
2017-02-28 06:48:24 +08:00
|
|
|
# [default=disabled]
|
2016-10-08 05:50:33 +08:00
|
|
|
|
2017-02-28 06:48:24 +08:00
|
|
|
make
|
2014-12-31 02:42:36 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-08-07 23:56:11 +08:00
|
|
|
|
2017-06-03 08:34:32 +08:00
|
|
|
package_mesa-git() {
|
2014-12-31 02:42:36 +08:00
|
|
|
|
2017-02-28 06:48:24 +08:00
|
|
|
cd mesa
|
|
|
|
make DESTDIR="$pkgdir" install
|
2016-04-20 16:52:59 +08:00
|
|
|
|
2018-01-10 07:27:36 +08:00
|
|
|
# remove files provided by libglvnd
|
2018-04-04 17:07:37 +08:00
|
|
|
rm "$pkgdir"/usr/lib/libGLESv{1_CM,2}.so*
|
2017-05-22 23:01:33 +08:00
|
|
|
|
|
|
|
# indirect rendering
|
|
|
|
ln -s /usr/lib/libGLX_mesa.so.0 ${pkgdir}/usr/lib/libGLX_indirect.so.0
|
2014-12-31 02:42:36 +08:00
|
|
|
|
2018-04-04 17:07:37 +08:00
|
|
|
install -Dt "$pkgdir"/usr/share/licenses/$pkgbase "$srcdir"/LICENSE
|
2014-12-31 02:42:36 +08:00
|
|
|
}
|