37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
# Description: Mesa 3D Graphics Library
|
|
# URL: http://www.mesa3d.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: elfutils expat libdrm libvdpau libxml2-python llvm talloc xorg-dri2proto xorg-dri3proto xorg-glproto xorg-libxdamage xorg-libxshmfence xorg-libxt xorg-libxvmc xorg-libxxf86vm xorg-makedepend xorg-presentproto
|
|
|
|
name=mesa3d
|
|
version=10.4.5
|
|
release=2
|
|
source=(ftp://ftp.freedesktop.org/pub/mesa/$version/MesaLib-$version.tar.bz2 \
|
|
0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch)
|
|
|
|
build() {
|
|
cd Mesa-$version
|
|
patch -p1 -i $SRC/0196-gallivm-Update-for-RTDyldMemoryManager-becoming-an-u.patch
|
|
autoreconf --install --symlink
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-gallium-llvm \
|
|
--enable-gbm \
|
|
--enable-gles1 \
|
|
--enable-gles2 \
|
|
--enable-glx-tls \
|
|
--enable-osmesa \
|
|
--enable-texture-float \
|
|
--enable-xa \
|
|
--enable-vdpau \
|
|
--enable-llvm-shared-libs \
|
|
--disable-dependency-tracking \
|
|
--with-egl-platforms=drm \
|
|
--with-gallium-drivers=r300,r600,svga,swrast,radeonsi,nouveau
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|