X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pd0-f173.google.com (mail-pd0-f173.google.com [209.85.192.173]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 35F4EDC009D for ; Sun, 29 Jun 2014 14:10:32 +0000 (UTC) Received: by mail-pd0-f173.google.com with SMTP id r10so6817550pdi.4 for ; Sun, 29 Jun 2014 07:10:32 -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:in-reply-to:references; bh=plFGu0u54Q8A/zkKfjmHvtuT4LRBVVmqM5qe97S+MPs=; b=uju5ROv6y/o5lnLoW321D/z0UPsvZ3Gl0JLZhFxBlZx3cvxbe6NneOE3nhYelDKDwj zwtsOYscL2VdFTpgW2SJaz4Rpa1w8kuqhYz0AViBzyHDWVDmXS7EgVNdOWrs88Is2ay2 TYLwycXhl9/vdOl79NrqLuHWoO2OkYfTvhPJjUmchkJRxd0JLeK3F2ntm8B1jed674zw 8RQ38x9a6K8iSoWGXjsg81eHGqCf4LdKSP6yllHJgBP+B25vfrSOACxApxk+BFodKFn1 mewSFnpQcUpbMLkhZ42HsS/E4fKC83s8QPIxOnSNGBm6RIjCmlrL1Z3g4YJRkthB0s1a 9Rew== X-Received: by 10.69.19.203 with SMTP id gw11mr43947993pbd.25.1404051031103; Sun, 29 Jun 2014 07:10:31 -0700 (PDT) Received: from localhost.localdomain ([50.0.227.219]) by mx.google.com with ESMTPSA id gu1sm23393942pbd.0.2014.06.29.07.10.30 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 29 Jun 2014 07:10:30 -0700 (PDT) From: Isaac Dunham To: alpine-devel@lists.alpinelinux.org Cc: Isaac Dunham Subject: [alpine-devel] [PATCH] testing/xpdf: remove all xpdf-utils Date: Sun, 29 Jun 2014 07:04:52 -0700 Message-Id: <1404050692-3815-2-git-send-email-ibid.ag@gmail.com> X-Mailer: git-send-email 2.0.1 In-Reply-To: <1404050692-3815-1-git-send-email-ibid.ag@gmail.com> References: <1404050692-3815-1-git-send-email-ibid.ag@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: The utilities supplied by xpdf are the same ones supplied by poppler --- testing/xpdf/APKBUILD | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/testing/xpdf/APKBUILD b/testing/xpdf/APKBUILD index 196c9d9..b2943be 100644 --- a/testing/xpdf/APKBUILD +++ b/testing/xpdf/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Isaac Dunham pkgname=xpdf pkgver="3.04" -pkgrel=0 +pkgrel=1 pkgdesc="The classic X11 PDF viewer" url="http://foolabs.com/xpdf" arch="all" @@ -48,10 +48,8 @@ package() { make DESTDIR="$pkgdir" install || return 1 rm -f "$pkgdir"/usr/lib/*.la #delete pdf* utils that conflict with poppler-utils. - for i in pdftops pdftotxt pdfinfo pdfdetach; do - rm -f "$pkgdir"/usr/bin/$i - rm -f "$pkgdir"/usr/share/man/man1/$i.1 - done + rm -f "$pkgdir"/usr/bin/pdf* + rm -f "$pkgdir"/usr/share/man/man1/pdf* } md5sums="3bc86c69c8ff444db52461270bef3f44 xpdf-3.04.tar.gz -- 2.0.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---