From ed51a8c1611ffa602f5f9628c858f6edbc218fc8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 7 Sep 2012 00:03:53 +0000 Subject: Fri Sep 7 00:03:53 UTC 2012 --- gnome-unstable/pango/PKGBUILD | 30 ++++++++++++++++++++++++++++++ gnome-unstable/pango/pango.install | 21 +++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 gnome-unstable/pango/PKGBUILD create mode 100644 gnome-unstable/pango/pango.install (limited to 'gnome-unstable/pango') diff --git a/gnome-unstable/pango/PKGBUILD b/gnome-unstable/pango/PKGBUILD new file mode 100644 index 000000000..0826ef16b --- /dev/null +++ b/gnome-unstable/pango/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 166307 2012-09-05 21:16:30Z jgc $ +# Maintainer: Jan de Groot + +pkgname=pango +pkgver=1.31.1 +pkgrel=1 +pkgdesc="A library for layout and rendering of text" +arch=('i686' 'x86_64') +license=('LGPL') +depends=('libthai' 'cairo' 'libxft' 'harfbuzz') +makedepends=('harfbuzz' 'fontconfig' 'cairo' 'libxft' 'libthai' 'gobject-introspection') +options=('!libtool') +install=pango.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver:0:4}/${pkgname}-${pkgver}.tar.xz) +url="http://www.pango.org/" +sha256sums=('b87ecdde5bf6f9a407162155edbba452923e79f86bcf8a09d6ca1916222c9f81') + +build() { + cd ${pkgname}-${pkgver} + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --with-included-modules=basic-fc + make +} + +package() { + cd ${pkgname}-${pkgver} + make -j1 DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/etc/pango" +} diff --git a/gnome-unstable/pango/pango.install b/gnome-unstable/pango/pango.install new file mode 100644 index 000000000..73b0f5bf1 --- /dev/null +++ b/gnome-unstable/pango/pango.install @@ -0,0 +1,21 @@ +# arg 1: the new package version +post_install() { + # we need to ldconfig first, in case xfree86's libs aren't + # in ld.so.cache yet + sbin/ldconfig -r . + usr/bin/pango-querymodules >etc/pango/pango.modules +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() { + if [ -f usr/etc/pango/pango.modules ]; then + rm usr/etc/pango/pango.modules + fi + post_install $1 +} + +# arg 1: the old package version +pre_remove() { + rm etc/pango/pango.modules +} -- cgit v1.2.3-54-g00ecf