wok-next annotate pango/receipt @ rev 6293
Added squashfs_lzma to kernel config. Added some more options to aufs in kernel. Added all missing modules into packages. Added scsi.patch to fix linux-headers scsi.h file to be compatible with glibc scsi.h. Up: aufs-utils to 20100916.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Sep 16 13:04:44 2010 +0000 (2010-09-16) |
parents | 9e38c2f11c48 |
children | 971a877972d9 |
rev | line source |
---|---|
pankso@22 | 1 # SliTaz package receipt. |
pankso@22 | 2 |
pankso@22 | 3 PACKAGE="pango" |
rcx@6018 | 4 VERSION="1.28.1" |
pankso@22 | 5 CATEGORY="x-window" |
pankso@22 | 6 SHORT_DESC="Library for layout and rendering of text." |
pankso@22 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@5005 | 8 DEPENDS="cairo glib expat libxml2 xorg-libXft fontconfig freetype xcb-util" |
pankso@2122 | 9 BUILD_DEPENDS="$DEPENDS cairo-dev glib-dev expat-dev libxml2-dev xorg-libXft-dev" |
pankso@22 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@22 | 11 WEB_SITE="http://www.pango.org/" |
rcx@6018 | 12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/pango/${VERSION%.*}/$TARBALL" |
pascal@1634 | 13 CONFIG_FILES="/etc/pango" |
pankso@22 | 14 |
pankso@22 | 15 # Rules to configure and make the package. |
pankso@22 | 16 compile_rules() |
pankso@22 | 17 { |
pankso@22 | 18 cd $src |
pankso@547 | 19 ./configure \ |
pankso@547 | 20 --prefix=/usr \ |
pankso@547 | 21 --sysconfdir=/etc \ |
pankso@547 | 22 --mandir=/usr/share/man \ |
pankso@547 | 23 --with-html-dir=/usr/share/doc \ |
pascal@1634 | 24 $CONFIGURE_ARGS && |
pascal@1634 | 25 make && |
pankso@22 | 26 make DESTDIR=$PWD/_pkg install |
pankso@22 | 27 } |
pankso@22 | 28 |
pankso@22 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@22 | 30 genpkg_rules() |
pankso@22 | 31 { |
pankso@22 | 32 mkdir -p $fs/usr/bin $fs/usr/lib |
pankso@22 | 33 cp -a $_pkg/usr/bin/* $fs/usr/bin |
pankso@22 | 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@22 | 35 cp -a $_pkg/usr/lib/pango $fs/usr/lib |
pankso@577 | 36 rm -rf $fs/usr/lib/pango/1.6.0/modules/*.la |
pankso@22 | 37 cp -a $_pkg/etc $fs |
pankso@22 | 38 pango-querymodules > $fs/etc/pango/pango.modules |
pankso@22 | 39 } |
pankso@22 | 40 |
pankso@22 | 41 # Pre and post install commands for Tazpkg. |
pankso@22 | 42 post_install() |
pankso@22 | 43 { |
pankso@22 | 44 echo "Processing post-install commands..." |
pankso@22 | 45 # Rebuils pango.modules when installed. |
pascal@5125 | 46 chroot $1/ /usr/bin/pango-querymodules > $1/etc/pango/pango.modules |
pankso@22 | 47 } |