Gentoo Archives: gentoo-commits

From: "Luca Barbato (lu_zero)" <lu_zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/giflib: giflib-4.1.6.ebuild ChangeLog
Date: Fri, 22 Feb 2008 07:15:18
Message-Id: E1JSS7m-0001YO-3z@stork.gentoo.org
1 lu_zero 08/02/22 07:15:14
2
3 Modified: giflib-4.1.6.ebuild ChangeLog
4 Log:
5 minor side condition fix
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.10 media-libs/giflib/giflib-4.1.6.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild?r1=1.9&r2=1.10
14
15 Index: giflib-4.1.6.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- giflib-4.1.6.ebuild 10 Jan 2008 08:49:25 -0000 1.9
22 +++ giflib-4.1.6.ebuild 22 Feb 2008 07:15:13 -0000 1.10
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild,v 1.9 2008/01/10 08:49:25 vapier Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.6.ebuild,v 1.10 2008/02/22 07:15:13 lu_zero Exp $
28
29 inherit eutils libtool
30
31 @@ -31,16 +31,14 @@
32 }
33
34 src_compile() {
35 - econf \
36 - $(use_enable X x11) \
37 - $(
38 - # prevent circular depend #111455
39 - has_version media-libs/urt \
40 - || --disable-rle \
41 - && use_enable rle \
42 - ) \
43 - --disable-gl \
44 - || die
45 + local myconf="--disable-gl $(use_enable X x11)"
46 + # prevent circular depend #111455
47 + if has_version media-libs/urt ; then
48 + myconf="${myconf} $(use_enable rle)"
49 + else
50 + myconf="${myconf} --disable-rle"
51 + fi
52 + econf ${myconf}
53 emake || die "emake failed"
54 }
55
56
57
58
59 1.53 media-libs/giflib/ChangeLog
60
61 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/ChangeLog?rev=1.53&view=markup
62 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/ChangeLog?rev=1.53&content-type=text/plain
63 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/giflib/ChangeLog?r1=1.52&r2=1.53
64
65 Index: ChangeLog
66 ===================================================================
67 RCS file: /var/cvsroot/gentoo-x86/media-libs/giflib/ChangeLog,v
68 retrieving revision 1.52
69 retrieving revision 1.53
70 diff -u -r1.52 -r1.53
71 --- ChangeLog 25 Dec 2007 17:40:28 -0000 1.52
72 +++ ChangeLog 22 Feb 2008 07:15:13 -0000 1.53
73 @@ -1,6 +1,9 @@
74 # ChangeLog for media-libs/giflib
75 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
76 -# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/ChangeLog,v 1.52 2007/12/25 17:40:28 armin76 Exp $
77 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
78 +# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/ChangeLog,v 1.53 2008/02/22 07:15:13 lu_zero Exp $
79 +
80 + 22 Feb 2008; Luca Barbato <lu_zero@g.o> giflib-4.1.6.ebuild:
81 + fix urt check and clarify, thanks to jakub for pointing it
82
83 25 Dec 2007; Raúl Porcel <armin76@g.o> giflib-4.1.6.ebuild:
84 alpha/ia64 stable wrt #203032
85
86
87
88 --
89 gentoo-commits@l.g.o mailing list