diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core/ghostscript/PKGBUILD | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core/ghostscript/PKGBUILD')
-rw-r--r-- | abs/core/ghostscript/PKGBUILD | 65 |
1 files changed, 47 insertions, 18 deletions
diff --git a/abs/core/ghostscript/PKGBUILD b/abs/core/ghostscript/PKGBUILD index 5a7aa2a..f4139ff 100644 --- a/abs/core/ghostscript/PKGBUILD +++ b/abs/core/ghostscript/PKGBUILD @@ -1,27 +1,51 @@ -# $Id: PKGBUILD 20527 2008-12-05 14:17:31Z allan $ +# $Id: PKGBUILD 73021 2010-03-21 21:20:23Z andyrtr $ # Maintainer: AndyRTR <andyrtr@archlinux.org> pkgname=ghostscript -pkgver=8.63 -pkgrel=5 +pkgver=8.71 +pkgrel=3 pkgdesc="An interpreter for the PostScript language" -arch=(i686 x86_64) -license=('GPL' 'custom') -depends=('libjpeg' 'libxext' 'libxt' 'libcups>=1.3.8-2' 'fontconfig>=2.6.0' 'gtk2>=2.12.11' 'gnutls>=2.4.1') -makedepends=('automake' 'autoconf') -optdepends=('texlive-core: dvipdf') +arch=('i686' 'x86_64') +license=('GPL3' 'custom') +depends=('libxext' 'libxt' 'libcups>=1.4.2-3' 'fontconfig>=2.8.0' 'gnutls>=2.8.5' 'cairo>=1.8.8-2' + 'jasper>=1.900.1-4' 'zlib' 'libpng>=1.4.0' 'libjpeg>=8') +makedepends=('automake' 'autoconf' 'gtk2>=2.18.6') +optdepends=('texlive-core: dvipdf' + 'gtk2: gsx') replaces=('ghostscript-lrpng') provides=('ghostscript-lprng') -url="http://www.cs.wisc.edu/~ghost/" -source=(http://ghostscript.com/releases/ghostscript-${pkgver}.tar.bz2 - #ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/GPL/gs863/ghostscript-${pkgver}.tar.bz2 - ghostscript-fPIC.patch) +url="http://www.ghostscript.com/" +source=(http://ghostscript.com/releases/ghostscript-${pkgver}.tar.xz + ghostscript-fPIC.patch + ghostscript-system-jasper.patch + libpng14.patch + ghostscript-pdf2dsc.patch + svn_r10890.patch) options=('!libtool' '!makeflags') -md5sums=('c770eedfdd846a53e211e3ba5339de21' - '29540cd88aad9a3a788d68193523080d') +md5sums=('5005d68f7395c2bfc4b05c1a60d9b6ba' + '1a8fcacf0005214db823225c870f093d' + '03e27cd02471ab3b642c344fa06b623e' + 'be94ee357986f7f63d1b470da5bdc99e' + 'f88f3764fc11e3ae2a86b17d2502da2f' + 'fe0888a74d7870af234ad53a2f74380a') build() { cd ${srcdir}/ghostscript-${pkgver} + # force it to use system-libs + rm -rf jpeg libpng zlib jasper expat + + patch -Np1 -i ${srcdir}/libpng14.patch || return 1 + + # fix build with systems jasper + patch -Np1 -i ${srcdir}/ghostscript-system-jasper.patch || return 1 + + # fix PDF viewing with gv - from Fedora + patch -Np1 -i ${srcdir}/ghostscript-pdf2dsc.patch || return 1 + + # fix segfaults - http://bugs.archlinux.org/task/18339 + patch -Np1 -i ${srcdir}/svn_r10890.patch || return 1 + + if [ "$CARCH" = "x86_64" ]; then patch -Np1 -i ${srcdir}/ghostscript-fPIC.patch || return 1 fi @@ -31,17 +55,22 @@ build() { ./autogen.sh ./configure --prefix=/usr --enable-shared --disable-static make || return 1 - make DESTDIR=${pkgdir} install || return 1 + make -j1 DESTDIR=${pkgdir} install || return 1 cd .. - ./configure --prefix=/usr --enable-dynamic --enable-threads --with-ijs \ + ./autogen.sh + ./configure --prefix=/usr --enable-dynamic --with-ijs \ --with-jbig2dec --with-omni --with-x --with-drivers=ALL\ - --with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts + --with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \ + --disable-compile-inits # needed for linking with system-zlib make || return 1 - make DESTDIR=${pkgdir} \ + make -j1 DESTDIR=${pkgdir} \ cups_serverroot=${pkgdir}/etc/cups \ cups_serverbin=${pkgdir}/usr/lib/cups install soinstall + # install a missing doc files # http://bugs.archlinux.org/task/18023 + install -m 644 ${srcdir}/ghostscript-${pkgver}/doc/{Ps2ps2.htm,gs-vms.hlp,gsdoc.el,pscet_status.txt} ${pkgdir}/usr/share/ghostscript/$pkgver/doc/ + mkdir -p ${pkgdir}/usr/share/licenses/${pkgname} install -m644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/ |