xorg/mesa3d/Pkgfile

36 lines
835 B
Plaintext
Raw Normal View History

2006-04-07 18:48:00 +02:00
# Description: Mesa 3D Graphics Library
# URL: http://www.mesa3d.org
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
2006-04-07 18:48:00 +02:00
# Depends on: libdrm, xorg-makedepend, xorg-glproto, xorg-xextproto, xorg-libx11, xorg-xf86vidmodeproto, xorg-libxext, xorg-libxxf86vm, xorg-libxt
name=mesa3d
2007-06-06 16:51:22 +02:00
version=6.5.3
release=1
2006-12-03 11:17:44 +01:00
source=(http://dl.sourceforge.net/$name/Mesa{Lib,Demos}-$version.tar.bz2)
2006-04-07 18:48:00 +02:00
build() {
cd Mesa-$version
2006-04-10 11:09:07 +02:00
cat <<EOF >> configs/linux-dri
2006-09-16 15:36:44 +02:00
INSTALL_DIR = $PKG/usr
DRI_DRIVER_INSTALL_DIR = $PKG/usr/lib/dri
DRI_DRIVER_SEARCH_DIR = /usr/lib/dri
2006-04-10 11:09:07 +02:00
OPT_FLAGS = $CFLAGS
GLUT_LIB = m
2006-04-10 11:09:07 +02:00
EOF
2006-04-07 18:48:00 +02:00
2007-06-06 16:51:22 +02:00
# nouveau is broken w/ libdrm 2.3.0
sed -i -e 's/nouveau//' configs/linux-dri
2006-04-10 11:09:07 +02:00
make linux-dri-x86
2006-04-07 18:48:00 +02:00
pushd progs/xdemos
2006-04-10 11:09:07 +02:00
make glxgears glxinfo
2006-04-07 18:48:00 +02:00
popd
2006-09-16 15:36:44 +02:00
make install
2006-04-07 18:48:00 +02:00
2006-09-16 15:36:44 +02:00
install -d $PKG/usr/bin
2006-04-07 18:48:00 +02:00
install -m 755 progs/xdemos/glx{gears,info} $PKG/usr/bin
}