2006-04-07 18:48:00 +02:00
|
|
|
# Description: Mesa 3D Graphics Library
|
|
|
|
# URL: http://www.mesa3d.org
|
2012-07-13 20:14:36 +02:00
|
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
2017-10-31 16:55:42 +01:59
|
|
|
# Depends on: elfutils libdrm libvdpau llvm xorg-dri3proto xorg-glproto xorg-libxdamage xorg-libxshmfence xorg-libxvmc xorg-presentproto xorg-libxxf86vm
|
2006-04-07 18:48:00 +02:00
|
|
|
|
|
|
|
name=mesa3d
|
2018-01-19 12:59:48 +01:00
|
|
|
version=17.3.3
|
2016-11-11 12:56:49 +01:00
|
|
|
release=1
|
2017-03-09 14:09:47 +01:00
|
|
|
source=(ftp://ftp.freedesktop.org/pub/mesa/mesa-$version.tar.xz)
|
2006-04-07 18:48:00 +02:00
|
|
|
|
|
|
|
build() {
|
2015-03-18 21:13:33 -05:00
|
|
|
cd mesa-$version
|
2014-02-16 22:43:47 +11:00
|
|
|
|
2018-01-12 17:16:57 +01:00
|
|
|
export LDFLAGS="$LDFLAGS -lLLVM"
|
|
|
|
|
2014-02-16 22:43:47 +11:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2015-01-16 20:36:11 +01:00
|
|
|
--sysconfdir=/etc \
|
2017-05-26 15:11:45 +02:00
|
|
|
--enable-llvm \
|
2014-02-16 22:43:47 +11:00
|
|
|
--enable-gbm \
|
|
|
|
--enable-gles1 \
|
|
|
|
--enable-gles2 \
|
|
|
|
--enable-glx-tls \
|
|
|
|
--enable-osmesa \
|
|
|
|
--enable-texture-float \
|
|
|
|
--enable-xa \
|
2014-07-02 17:25:10 +02:00
|
|
|
--enable-vdpau \
|
2014-09-08 21:23:08 +10:00
|
|
|
--enable-llvm-shared-libs \
|
2015-01-18 01:35:59 +11:00
|
|
|
--disable-dependency-tracking \
|
2017-05-26 15:11:45 +02:00
|
|
|
--with-platforms=x11,drm \
|
2016-11-11 12:56:49 +01:00
|
|
|
--with-gallium-drivers=r300,r600,svga,swrast,radeonsi,nouveau \
|
2018-01-19 12:59:48 +01:00
|
|
|
--with-vulkan-drivers=intel,radeon
|
2014-02-16 22:43:47 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-04-07 18:48:00 +02:00
|
|
|
}
|