From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9A4F91382C5 for ; Tue, 13 Mar 2018 19:35:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99450E0819; Tue, 13 Mar 2018 19:35:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77A69E0819 for ; Tue, 13 Mar 2018 19:35:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACF00335C05 for ; Tue, 13 Mar 2018 19:35:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BBD31E3 for ; Tue, 13 Mar 2018 19:35:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1520969676.bf5b580a8c8789604547da565180411b3b858e02.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/diffpdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/diffpdf/diffpdf-2.1.3-r2.ebuild X-VCS-Directories: app-text/diffpdf/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bf5b580a8c8789604547da565180411b3b858e02 X-VCS-Branch: master Date: Tue, 13 Mar 2018 19:35:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5e859fb7-248c-4071-8d3a-57e6e5b4fd1b X-Archives-Hash: 5256e40b298651314fa41d5be91391ff commit: bf5b580a8c8789604547da565180411b3b858e02 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 13 19:31:21 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Mar 13 19:34:36 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5b580a app-text/diffpdf: Add missing DEPENDs, switch to https Closes: https://bugs.gentoo.org/650432 Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-text/diffpdf/diffpdf-2.1.3-r2.ebuild | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/app-text/diffpdf/diffpdf-2.1.3-r2.ebuild b/app-text/diffpdf/diffpdf-2.1.3-r2.ebuild new file mode 100644 index 00000000000..37946835730 --- /dev/null +++ b/app-text/diffpdf/diffpdf-2.1.3-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit desktop qmake-utils + +DESCRIPTION="Program that textually or visually compares two PDF files" +HOMEPAGE="https://www.qtrac.eu/diffpdf.html" +SRC_URI="http://www.qtrac.eu/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND=" + app-text/poppler[qt5] + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtwidgets:5 +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 +" + +PATCHES=( "${FILESDIR}"/${P}-qt5.patch ) + +src_configure() { + $(qt5_get_bindir)/lrelease diffpdf.pro || die "Generating translations failed" + eqmake5 PREFIX="${EPREFIX}/usr" diffpdf.pro +} + +src_install() { + einstalldocs + dobin diffpdf + doman diffpdf.1 + domenu "${FILESDIR}"/${PN}.desktop + newicon images/icon.png ${PN}.png +}