summaryrefslogtreecommitdiffstats
path: root/xorg/libgl
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-06-23 20:33:57 +0200
committertnut <thierryn1 at hispeed dot ch>2010-06-23 20:33:57 +0200
commita4ca328de3e4abc25b5dda6d727da93fac0bcb74 (patch)
tree3b76d3e02557648672e197a4cb061a3968f0789e /xorg/libgl
parentf9f6d997f9d267c9f472de85228fd62831ee7165 (diff)
downloadnutyx-pakxe-a4ca328de3e4abc25b5dda6d727da93fac0bcb74.tar.gz
nutyx-pakxe-a4ca328de3e4abc25b5dda6d727da93fac0bcb74.tar.bz2
nutyx-pakxe-a4ca328de3e4abc25b5dda6d727da93fac0bcb74.tar.xz
nutyx-pakxe-a4ca328de3e4abc25b5dda6d727da93fac0bcb74.zip
maj mesa3d#7.8.2-1
Diffstat (limited to 'xorg/libgl')
-rw-r--r--xorg/libgl/.footprint6
-rw-r--r--xorg/libgl/.md5sum1
-rw-r--r--xorg/libgl/Pkgfile25
3 files changed, 32 insertions, 0 deletions
diff --git a/xorg/libgl/.footprint b/xorg/libgl/.footprint
new file mode 100644
index 000000000..d24e0a03b
--- /dev/null
+++ b/xorg/libgl/.footprint
@@ -0,0 +1,6 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/lib/xorg/
+drwxr-xr-x root/root usr/lib/xorg/modules/
+drwxr-xr-x root/root usr/lib/xorg/modules/extensions/
+lrwxrwxrwx root/root usr/lib/xorg/modules/extensions/libglx.so -> libglx.xorg
diff --git a/xorg/libgl/.md5sum b/xorg/libgl/.md5sum
new file mode 100644
index 000000000..60d3bb9b9
--- /dev/null
+++ b/xorg/libgl/.md5sum
@@ -0,0 +1 @@
+6be2d343a0089bfd395ce02aaf8adb57 MesaLib-7.8.2.tar.bz2
diff --git a/xorg/libgl/Pkgfile b/xorg/libgl/Pkgfile
new file mode 100644
index 000000000..dc9468b7e
--- /dev/null
+++ b/xorg/libgl/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Librairie libre 3D de Mesa
+# URL: http://mesa3d.sourceforge.net
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: expat, libdrm, xorg-makedepend, xorg-libx11, xorg-libxext, xorg-libxxf86vm, xorg-libxt, xorg-libxdamage
+name=libgl
+version=7.8.2
+release=1
+source=(ftp://ftp.freedesktop.org/pub/mesa/$version/MesaLib-$version.tar.bz2)
+build()
+{
+ cd Mesa-$version
+ ./configure --prefix=/usr \
+ --with-driver=xlib \
+ --disable-egl \
+ --disable-gallium \
+ --disable-glu \
+ --disable-glw \
+ --without-demos
+ make
+ bin/minstall lib/libGL.so* /usr/lib/
+ install -m755 -d $PKG/usr/lib{,/xorg/modules/extensions}
+ ln -s libglx.xorg \
+ $PKG/usr/lib/xorg/modules/extensions/libglx.so
+}