Gentoo Archives: gentoo-commits

From: "Marcelo Goes (vanquirius)" <vanquirius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/jhead: ChangeLog jhead-2.87.ebuild
Date: Sun, 28 Jun 2009 17:35:32
Message-Id: E1MKyHr-0007EM-Cv@stork.gentoo.org
1 vanquirius 09/06/28 17:35:31
2
3 Modified: ChangeLog
4 Added: jhead-2.87.ebuild
5 Log:
6 2.87 version bump, patch to respect flags and change mktemp to mkstemp for bug 275200. Thanks to Zeev
7 Tarantov <zeev dot tarantov at gmail dot com>.
8 (Portage version: 2.1.6.13/cvs/Linux i686)
9
10 Revision Changes Path
11 1.109 media-gfx/jhead/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?rev=1.109&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?rev=1.109&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?r1=1.108&r2=1.109
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v
20 retrieving revision 1.108
21 retrieving revision 1.109
22 diff -u -r1.108 -r1.109
23 --- ChangeLog 21 May 2009 08:59:12 -0000 1.108
24 +++ ChangeLog 28 Jun 2009 17:35:31 -0000 1.109
25 @@ -1,6 +1,14 @@
26 # ChangeLog for media-gfx/jhead
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.108 2009/05/21 08:59:12 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.109 2009/06/28 17:35:31 vanquirius Exp $
30 +
31 +*jhead-2.87 (28 Jun 2009)
32 +
33 + 28 Jun 2009; Marcelo Goes <vanquirius@g.o>
34 + +files/jhead-2.87-mkstemp.patch, +files/jhead-2.87-respect_flags.patch,
35 + +jhead-2.87.ebuild:
36 + 2.87 version bump, patch to respect flags and change mktemp to mkstemp for
37 + bug 275200. Thanks to Zeev Tarantov <zeev dot tarantov at gmail dot com>.
38
39 21 May 2009; Markus Meier <maekke@g.o> -jhead-2.84-r1.ebuild,
40 -files/jhead-2.84-bug243238.patch:
41
42
43
44 1.1 media-gfx/jhead/jhead-2.87.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/jhead-2.87.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/jhead-2.87.ebuild?rev=1.1&content-type=text/plain
48
49 Index: jhead-2.87.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/jhead-2.87.ebuild,v 1.1 2009/06/28 17:35:31 vanquirius Exp $
54
55 inherit eutils flag-o-matic toolchain-funcs
56
57 DESCRIPTION="Exif Jpeg camera setting parser and thumbnail remover"
58 HOMEPAGE="http://www.sentex.net/~mwandel/jhead"
59 SRC_URI="http://www.sentex.net/~mwandel/${PN}/${P}.tar.gz"
60
61 LICENSE="public-domain"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE=""
65
66 src_unpack() {
67 # bug 275200 - respect flags and use mktemp instead of mkstemp
68 unpack ${A}
69
70 cd "${S}"
71 epatch "${FILESDIR}"/${PN}-${PV}-respect_flags.patch
72 epatch "${FILESDIR}"/${PN}-${PV}-mkstemp.patch
73 }
74
75 src_compile() {
76 emake || die "emake failed."
77 }
78
79 src_install() {
80 dobin ${PN} || die "dobin failed."
81 dodoc *.txt
82 dohtml *.html
83 doman ${PN}.1
84 }