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 D94B7139694 for ; Sun, 2 Jul 2017 08:07:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3EF39E0E2C; Sun, 2 Jul 2017 08:07:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1995EE0E2C for ; Sun, 2 Jul 2017 08:07:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 32516341941 for ; Sun, 2 Jul 2017 08:07:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 666C27487 for ; Sun, 2 Jul 2017 08:07:32 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1498982845.050f85c575e395a82b1029675a86739dab961946.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/asymptote/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/asymptote/asymptote-2.41.ebuild X-VCS-Directories: media-gfx/asymptote/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 050f85c575e395a82b1029675a86739dab961946 X-VCS-Branch: master Date: Sun, 2 Jul 2017 08:07:32 +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: b2e279e0-65f7-4063-b397-511620c9234e X-Archives-Hash: 1f3f87b2f250e0c08a3a232dd582d36c commit: 050f85c575e395a82b1029675a86739dab961946 Author: Justin Lecher gentoo org> AuthorDate: Sun Jul 2 08:06:39 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jul 2 08:07:25 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=050f85c5 media-gfx/asymptote: Bump to EAPI=6 Package-Manager: Portage-2.3.6-prefix, Repoman-2.3.2 Signed-off-by: Justin Lecher gentoo.org> media-gfx/asymptote/asymptote-2.41.ebuild | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/media-gfx/asymptote/asymptote-2.41.ebuild b/media-gfx/asymptote/asymptote-2.41.ebuild index f48cbea6178..b0de1fb4946 100644 --- a/media-gfx/asymptote/asymptote-2.41.ebuild +++ b/media-gfx/asymptote/asymptote-2.41.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit autotools elisp-common eutils latex-package multilib python-single-r1 +inherit autotools elisp-common latex-package multilib python-single-r1 DESCRIPTION="A vector graphics language that provides a framework for technical drawing" HOMEPAGE="http://asymptote.sourceforge.net/" @@ -53,24 +53,27 @@ DEPEND="${RDEPEND} TEXMF=/usr/share/texmf-site +PATCHES=( + # gc.h -> gc/gc.h + "${FILESDIR}/${P}-configure-ac.patch" + + # Changing pdf, ps, image viewers to xdg-open + "${FILESDIR}/${P}-xdg-utils.patch" + + # Bug #322473 + "${FILESDIR}/${P}-info.patch" +) + pkg_setup() { (use python || use X) && python-single-r1_pkg_setup } src_prepare() { - # gc.h -> gc/gc.h - epatch "${FILESDIR}/${P}-configure-ac.patch" - sed -e "s:Datadir/doc/asymptote:Datadir/doc/${PF}:" \ -i configure.ac \ || die "sed configure.ac failed" - # Changing pdf, ps, image viewers to xdg-open - epatch "${FILESDIR}/${P}-xdg-utils.patch" - - # Bug #322473 - epatch "${FILESDIR}/${P}-info.patch" - + default eautoreconf }