wok annotate mesa/receipt @ rev 9973

lostirc: fix receipt
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 18 19:10:54 2011 +0200 (2011-05-18)
parents 1a1747f915cc
children 3b75bb1bb79f
rev   line source
pascal@592 1 # SliTaz package receipt.
pascal@592 2
pascal@592 3 PACKAGE="mesa"
slaxemulator@9202 4 VERSION="7.10.1"
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@9735 15 DEPENDS="expat libdrm xorg-libXdamage xorg-libXxf86vm xorg-libXt"
pankso@9735 16 BUILD_DEPENDS="$DEPENDS expat-dev libdrm-dev xorg-libXdamage-dev \
pankso@9735 17 xorg-libXxf86vm-dev xorg-libXt-dev xorg-dri2proto xorg-glproto \
pankso@9735 18 pkg-config talloc xorg-makedepend lesstif libxml2-python xorg-imake \
pankso@9735 19 lesstif-dev"
pankso@9735 20
slaxemulator@8081 21
pascal@592 22 # Rules to configure and make the package.
pascal@592 23 compile_rules()
rcx@3695 24 {
pankso@3007 25 ln -s $src $PACKAGE-$VERSION 2>/dev/null
pankso@4421 26
pascal@592 27 cd $src
rcx@3695 28 ./configure \
rcx@3695 29 --prefix=/usr \
rcx@3695 30 --with-x \
rcx@3695 31 --enable-motif \
gokhlayeh@6993 32 --enable-gallium-radeon \
gokhlayeh@6993 33 --enable-gallium-nouveau \
gokhlayeh@6993 34 --enable-xcb \
rcx@3695 35 $CONFIGURE_ARGS &&
pascal@5781 36 make -j 4 &&
gokhlayeh@8078 37 make DESTDIR=$PWD/_pkg install
pascal@592 38 }
pascal@592 39
pascal@592 40 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@592 41 genpkg_rules()
pascal@592 42 {
pankso@3007 43 mkdir -p $fs/usr/lib
pankso@3007 44 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@4421 45
pankso@4421 46 # DRI drivers are include in the package mesa-dri-*
pankso@4421 47 #cp -a $_pkg/usr/lib/dri $fs/usr/lib
pankso@4170 48
rcx@3695 49 # libGLU is included in the package libglu-mesa
rcx@3695 50 rm -r -f $fs/usr/lib/libGLU*
pankso@4170 51
rcx@3695 52 #libGLw is included in the package libglw-mesa
rcx@3695 53 rm -r -f $fs/usr/lib/libGLw*
jozee@5537 54
jozee@5537 55 #libEGL is included in the package libegl-mesa
jozee@5537 56 rm -r -f $fs/usr/lib/libEGL*
pascal@592 57 }