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-04-28 00:28:43 +10:00
|
|
|
# Depends on: elfutils expat libdrm libvdpau llvm xorg-dri3proto xorg-glproto xorg-libxdamage xorg-libxshmfence xorg-libxvmc xorg-presentproto
|
2006-04-07 18:48:00 +02:00
|
|
|
|
|
|
|
name=mesa3d
|
2015-09-29 22:17:43 +02:00
|
|
|
version=11.0.2
|
2015-03-07 20:47:45 +11: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 \
|
2014-02-16 22:43:47 +11:00
|
|
|
--with-egl-platforms=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
|
|
|
}
|