Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/jpeginfo: ChangeLog jpeginfo-1.6.0.ebuild
Date: Tue, 02 Mar 2010 01:44:20
Message-Id: E1NmH9m-00068y-Lh@stork.gentoo.org
1 ssuominen 10/03/02 01:44:18
2
3 Modified: ChangeLog jpeginfo-1.6.0.ebuild
4 Log:
5 Fix parallel make (install) wrt #294820, thanks to Diego E. Pettenò for reporting.
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.19 media-gfx/jpeginfo/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/ChangeLog?rev=1.19&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/ChangeLog?rev=1.19&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/ChangeLog?r1=1.18&r2=1.19
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/ChangeLog,v
18 retrieving revision 1.18
19 retrieving revision 1.19
20 diff -u -r1.18 -r1.19
21 --- ChangeLog 22 Jan 2010 17:34:11 -0000 1.18
22 +++ ChangeLog 2 Mar 2010 01:44:17 -0000 1.19
23 @@ -1,6 +1,11 @@
24 # ChangeLog for media-gfx/jpeginfo
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/ChangeLog,v 1.18 2010/01/22 17:34:11 ssuominen Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/ChangeLog,v 1.19 2010/03/02 01:44:17 ssuominen Exp $
28 +
29 + 02 Mar 2010; Samuli Suominen <ssuominen@g.o> jpeginfo-1.6.0.ebuild,
30 + +files/jpeginfo-1.6.0-parallel_install.patch:
31 + Fix parallel make (install) wrt #294820, thanks to Diego E. Pettenò for
32 + reporting.
33
34 22 Jan 2010; Samuli Suominen <ssuominen@g.o> jpeginfo-1.6.0.ebuild:
35 Require SLOT="0" of media-libs/jpeg for headers.
36
37
38
39 1.19 media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild?rev=1.19&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild?rev=1.19&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild?r1=1.18&r2=1.19
44
45 Index: jpeginfo-1.6.0.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild,v
48 retrieving revision 1.18
49 retrieving revision 1.19
50 diff -u -r1.18 -r1.19
51 --- jpeginfo-1.6.0.ebuild 22 Jan 2010 17:34:11 -0000 1.18
52 +++ jpeginfo-1.6.0.ebuild 2 Mar 2010 01:44:17 -0000 1.19
53 @@ -1,9 +1,9 @@
54 # Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild,v 1.18 2010/01/22 17:34:11 ssuominen Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild,v 1.19 2010/03/02 01:44:17 ssuominen Exp $
58
59 EAPI=2
60 -inherit toolchain-funcs
61 +inherit eutils toolchain-funcs
62
63 DESCRIPTION="Prints information and tests integrity of JPEG/JFIF files."
64 HOMEPAGE="http://www.cc.jyu.fi/~tjko/projects.html"
65 @@ -16,13 +16,16 @@
66
67 DEPEND=">=media-libs/jpeg-6b:0"
68
69 +src_prepare() {
70 + epatch "${FILESDIR}"/${P}-parallel_install.patch
71 +}
72 +
73 src_configure() {
74 tc-export CC
75 econf
76 }
77
78 src_install() {
79 - # bug #294820
80 - emake -j1 INSTALL_ROOT="${D}" install || die
81 + emake INSTALL_ROOT="${D}" install || die
82 dodoc README
83 }