diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2014-06-29 23:03:31 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-07-01 14:21:20 +0000 |
commit | f4b38b749e5826885416c85727d8b413b0372b17 (patch) | |
tree | 73400d7f3a38fa79e6a97296fd73e2b5b5310e26 | |
parent | bd662709fe2c8742823e1cea6cddcafd54a942d4 (diff) | |
download | aports-f4b38b749e5826885416c85727d8b413b0372b17.tar.bz2 aports-f4b38b749e5826885416c85727d8b413b0372b17.tar.xz |
main/ghostscript: cups driver needed for printing
Without the 'cups' driver being enabled in ghostscript, cups cannot work.
-rw-r--r-- | main/ghostscript/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/ghostscript/APKBUILD b/main/ghostscript/APKBUILD index f61b15e6c4..1df48367c8 100644 --- a/main/ghostscript/APKBUILD +++ b/main/ghostscript/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Cameron Banta <cbanta@gmail.com> pkgname=ghostscript pkgver=9.10 -pkgrel=0 +pkgrel=1 pkgdesc="An interpreter for the PostScript language and for PDF" url="http://ghostscript.com/" arch="all" license="GPL3" makedepends="autoconf automake libjpeg-turbo-dev libpng-dev jasper-dev expat-dev zlib-dev tiff-dev freetype-dev libiconv-dev lcms-dev gtk+3.0-dev - libtool" + cups-dev libtool" subpackages="$pkgname-doc $pkgname-dev $pkgname-gtk" source="http://downloads.ghostscript.com/public/$pkgname-$pkgver.tar.gz" @@ -64,7 +64,7 @@ build(){ --with-jbig2dec \ --without-omni \ --enable-gtk \ - --with-drivers=FILES \ + --with-drivers=FILES,cups \ --with-fontpath=/usr/share/fonts/Type1:/usr/share/fonts \ --disable-compile-inits \ || return 1 |