Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/jpeginfo/, media-gfx/jpeginfo/files/
Date: Sat, 09 Feb 2019 16:07:04
Message-Id: 1549728407.f20b8ec6da83060e38426e322d3d8c3493a67fe9.asturm@gentoo
1 commit: f20b8ec6da83060e38426e322d3d8c3493a67fe9
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Feb 8 15:31:24 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 16:06:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f20b8ec6
7
8 media-gfx/jpeginfo: use HTTPs, EAPI7 bump
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 .../files/jpeginfo-1.6.0-parallel_install.patch | 4 +--
14 media-gfx/jpeginfo/jpeginfo-1.6.1-r1.ebuild | 29 ++++++++++++++++++++++
15 2 files changed, 31 insertions(+), 2 deletions(-)
16
17 diff --git a/media-gfx/jpeginfo/files/jpeginfo-1.6.0-parallel_install.patch b/media-gfx/jpeginfo/files/jpeginfo-1.6.0-parallel_install.patch
18 index 379e200fd90..84de25bafca 100644
19 --- a/media-gfx/jpeginfo/files/jpeginfo-1.6.0-parallel_install.patch
20 +++ b/media-gfx/jpeginfo/files/jpeginfo-1.6.0-parallel_install.patch
21 @@ -1,5 +1,5 @@
22 ---- Makefile.in
23 -+++ Makefile.in
24 +--- a/Makefile.in
25 ++++ b/Makefile.in
26 @@ -79,7 +79,7 @@
27 groff -Tps -mandoc ./$(PKGNAME).1 >$(PKGNAME).ps
28 groff -Tascii -mandoc ./$(PKGNAME).1 | tee $(PKGNAME).prn | sed 's/.//g' >$(PKGNAME).txt
29
30 diff --git a/media-gfx/jpeginfo/jpeginfo-1.6.1-r1.ebuild b/media-gfx/jpeginfo/jpeginfo-1.6.1-r1.ebuild
31 new file mode 100644
32 index 00000000000..fb764fd99d8
33 --- /dev/null
34 +++ b/media-gfx/jpeginfo/jpeginfo-1.6.1-r1.ebuild
35 @@ -0,0 +1,29 @@
36 +# Copyright 1999-2019 Gentoo Authors
37 +# Distributed under the terms of the GNU General Public License v2
38 +
39 +EAPI=7
40 +
41 +inherit toolchain-funcs
42 +
43 +DESCRIPTION="Prints information and tests integrity of JPEG/JFIF files"
44 +HOMEPAGE="https://www.kokkonen.net/tjko/projects.html"
45 +SRC_URI="https://www.kokkonen.net/tjko/src/${P}.tar.gz"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
50 +
51 +RDEPEND="virtual/jpeg:0"
52 +DEPEND="${RDEPEND}"
53 +
54 +PATCHES=( "${FILESDIR}"/${PN}-1.6.0-parallel_install.patch )
55 +
56 +src_configure() {
57 + tc-export CC
58 + econf
59 +}
60 +
61 +src_install() {
62 + emake INSTALL_ROOT="${D}" install
63 + dodoc README
64 +}