wok-next diff xorg-libXft/receipt @ rev 19950

Add libegl-mesa
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 16 12:41:47 2017 +0200 (2017-10-16)
parents f463de72afe3
children 0e7893ac206d
line diff
     1.1 --- a/xorg-libXft/receipt	Sun Jun 18 04:38:10 2017 +0300
     1.2 +++ b/xorg-libXft/receipt	Mon Oct 16 12:41:47 2017 +0200
     1.3 @@ -1,19 +1,20 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="xorg-libXft"
     1.8  VERSION="2.3.2"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="X FreeType library"
    1.11 +SHORT_DESC="Client side font rendering library"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13 -LICENSE="other"
    1.14 +LICENSE="MIT"
    1.15  WEB_SITE="https://www.x.org/wiki/"
    1.16  HOST_ARCH="i486 arm"
    1.17  
    1.18  TARBALL="libXft-$VERSION.tar.bz2"
    1.19  WGET_URL="$XORG_MIRROR/lib/$TARBALL"
    1.20  
    1.21 -DEPENDS="fontconfig xorg-libXrender"
    1.22  BUILD_DEPENDS="xorg-libXrender-dev freetype-dev fontconfig-dev libxml2-dev"
    1.23 +SPLIT="xorg-libXft-dev"
    1.24 +PKG_RULE="std-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28 @@ -21,7 +22,6 @@
    1.29  	./configure \
    1.30  		--sysconfdir=/etc \
    1.31  		--localstatedir=/var \
    1.32 -		--disable-static \
    1.33  		$CONFIGURE_ARGS &&
    1.34  	make &&
    1.35  	make install
    1.36 @@ -30,5 +30,19 @@
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	copy *.so*
    1.41 +	case $PACKAGE in
    1.42 +		*-libXft)
    1.43 +			copy @std
    1.44 +			DEPENDS="bzlib fontconfig freetype glib libharfbuzz liblzma \
    1.45 +			libpng16 xorg-libxcb libxml2 pcre xorg-libX11 xorg-libXau \
    1.46 +			xorg-libXdmcp xorg-libXrender zlib"
    1.47 +			;;
    1.48 +		*-dev)
    1.49 +			copy @dev
    1.50 +			DEPENDS="xorg-libXft bzip2-dev fontconfig-dev freetype-dev \
    1.51 +			glib-dev harfbuzz-dev libpng16-dev xorg-libxcb-dev libxml2-dev \
    1.52 +			pcre-dev xorg-libX11-dev xorg-libXau-dev xorg-libXdmcp-dev \
    1.53 +			xorg-libXrender-dev xorg-xproto xz-dev zlib-dev"
    1.54 +			;;
    1.55 +	esac
    1.56  }