[arch-commits] Commit in ghostscript/repos/extra-x86_64 (6 files)

2011-08-21 Thread andyrtr
Date: Monday, August 22, 2011 @ 00:56:03
  Author: andyrtr
Revision: 136050

archrelease: copy trunk to extra-x86_64

Added:
  ghostscript/repos/extra-x86_64/PKGBUILD
(from rev 136049, ghostscript/trunk/PKGBUILD)
  ghostscript/repos/extra-x86_64/gs_bug691759and691760.diff
(from rev 136049, ghostscript/trunk/gs_bug691759and691760.diff)
  ghostscript/repos/extra-x86_64/svn_rev11948.diff
(from rev 136049, ghostscript/trunk/svn_rev11948.diff)
Deleted:
  ghostscript/repos/extra-x86_64/PKGBUILD
  ghostscript/repos/extra-x86_64/gs_bug691759and691760.diff
  ghostscript/repos/extra-x86_64/svn_rev11948.diff

+
 PKGBUILD   |  135 +++--
 gs_bug691759and691760.diff |  430 +--
 svn_rev11948.diff  |   32 +--
 3 files changed, 301 insertions(+), 296 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-22 04:55:16 UTC (rev 136049)
+++ PKGBUILD2011-08-22 04:56:03 UTC (rev 136050)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=ghostscript
-pkgver=9.04
-pkgrel=3
-pkgdesc="An interpreter for the PostScript language"
-arch=('i686' 'x86_64')
-license=('GPL3' 'custom')
-depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff') # 'lcms' 'lcms2') # move in libpaper from community?
-makedepends=('gtk2' 'gnutls')
-optdepends=('texlive-core:  needed for dvipdf'
-'gtk2:  needed for gsx')
-url="http://www.ghostscript.com/";
-source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2)
-options=('!libtool' '!makeflags')
-md5sums=('9f6899e821ab6d78ab2c856f10fa3023')
-
-build() {
-  cd ${srcdir}/ghostscript-${pkgver}
-
-  # force it to use system-libs
-  rm -rf jpeg libpng zlib jasper expat tiff freetype #lcms lcms2 # system 
lcms2 would not be used. lcms breaks color printing 
https://bugs.archlinux.org/task/25519
-
-  ./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-install-cups \
-   --enable-fontconfig \
-   --enable-freetype \
-   --without-luratech \
-   --disable-compile-inits #--help # needed for linking with system-zlib
-  make
-  
-  # Build IJS
-  cd ${srcdir}/ghostscript-${pkgver}/ijs
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-shared --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/ghostscript-${pkgver}
-  make DESTDIR=${pkgdir} \
-   cups_serverroot=${pkgdir}/etc/cups \
-   cups_serverbin=${pkgdir}/usr/lib/cups install soinstall
-
-  # install 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}/
-
-  # remove unwanted localized man-pages
-  rm -rf $pkgdir/usr/share/man/[^man1]*
-
-  # install IJS
-  cd ${srcdir}/ghostscript-${pkgver}/ijs
-  make DESTDIR=${pkgdir} install
-}

Copied: ghostscript/repos/extra-x86_64/PKGBUILD (from rev 136049, 
ghostscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-22 04:56:03 UTC (rev 136050)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=ghostscript
+pkgver=9.04
+pkgrel=4
+pkgdesc="An interpreter for the PostScript language"
+arch=('i686' 'x86_64')
+license=('GPL3' 'custom')
+depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff' 'lcms') # 'lcms2' won't get used) # move in libpaper from community?
+makedepends=('gtk2' 'gnutls')
+optdepends=('texlive-core:  needed for dvipdf'
+'gtk2:  needed for gsx')
+url="http://www.ghostscript.com/";
+source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2
+   ghostscript-cups-rgbw.patch)
+options=('!libtool' '!makeflags')
+md5sums=('9f6899e821ab6d78ab2c856f10fa3023'
+ '7c1477e1cadd9c451ea8d6ec3fbbc670')
+
+build() {
+  cd ${srcdir}/ghostscript-${pkgver}
+  
+  # fix broken color printing https://bugs.archlinux.org/task/25519
+  patch -Np1 -i ${srcdir}/ghostscript-cups-rgbw.patch
+
+  # force it to use system-libs
+  rm -rf jpeg libpng zlib jasper expat tiff freetype lcms
+
+  ./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-install-cups \
+   --enable-fontconfig \
+   --enable-freetype \
+   --without-luratech \
+   --disable-compile-inits #

[arch-commits] Commit in ghostscript/repos/extra-x86_64 (6 files)

2011-08-22 Thread andyrtr
Date: Monday, August 22, 2011 @ 12:48:17
  Author: andyrtr
Revision: 136087

archrelease: copy trunk to extra-x86_64

Added:
  ghostscript/repos/extra-x86_64/PKGBUILD
(from rev 136086, ghostscript/trunk/PKGBUILD)
  ghostscript/repos/extra-x86_64/gs_bug691759and691760.diff
(from rev 136086, ghostscript/trunk/gs_bug691759and691760.diff)
  ghostscript/repos/extra-x86_64/svn_rev11948.diff
(from rev 136086, ghostscript/trunk/svn_rev11948.diff)
Deleted:
  ghostscript/repos/extra-x86_64/PKGBUILD
  ghostscript/repos/extra-x86_64/gs_bug691759and691760.diff
  ghostscript/repos/extra-x86_64/svn_rev11948.diff

+
 PKGBUILD   |  140 +++---
 gs_bug691759and691760.diff |  430 +--
 svn_rev11948.diff  |   32 +--
 3 files changed, 301 insertions(+), 301 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2011-08-22 16:47:23 UTC (rev 136086)
+++ PKGBUILD2011-08-22 16:48:17 UTC (rev 136087)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: AndyRTR 
-
-pkgname=ghostscript
-pkgver=9.04
-pkgrel=4
-pkgdesc="An interpreter for the PostScript language"
-arch=('i686' 'x86_64')
-license=('GPL3' 'custom')
-depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff' 'lcms') # 'lcms2' won't get used) # move in libpaper from community?
-makedepends=('gtk2' 'gnutls')
-optdepends=('texlive-core:  needed for dvipdf'
-'gtk2:  needed for gsx')
-url="http://www.ghostscript.com/";
-source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2
-   ghostscript-cups-rgbw.patch)
-options=('!libtool' '!makeflags')
-md5sums=('9f6899e821ab6d78ab2c856f10fa3023'
- '7c1477e1cadd9c451ea8d6ec3fbbc670')
-
-build() {
-  cd ${srcdir}/ghostscript-${pkgver}
-  
-  # fix broken color printing https://bugs.archlinux.org/task/25519
-  patch -Np1 -i ${srcdir}/ghostscript-cups-rgbw.patch
-
-  # force it to use system-libs
-  rm -rf jpeg libpng zlib jasper expat tiff freetype lcms
-
-  ./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-install-cups \
-   --enable-fontconfig \
-   --enable-freetype \
-   --without-luratech \
-   --disable-compile-inits #--help # needed for linking with system-zlib
-  make
-  
-  # Build IJS
-  cd ${srcdir}/ghostscript-${pkgver}/ijs
-  ./autogen.sh
-  ./configure --prefix=/usr --enable-shared --disable-static
-  make
-}
-
-package() {
-  cd ${srcdir}/ghostscript-${pkgver}
-  make DESTDIR=${pkgdir} \
-   cups_serverroot=${pkgdir}/etc/cups \
-   cups_serverbin=${pkgdir}/usr/lib/cups install soinstall
-
-  # install 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}/
-
-  # remove unwanted localized man-pages
-  rm -rf $pkgdir/usr/share/man/[^man1]*
-
-  # install IJS
-  cd ${srcdir}/ghostscript-${pkgver}/ijs
-  make DESTDIR=${pkgdir} install
-}

Copied: ghostscript/repos/extra-x86_64/PKGBUILD (from rev 136086, 
ghostscript/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2011-08-22 16:48:17 UTC (rev 136087)
@@ -0,0 +1,70 @@
+# $Id$
+# Maintainer: AndyRTR 
+
+pkgname=ghostscript
+pkgver=9.04
+pkgrel=5
+pkgdesc="An interpreter for the PostScript language"
+arch=('i686' 'x86_64')
+license=('GPL3' 'custom')
+depends=('libxt' 'libcups' 'fontconfig' 'jasper' 'zlib' 'libpng' 'libjpeg' 
'libtiff' 'lcms') # 'lcms2' won't get used) # move in libpaper from community?
+makedepends=('gtk2' 'gnutls')
+optdepends=('texlive-core:  needed for dvipdf'
+'gtk2:  needed for gsx')
+url="http://www.ghostscript.com/";
+source=(http://downloads.ghostscript.com/public/ghostscript-${pkgver}.tar.bz2
+   ghostscript-cups-rgbw.patch)
+options=('!libtool' '!makeflags')
+md5sums=('9f6899e821ab6d78ab2c856f10fa3023'
+ 'bc56eb8c5fef0ecf964f6b3e9b7e65ae')
+
+build() {
+  cd ${srcdir}/ghostscript-${pkgver}
+  
+  # fix broken color printing https://bugs.archlinux.org/task/25519
+  patch -Np1 -i ${srcdir}/ghostscript-cups-rgbw.patch
+
+  # force it to use system-libs
+  rm -rf jpeg libpng zlib jasper expat tiff freetype lcms
+
+  ./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-install-cups \
+