diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-08-31 07:40:03 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-08-31 07:40:03 -0400 |
commit | 9cb9e3a9ad016989a1d8f020769819e4542ac28c (patch) | |
tree | fee12769a02091c45ed8d7fbef2b92633f57a5e3 /media-gfx/jhead | |
parent | media-libs/libraw: add github to HOMEPAGE (diff) | |
download | gentoo-9cb9e3a9ad016989a1d8f020769819e4542ac28c.tar.gz gentoo-9cb9e3a9ad016989a1d8f020769819e4542ac28c.tar.bz2 gentoo-9cb9e3a9ad016989a1d8f020769819e4542ac28c.zip |
media-gfx/jhead: update 3.00 to EAPI 6
Diffstat (limited to 'media-gfx/jhead')
-rw-r--r-- | media-gfx/jhead/jhead-3.00.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/media-gfx/jhead/jhead-3.00.ebuild b/media-gfx/jhead/jhead-3.00.ebuild index abefd9b35e6f..a2d8d93f35bf 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 } |