wok-6.x annotate mesa/receipt @ rev 12776
Remove cross linux headers
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 13 12:20:38 2012 +0200 (2012-05-13) |
parents | ad4f8bdcc3d6 |
children | 85016499ad8c |
rev | line source |
---|---|
pascal@592 | 1 # SliTaz package receipt. |
pascal@592 | 2 |
pascal@592 | 3 PACKAGE="mesa" |
slaxemulator@10234 | 4 VERSION="7.10.2" |
pankso@4421 | 5 CATEGORY="x-window" |
rcx@3695 | 6 SHORT_DESC="3D Graphics Library that is an open-source implementaton of OpenGL." |
pascal@592 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
jozee@5018 | 8 SUGGESTED="nvidia" |
pascal@592 | 9 SOURCE="Mesa" |
pascal@592 | 10 TARBALL="${SOURCE}Lib-$VERSION.tar.bz2" |
pascal@592 | 11 WEB_SITE="http://www.mesa3d.org/" |
pankso@5298 | 12 WGET_URL="ftp://ftp.freedesktop.org/pub/mesa/$VERSION/$TARBALL" |
rcx@3695 | 13 PROVIDE="libgl" |
pascal@592 | 14 |
pankso@12690 | 15 DEPENDS="expat libdrm xorg-libXdamage xorg-libXxf86vm xorg-libXt udev" |
pankso@12690 | 16 BUILD_DEPENDS="expat-dev libdrm-dev xorg-libXdamage-dev pkg-config \ |
pankso@9735 | 17 xorg-libXxf86vm-dev xorg-libXt-dev xorg-dri2proto xorg-glproto \ |
pankso@12690 | 18 talloc xorg-makedepend lesstif libxml2-python xorg-imake lesstif-dev \ |
pankso@12690 | 19 xorg-server-dev udev-dev file" |
pankso@9735 | 20 |
pascal@592 | 21 # Rules to configure and make the package. |
pascal@592 | 22 compile_rules() |
rcx@3695 | 23 { |
pascal@592 | 24 cd $src |
pankso@12548 | 25 #patch -Np1 -i $stuff/nouveau-fix-header.patch |
pankso@12548 | 26 #--enable-gallium-nouveau |
rcx@3695 | 27 ./configure \ |
rcx@3695 | 28 --prefix=/usr \ |
rcx@3695 | 29 --with-x \ |
rcx@3695 | 30 --enable-motif \ |
gokhlayeh@6993 | 31 --enable-gallium-radeon \ |
gokhlayeh@6993 | 32 --enable-xcb \ |
rcx@3695 | 33 $CONFIGURE_ARGS && |
pankso@12548 | 34 make $MAKEFLAGS && make install |
pascal@592 | 35 } |
pascal@592 | 36 |
pascal@592 | 37 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@592 | 38 genpkg_rules() |
pascal@592 | 39 { |
pankso@3007 | 40 mkdir -p $fs/usr/lib |
pankso@12690 | 41 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@4170 | 42 |
rcx@3695 | 43 # libGLU is included in the package libglu-mesa |
rcx@3695 | 44 rm -r -f $fs/usr/lib/libGLU* |
pankso@4170 | 45 |
rcx@3695 | 46 #libGLw is included in the package libglw-mesa |
rcx@3695 | 47 rm -r -f $fs/usr/lib/libGLw* |
pankso@12548 | 48 |
jozee@5537 | 49 #libEGL is included in the package libegl-mesa |
jozee@5537 | 50 rm -r -f $fs/usr/lib/libEGL* |
pascal@592 | 51 } |