wok-next diff xorg-libXfont/receipt @ rev 15608
hubbub: fix compile_rules
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Dec 06 20:31:17 2013 +0000 (2013-12-06) |
parents | b490f13f6603 |
children | 7f37d839c1c0 |
line diff
1.1 --- a/xorg-libXfont/receipt Tue Apr 24 23:56:58 2012 +0200 1.2 +++ b/xorg-libXfont/receipt Fri Dec 06 20:31:17 2013 +0000 1.3 @@ -3,27 +3,28 @@ 1.4 PACKAGE="xorg-libXfont" 1.5 VERSION="1.4.5" 1.6 CATEGORY="x-window" 1.7 -SHORT_DESC="Xorg server keyboard library." 1.8 +SHORT_DESC="X font Library" 1.9 MAINTAINER="pankso@slitaz.org" 1.10 +LICENSE="other" 1.11 SOURCE="libXfont" 1.12 TARBALL="$SOURCE-$VERSION.tar.bz2" 1.13 WEB_SITE="http://www.x.org/" 1.14 WGET_URL="$XORG_MIRROR/lib/$TARBALL" 1.15 1.16 -DEPENDS="freetype xorg-libfontenc" 1.17 -BUILD_DEPENDS="xorg-fontsproto freetype-dev xorg-libfontenc-dev \ 1.18 -xorg-xproto xorg-xtrans" 1.19 +DEPENDS="bzlib freetype xorg-libfontenc" 1.20 +BUILD_DEPENDS="freetype-dev zlib-dev xorg-xtrans xorg-fontsproto xorg-libfontenc-dev" 1.21 1.22 # Rules to configure and make the package. 1.23 compile_rules() 1.24 { 1.25 - cd $src 1.26 ./configure \ 1.27 --sysconfdir=/etc \ 1.28 - --mandir=/usr/share/man \ 1.29 --localstatedir=/var \ 1.30 + --disable-static \ 1.31 + --disable-devel-docs \ 1.32 $CONFIGURE_ARGS && 1.33 - make && make install 1.34 + make && 1.35 + make install 1.36 } 1.37 1.38 # Rules to gen a SliTaz package suitable for Tazpkg. 1.39 @@ -32,4 +33,3 @@ 1.40 mkdir -p $fs/usr/lib 1.41 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.42 } 1.43 -