X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id DC59CDC0169 for ; Mon, 30 Jun 2014 06:03:09 +0000 (UTC) Received: by mail-pa0-f49.google.com with SMTP id lj1so8003087pab.36 for ; Sun, 29 Jun 2014 23:03:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ND5ZOs2qNylqunrpzjcXr+06aiy80c5NOyrtyXvCEVI=; b=LyR+NIDl/DUZCS+0nIqiogLVrDVu/DE7DhYtwhpeuYYNDYYRZHngDyWjZObDmP5B41 9jeEhxADB4xXfM9YxRPNGXbpXYzWaqztdA+sjv55u+5/FOxNeZSCfcHsMOurQxkcSb58 QK9JYZruXOrutJSwQJrFbFTevWAUg1YQh3CUmY1DjO+1tHO3q3NVfIeANJ1fMn263yXl /cQLAb8AcYEWiUKxCKeHpllKmbhdVCbhLwTeUQiFVPIcFMoFHH7UFoxRNzlbkioHNazR DkmdvUAvcRFTw2l3+zCt/fH3R338wNiTf7obhaDpHklV6BeFjWohoM8P6GfxL9lgkzGg iXCA== X-Received: by 10.66.179.111 with SMTP id df15mr49213726pac.52.1404108189200; Sun, 29 Jun 2014 23:03:09 -0700 (PDT) Received: from localhost.localdomain ([50.0.227.219]) by mx.google.com with ESMTPSA id si8sm94167764pab.27.2014.06.29.23.03.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 29 Jun 2014 23:03:08 -0700 (PDT) From: Isaac Dunham To: alpine-devel@lists.alpinelinux.org Cc: Isaac Dunham Subject: [alpine-devel] [PATCH] main/ghostscript: cups driver needed for printing Date: Sun, 29 Jun 2014 23:03:31 -0700 Message-Id: <1404108211-6948-1-git-send-email-ibid.ag@gmail.com> X-Mailer: git-send-email 2.0.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Without the 'cups' driver being enabled in ghostscript, cups cannot work. --- main/ghostscript/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/ghostscript/APKBUILD b/main/ghostscript/APKBUILD index f61b15e..1df4836 100644 --- a/main/ghostscript/APKBUILD +++ b/main/ghostscript/APKBUILD @@ -2,14 +2,14 @@ # Maintainer: Cameron Banta 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 -- 2.0.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---