wok-next annotate glw/receipt @ rev 20502

Swap: current mesa (which is developing and change it's version) is just mesa, while old mesa is mesa12 now (will be removed if no one old package require it).
Also, change long names to its origins: libglu-mesa -> glu, libglw-mesa -> glw, all variations with libegl -> mesa-libegl (because it is part of mesa package).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 16 00:27:34 2018 +0200 (2018-03-16)
parents
children a5d7827e08cf
rev   line source
al@20502 1 # SliTaz package receipt v2.
al@20502 2
al@20502 3 PACKAGE="glw"
al@20502 4 VERSION="8.0.0"
al@20502 5 CATEGORY="x-window"
al@20502 6 SHORT_DESC="OpenGL widget library"
al@20502 7 MAINTAINER="pascal.bellard@slitaz.org"
al@20502 8 LICENSE="MIT"
al@20502 9 WEB_SITE="http://www.mesa3d.org/"
al@20502 10
al@20502 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20502 12 WGET_URL="ftp://ftp.freedesktop.org/pub/mesa/glw/$TARBALL"
al@20502 13
al@20502 14 BUILD_DEPENDS="mesa-dev automake autoconf libtool util-linux-uuid-dev \
al@20502 15 expat-dev xorg-dev intltool gettext xorg-libxshmfence-dev"
al@20502 16 SPLIT="glw-dev"
al@20502 17
al@20502 18 compile_rules() {
al@20502 19 ./configure \
al@20502 20 --disable-static \
al@20502 21 $CONFIGURE_ARGS &&
al@20502 22 make $MAKEFLAGS && make install
al@20502 23 }
al@20502 24
al@20502 25 genpkg_rules() {
al@20502 26 case $PACKAGE in
al@20502 27 glw)
al@20502 28 copy @std
al@20502 29 DEPENDS="glibc-base util-linux-uuid zlib freetype lesstif mesa \
al@20502 30 xorg-libICE xorg-libSM xorg-libX11 xorg-libXau xorg-libXdmcp \
al@20502 31 xorg-libXt"
al@20502 32 PROVIDE="libglw"
al@20502 33 ;;
al@20502 34 *-dev)
al@20502 35 copy @dev
al@20502 36 ;;
al@20502 37 esac
al@20502 38 }