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
|
2015-10-10 15:27:30 +02:00
|
|
|
# Depends on: elfutils expat 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
|
2016-02-11 19:59:28 +01:00
|
|
|
version=11.1.2
|
2015-10-10 19:28:09 +02:00
|
|
|
release=1
|
2015-03-18 21:13:33 -05:00
|
|
|
source=(ftp://ftp.freedesktop.org/pub/mesa/$version/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
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2015-01-16 20:36:11 +01:00
|
|
|
--sysconfdir=/etc \
|
2014-02-16 22:43:47 +11:00
|
|
|
--enable-gallium-llvm \
|
|
|
|
--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 \
|
2015-10-03 16:21:52 +02:00
|
|
|
--with-egl-platforms=x11,drm \
|
2013-12-27 22:50:34 +01:00
|
|
|
--with-gallium-drivers=r300,r600,svga,swrast,radeonsi,nouveau
|
2014-02-16 22:43:47 +11:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2006-04-07 18:48:00 +02:00
|
|
|
}
|