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 2A7751395E2 for ; Sat, 10 Dec 2016 19:33:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62CE3E0A69; Sat, 10 Dec 2016 19:33:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 40497E0A69 for ; Sat, 10 Dec 2016 19:33:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 442073413AD for ; Sat, 10 Dec 2016 19:33:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F779494 for ; Sat, 10 Dec 2016 19:33:27 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1481398334.6dcaaf484b051e8ae9771fed03ccf9f443c1d675.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pstoedit/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/pstoedit/pstoedit-3.70-r1.ebuild X-VCS-Directories: media-gfx/pstoedit/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 6dcaaf484b051e8ae9771fed03ccf9f443c1d675 X-VCS-Branch: master Date: Sat, 10 Dec 2016 19:33:27 +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: 86f35dc8-77e1-47fd-8e44-55621486b4ab X-Archives-Hash: 6f10db810b91a2453cfa604eec841edd commit: 6dcaaf484b051e8ae9771fed03ccf9f443c1d675 Author: Tim Harder gentoo org> AuthorDate: Sat Dec 10 19:32:14 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Dec 10 19:32:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dcaaf48 media-gfx/pstoedit: update to EAPI 6 media-gfx/pstoedit/pstoedit-3.70-r1.ebuild | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/media-gfx/pstoedit/pstoedit-3.70-r1.ebuild b/media-gfx/pstoedit/pstoedit-3.70-r1.ebuild index 605b09d..6cc89e7 100644 --- a/media-gfx/pstoedit/pstoedit-3.70-r1.ebuild +++ b/media-gfx/pstoedit/pstoedit-3.70-r1.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit autotools eutils +inherit autotools DESCRIPTION="Translate PostScript and PDF graphics into other vector formats" HOMEPAGE="https://sourceforge.net/projects/pstoedit/" @@ -28,15 +28,19 @@ DEPEND="${RDEPEND} virtual/pkgconfig " +PATCHES=( + "${FILESDIR}"/${PN}-3.60-libdl.patch + "${FILESDIR}"/${PN}-3.70-pkgconfig.patch +) + src_prepare() { + default + sed -i \ -e '/CXXFLAGS="-g"/d' \ -e 's:-pedantic::' \ configure.ac || die - epatch "${FILESDIR}"/${PN}-3.60-libdl.patch - epatch "${FILESDIR}"/${PN}-3.70-pkgconfig.patch - eautoreconf } @@ -54,7 +58,8 @@ src_install() { default doman doc/pstoedit.1 dodoc doc/*.txt - dohtml doc/*.htm + docinto html + dodoc doc/*.htm find "${ED}" -name '*.la' -delete }