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 64054138350 for ; Tue, 21 Jan 2020 21:51:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ECF0BE085D; Tue, 21 Jan 2020 21:51:27 +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 AC8CBE0863 for ; Tue, 21 Jan 2020 21:51:27 +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 4637734E3A2 for ; Tue, 21 Jan 2020 21:51:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D08A101 for ; Tue, 21 Jan 2020 21:51:21 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1579643447.edf03cb4225cb6705b5adc5d72754d1b819ec22b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/gv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/gv/gv-3.7.3.90.ebuild X-VCS-Directories: app-text/gv/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: edf03cb4225cb6705b5adc5d72754d1b819ec22b X-VCS-Branch: master Date: Tue, 21 Jan 2020 21:51:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 107b76e8-dd9e-43ad-8647-0ebae21d80b8 X-Archives-Hash: df0d4248ecc35f90eb55929323ac6962 commit: edf03cb4225cb6705b5adc5d72754d1b819ec22b Author: David Seifert gentoo org> AuthorDate: Tue Jan 21 21:50:47 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jan 21 21:50:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edf03cb4 app-text/gv: Port to EAPI 7 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> app-text/gv/gv-3.7.3.90.ebuild | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/app-text/gv/gv-3.7.3.90.ebuild b/app-text/gv/gv-3.7.3.90.ebuild index 95b3ac253cc..9ceecd9b1cb 100644 --- a/app-text/gv/gv-3.7.3.90.ebuild +++ b/app-text/gv/gv-3.7.3.90.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils +EAPI=7 + +inherit desktop DESCRIPTION="Viewer for PostScript and PDF documents using Ghostscript" HOMEPAGE="https://www.gnu.org/software/gv/" @@ -14,7 +15,8 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="xinerama" -RDEPEND="app-text/ghostscript-gpl +RDEPEND=" + app-text/ghostscript-gpl x11-libs/libICE x11-libs/libSM x11-libs/libX11 @@ -25,10 +27,8 @@ RDEPEND="app-text/ghostscript-gpl x11-libs/libXt xinerama? ( x11-libs/libXinerama )" DEPEND="${RDEPEND} - virtual/pkgconfig x11-base/xorg-proto" - -DOCS="AUTHORS ChangeLog NEWS README" +BDEPEND="virtual/pkgconfig" src_configure() { export ac_cv_lib_Xinerama_main=$(usex xinerama) @@ -36,7 +36,9 @@ src_configure() { } src_install() { + rm README.{I18N,TRANSLATION} || die default + doicon "${FILESDIR}"/gv_icon.xpm make_desktop_entry gv GhostView gv_icon 'Graphics;Viewer' }