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 E48541396D0 for ; Thu, 31 Aug 2017 11:47:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1ECEEE0D75; Thu, 31 Aug 2017 11:47: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 F1CC0E0D75 for ; Thu, 31 Aug 2017 11:47:26 +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 E99A4340DF9 for ; Thu, 31 Aug 2017 11:47:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62C2D88E7 for ; Thu, 31 Aug 2017 11:47:24 +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: <1504179603.9cb9e3a9ad016989a1d8f020769819e4542ac28c.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/jhead/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/jhead/jhead-3.00.ebuild X-VCS-Directories: media-gfx/jhead/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 9cb9e3a9ad016989a1d8f020769819e4542ac28c X-VCS-Branch: master Date: Thu, 31 Aug 2017 11:47:24 +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: 872d6c9a-69c5-43fd-9515-d1b3c77cdb53 X-Archives-Hash: bb0a936879ce40f1442d2e163e6982f1 commit: 9cb9e3a9ad016989a1d8f020769819e4542ac28c Author: Tim Harder gentoo org> AuthorDate: Thu Aug 31 11:40:03 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Aug 31 11:40:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cb9e3a9 media-gfx/jhead: update 3.00 to EAPI 6 media-gfx/jhead/jhead-3.00.ebuild | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/media-gfx/jhead/jhead-3.00.ebuild b/media-gfx/jhead/jhead-3.00.ebuild index abefd9b35e6..a2d8d93f35b 100644 --- a/media-gfx/jhead/jhead-3.00.ebuild +++ b/media-gfx/jhead/jhead-3.00.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 -inherit eutils toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Exif Jpeg camera setting parser and thumbnail remover" HOMEPAGE="http://www.sentex.net/~mwandel/jhead" @@ -14,10 +14,10 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" IUSE="" -src_prepare() { +PATCHES=( # bug 275200 - respect flags and use mktemp instead of mkstemp - epatch "${FILESDIR}"/${PN}-2.90-mkstemp_respect_flags.patch -} + "${FILESDIR}"/${PN}-2.90-mkstemp_respect_flags.patch +) src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" @@ -26,6 +26,7 @@ src_compile() { src_install() { dobin ${PN} dodoc *.txt - dohtml *.html + docinto html + dodoc *.html doman ${PN}.1 }