wok diff fontconfig/receipt @ rev 14429

fix openjpeg-dev, add openjpeg2, rebuild mupdf, move from undigest djvulibre, and finally add fbpdf-mupdf
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 24 14:06:49 2013 +0000 (2013-04-24)
parents b60c56ce695d
children 3b4e4318134e
line diff
     1.1 --- a/fontconfig/receipt	Sun May 22 00:39:42 2011 +0200
     1.2 +++ b/fontconfig/receipt	Wed Apr 24 14:06:49 2013 +0000
     1.3 @@ -1,36 +1,40 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fontconfig"
     1.7 -VERSION="2.8.0"
     1.8 +VERSION="2.10.91"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="Font configuration utilities and library."
    1.11 +SHORT_DESC="Font configuration utilities and library"
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13 -DEPENDS="expat freetype zlib"
    1.14 +WEB_SITE="http://www.fontconfig.org/wiki/"
    1.15 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 +WGET_URL="http://www.freedesktop.org/software/fontconfig/release/$TARBALL"
    1.17 +
    1.18 +DEPENDS="bzlib expat freetype libxml2"
    1.19  BUILD_DEPENDS="libxml2-dev freetype-dev"
    1.20 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.21 -WEB_SITE="http://www.fontconfig.org/wiki/"
    1.22 -WGET_URL="http://fontconfig.org/release/$TARBALL"
    1.23  
    1.24  # Rules to configure and make the package.
    1.25  compile_rules()
    1.26  {
    1.27 -	cd $src
    1.28  	./configure \
    1.29  		--sysconfdir=/etc \
    1.30 -		--prefix=/usr \
    1.31 -		--mandir=/usr/share/man \
    1.32  		--localstatedir=/var \
    1.33  		--with-arch=$ARCH \
    1.34 +		--disable-static \
    1.35 +		--enable-iconv \
    1.36 +		--enable-libxml2 \
    1.37 +		--disable-docs \
    1.38  		$CONFIGURE_ARGS &&
    1.39 -	make && make DESTDIR=$PWD/_pkg install
    1.40 +	make &&
    1.41 +	make DESTDIR=$install install
    1.42  }
    1.43  
    1.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.45  genpkg_rules()
    1.46  {
    1.47  	mkdir -p $fs/usr/lib
    1.48 -	cp -a $_pkg/usr/bin $fs/usr
    1.49 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.50 -	cp -a $_pkg/etc $fs
    1.51 -	cp -a $_pkg/var $fs
    1.52 +	cp -a $install/etc $fs
    1.53 +	cp -a $install/usr/bin $fs/usr
    1.54 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.55 +	cp -a $install/usr/share $fs/usr
    1.56 +	cp -a $install/var $fs
    1.57  }