2011-01-16 18:49:00 +08:00
|
|
|
# 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
|
2012-05-28 05:38:17 +08:00
|
|
|
pkgver=1.30.0
|
2012-12-18 05:37:43 +08:00
|
|
|
pkgrel=2
|
2011-01-16 18:49:00 +08:00
|
|
|
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
|
2012-05-28 05:38:17 +08:00
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${_pkgbasename}/1.30/${_pkgbasename}-${pkgver}.tar.xz
|
2011-01-16 18:49:00 +08:00
|
|
|
pango-modules-conffile.patch)
|
|
|
|
url="http://www.pango.org/"
|
2012-05-28 05:38:17 +08:00
|
|
|
sha256sums=('7c6d2ab024affaed0e942f9279b818235f9c6a36d9fc50688f48d387f4102dff'
|
2011-01-16 18:49:00 +08:00
|
|
|
'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
|
|
|
|
}
|