X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-yw0-f180.google.com (mail-yw0-f180.google.com [209.85.161.180]) by lists.alpinelinux.org (Postfix) with ESMTP id C3AA45C4357 for ; Mon, 24 Oct 2016 03:51:16 +0000 (GMT) Received: by mail-yw0-f180.google.com with SMTP id w3so164687293ywg.1 for ; Sun, 23 Oct 2016 20:51:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=0ABUZzrpVNOTMQUIJgxjNQUqvyCLLblud1/rR9Bci6k=; b=BGMapG8/2qK/++CqLegSKK05SpYzHXe61CnCqeo4Q2KoWiTzayTtq/XHxFBVnj4YQZ zkW7xeiikUur6EfpONY0+zBIW3GnDU0MKlqjkbEt3flYzvL8JyYnXG61ZJihEWOF+S6V YmB1xGkiLzVhFLZU300gcBuhTnxDHTn170kHhnzDwwdoIJCwPC1mTS4iWyAXbik8J8ir A1lPv+/KMspQgxCT++G3qDgSJRGaRW0IvGql/hebgo57ucAXlP7ncqr2VjlWqyixUa7w Cw/V0eEBTuyIWxiHPt9R+6UdUAXV7xeUXjS8SEYlq5TZo0FOQwY4DF8MkkAIDQCYvUqY aOrQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=0ABUZzrpVNOTMQUIJgxjNQUqvyCLLblud1/rR9Bci6k=; b=h3kImPxEZUIN20vZyqm/WbVTsvnUAjZbGd/VDIjG6Yh2Ge+FLDIEV24o/smqmRXLd5 CIQC5ZxE4E2yxV9Igji2bDFNqeotg2Sq3WCxGd7U2u1Xr5HfySzpF7CFK7cR4t0C4goZ V5uTZXZnpxkDTdtQOHzewy30Fp/0NUsHrDjUnUst/U99gQDvcelTLlvLivF1oo8OswZy VVrDlFIZ3uHXnp5ZVSDyG2Lo5cfTgnDH7aAsutwY3xWQ0t1+oJmR1Ta9XCRcV7PLUHC0 kqAhnh8se49RYAMnf8wFFV6GeQCQp5OUMIgGPsJ46PFLi2OjsAp3kDQEalmG5XvAZuAX CmKg== X-Gm-Message-State: ABUngvdUdtw5rg9zPf3wV2fxnVTfyUh4pJZ2LO6jBt+IpNaav0riyMQpx2hIeLDK77H9AQ== X-Received: by 10.157.24.26 with SMTP id b26mr563320ote.54.1477281076157; Sun, 23 Oct 2016 20:51:16 -0700 (PDT) Received: from alp.my.domain ([2600:8807:c246:be00:9eb7:dff:feb2:27a1]) by smtp.gmail.com with ESMTPSA id x36sm2865040ota.5.2016.10.23.20.51.15 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Oct 2016 20:51:15 -0700 (PDT) From: Daniel Sabogal To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] testing/mupdf: allow both x11 and gl backends Date: Sun, 23 Oct 2016 23:51:16 -0400 Message-Id: <20161024035117.13577-1-dsabogalcc@gmail.com> X-Mailer: git-send-email 2.10.1 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: ref #5921 Default mupdf symlink to mupdf-x11 --- testing/mupdf/APKBUILD | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/testing/mupdf/APKBUILD b/testing/mupdf/APKBUILD index 8246d53..7962f6a 100644 --- a/testing/mupdf/APKBUILD +++ b/testing/mupdf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Michael Zhou pkgname=mupdf pkgver=1.9a -pkgrel=5 +pkgrel=6 pkgdesc="A lightweight PDF and XPS viewer" url="http://mupdf.com" arch="all" @@ -48,7 +48,7 @@ package() { _x11() { pkgdesc="A lightweight PDF and XPS viewer with X11 backend" - depends="!mupdf-gl mupdf" + depends="mupdf" mkdir -p "$subpkgdir"/usr/bin mv "$pkgdir"/usr/bin/mupdf-x11 \ "$subpkgdir"/usr/bin/ || return 1 @@ -57,11 +57,10 @@ _x11() { _gl() { pkgdesc="A lightweight PDF and XPS viewer with OpenGL backend" - depends="!mupdf-x11 mupdf" + depends="mupdf" mkdir -p "$subpkgdir"/usr/bin mv "$pkgdir"/usr/bin/mupdf-gl \ "$subpkgdir"/usr/bin/ || return 1 - ln -s /usr/bin/mupdf-gl "$subpkgdir"/usr/bin/mupdf } _tools() { -- 2.10.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---