Gentoo Archives: gentoo-commits

From: "Markus Meier (maekke)" <maekke@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/jhead: ChangeLog jhead-2.82-r1.ebuild
Date: Sat, 30 Aug 2008 14:46:13
Message-Id: E1KZRiM-0004CX-No@stork.gentoo.org
1 maekke 08/08/30 14:46:10
2
3 Modified: ChangeLog
4 Added: jhead-2.82-r1.ebuild
5 Log:
6 respect LDFLAGS, bug #235662
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc5 i686)
8
9 Revision Changes Path
10 1.81 media-gfx/jhead/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?rev=1.81&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?rev=1.81&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/ChangeLog?r1=1.80&r2=1.81
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v
19 retrieving revision 1.80
20 retrieving revision 1.81
21 diff -u -r1.80 -r1.81
22 --- ChangeLog 17 Jul 2008 19:07:53 -0000 1.80
23 +++ ChangeLog 30 Aug 2008 14:46:10 -0000 1.81
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-gfx/jhead
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.80 2008/07/17 19:07:53 corsair Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/ChangeLog,v 1.81 2008/08/30 14:46:10 maekke Exp $
29 +
30 +*jhead-2.82-r1 (30 Aug 2008)
31 +
32 + 30 Aug 2008; Markus Meier <maekke@g.o> +jhead-2.82-r1.ebuild:
33 + respect LDFLAGS, bug #235662
34
35 17 Jul 2008; Markus Rothe <corsair@g.o> jhead-2.82.ebuild:
36 Stable on ppc64; bug #231629
37
38
39
40 1.1 media-gfx/jhead/jhead-2.82-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/jhead-2.82-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/jhead/jhead-2.82-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: jhead-2.82-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-gfx/jhead/jhead-2.82-r1.ebuild,v 1.1 2008/08/30 14:46:10 maekke Exp $
50
51 inherit toolchain-funcs
52
53 DESCRIPTION="Exif Jpeg camera setting parser and thumbnail remover"
54 HOMEPAGE="http://www.sentex.net/~mwandel/jhead"
55 SRC_URI="http://www.sentex.net/~mwandel/${PN}/${P}.tar.gz"
56
57 LICENSE="public-domain"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
60 IUSE=""
61
62 src_unpack() {
63 unpack ${A}
64 sed -i \
65 -e "s:-O3 -Wall:${CFLAGS}:" \
66 -e "s:\${CC} -o jhead \$(objs) -lm:\${CC} -o jhead \$(objs) -lm ${LDFLAGS}:" \
67 "${S}"/makefile || die
68 }
69
70 src_compile() {
71 tc-export CC
72 emake || die "emake failed."
73 }
74
75 src_install() {
76 dobin ${PN} || die "dobin failed."
77 dodoc *.txt
78 dohtml *.html
79 doman ${PN}.1.gz
80 }