wok-4.x annotate xorg-libXfont/receipt @ rev 12451
Up apache (2.2.29), CVE-2014-0231
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 16 10:13:52 2015 +0200 (2015-06-16) |
parents | c514cc4854d8 |
children |
rev | line source |
---|---|
pankso@87 | 1 # SliTaz package receipt. |
pankso@87 | 2 |
pankso@87 | 3 PACKAGE="xorg-libXfont" |
slaxemulator@7052 | 4 VERSION="1.4.3" |
pankso@87 | 5 CATEGORY="x-window" |
pankso@87 | 6 SHORT_DESC="Xorg server keyboard library." |
pankso@87 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@87 | 8 SOURCE="libXfont" |
gokhlayeh@6993 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@5008 | 10 DEPENDS="freetype xorg-libfontenc" |
slaxemulator@8029 | 11 BUILD_DEPENDS="xorg-fontsproto freetype-dev \ |
slaxemulator@8029 | 12 xorg-libfontenc-dev xorg-xproto xorg-xtrans" |
pankso@87 | 13 WEB_SITE="http://www.x.org/" |
pankso@87 | 14 WGET_URL="$XORG_MIRROR/lib/$TARBALL" |
pankso@87 | 15 |
pankso@87 | 16 # Rules to configure and make the package. |
pankso@87 | 17 compile_rules() |
pankso@87 | 18 { |
pankso@3012 | 19 cd $src |
pascal@12430 | 20 sed -i 's/STARTCHAR %s/STARTCHAR %99s/' src/bitmap/bdfread.c |
pankso@3012 | 21 ./configure \ |
pankso@3012 | 22 --prefix=/usr --sysconfdir=/etc \ |
pankso@3012 | 23 --mandir=/usr/share/man --localstatedir=/var \ |
pascal@5008 | 24 $CONFIGURE_ARGS && |
pascal@5008 | 25 make && |
pankso@3012 | 26 make DESTDIR=$PWD/_pkg install |
pankso@87 | 27 } |
pankso@87 | 28 |
pankso@87 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@87 | 30 genpkg_rules() |
pankso@87 | 31 { |
pankso@87 | 32 mkdir -p $fs/usr/lib |
pankso@3012 | 33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@87 | 34 } |
pankso@87 | 35 |