added lib32-pango

This commit is contained in:
Giuseppe 2011-01-16 10:49:00 +00:00
parent 764a460e80
commit 9267030e31
3 changed files with 86 additions and 0 deletions

45
lib32-pango/PKGBUILD Normal file
View File

@ -0,0 +1,45 @@
# Lib32 Packages for Chakra, part of chakra-project.org
#
# maintainer (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
# maintainer (x86_64): Anke Boersma <abveritas[at]chakra-project[dot]org>
_pkgbasename=pango
pkgname=lib32-$_pkgbasename
pkgver=1.28.3
pkgrel=1
pkgdesc="A library for layout and rendering of text (32-bit)"
arch=('x86_64')
license=('LGPL')
depends=('lib32-glib2>=2.25.15' 'lib32-cairo>=1.10.0' 'lib32-libxft>=2.1.14'
'lib32-freetype2>=2.4.2' $_pkgbasename)
makedepends=("gcc-multilib")
options=('!libtool' '!emptydirs')
install=pango.install
source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/1.28/${_pkgbasename}-${pkgver}.tar.bz2
pango-modules-conffile.patch)
url="http://www.pango.org/"
sha256sums=('5e278bc9430cc7bb00270f183360d262c5006b51248e8b537ea904573f200632'
'4a178b60dd420ae53baeabbecfaaeca4070a4b777b2b3f36d137cd70b5a270c3')
build() {
export CC="gcc -m32"
export CXX="g++ -m32"
export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
cd "${srcdir}/${_pkgbasename}-${pkgver}"
patch -p0 < ${srcdir}/pango-modules-conffile.patch
# No libthai support yet
./configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/etc \
--localstatedir=/var --with-included-modules=basic-fc \
--with-dynamic-modules=arabic-fc,arabic-lang,basic-fc,basic-win32,basic-x,basic-atsui,hangul-fc,hebrew-fc,indic-fc,indic-lang,khmer-fc,syriac-fc,tibetan-fc \
--disable-introspection
make
}
package() {
cd "${srcdir}/${_pkgbasename}-${pkgver}"
make DESTDIR="${pkgdir}" install
rm -rf "$pkgdir"/etc
rm -rf "$pkgdir"/usr/{bin/pango-view,share,include}
mv "$pkgdir"/usr/bin/pango-querymodules "$pkgdir"/usr/bin/pango-querymodules-32
}

View File

@ -0,0 +1,20 @@
--- pango/modules.c.orig 2010-08-26 06:45:49.329259966 +0200
+++ pango/modules.c 2010-08-26 06:46:13.786685177 +0200
@@ -529,7 +529,7 @@
if (!file_str)
file_str = g_build_filename (pango_get_sysconf_subdirectory (),
- "pango.modules",
+ "pango.modules-32",
NULL);
files = pango_split_file_list (file_str);
@@ -640,7 +640,7 @@
if (!no_module_warning)
{
gchar *filename = g_build_filename (pango_get_sysconf_subdirectory (),
- "pango.modules",
+ "pango.modules-32",
NULL);
g_critical ("No modules found:\n"
"No builtin or dynamically loaded modules were found.\n"

21
lib32-pango/pango.install Normal file
View File

@ -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-32 >etc/pango/pango.modules-32
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
if [ -f etc/pango/pango.modules-32 ]; then
rm etc/pango/pango.modules-32
fi
post_install $1
}
# arg 1: the old package version
pre_remove() {
rm etc/pango/pango.modules-32
}