Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-astronomy/celestia: ChangeLog celestia-1.5.1.ebuild
Date: Thu, 06 Nov 2008 12:00:19
Message-Id: E1Ky3X7-0003wq-IK@stork.gentoo.org
1 bicatali 08/11/06 12:00:17
2
3 Modified: ChangeLog celestia-1.5.1.ebuild
4 Log:
5 Added a unicode flag to encode iso-8859-1 doc files into utf8, closing bug #245280
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.44 sci-astronomy/celestia/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.44&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?rev=1.44&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/ChangeLog?r1=1.43&r2=1.44
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v
18 retrieving revision 1.43
19 retrieving revision 1.44
20 diff -u -r1.43 -r1.44
21 --- ChangeLog 6 Nov 2008 00:07:30 -0000 1.43
22 +++ ChangeLog 6 Nov 2008 12:00:17 -0000 1.44
23 @@ -1,6 +1,11 @@
24 # ChangeLog for sci-astronomy/celestia
25 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.43 2008/11/06 00:07:30 markusle Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/ChangeLog,v 1.44 2008/11/06 12:00:17 bicatali Exp $
28 +
29 + 06 Nov 2008; Sébastien Fabbro <bicatali@g.o>
30 + celestia-1.5.1.ebuild:
31 + Added a unicode flag to encode iso-8859-1 doc files into utf8, closing
32 + bug #245280.
33
34 05 Nov 2008; Markus Dittrich <markusle@g.o>
35 +files/celestia-1.5.1-kde-3.5.patch, celestia-1.5.1.ebuild:
36
37
38
39 1.4 sci-astronomy/celestia/celestia-1.5.1.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild?r1=1.3&r2=1.4
44
45 Index: celestia-1.5.1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- celestia-1.5.1.ebuild 6 Nov 2008 00:07:30 -0000 1.3
52 +++ celestia-1.5.1.ebuild 6 Nov 2008 12:00:17 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.3 2008/11/06 00:07:30 markusle Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/celestia/celestia-1.5.1.ebuild,v 1.4 2008/11/06 12:00:17 bicatali Exp $
58
59 inherit eutils flag-o-matic gnome2 kde-functions autotools
60
61 @@ -15,7 +15,7 @@
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
65 -IUSE="arts cairo gnome gtk kde lua nls pch theora threads"
66 +IUSE="arts cairo gnome gtk kde lua nls pch theora threads unicode"
67
68 RDEPEND="virtual/glu
69 media-libs/jpeg
70 @@ -104,6 +104,14 @@
71 -e '/AM_GCONF_SOURCE_2/d' \
72 configure.in || die "sed failed"
73 fi
74 + if use unicode; then
75 + pushd locale > /dev/null
76 + for i in guide_{de,es,fr,it,nl,sv}.cel start_de.cel demo_nl.cel; do
77 + iconv -f iso-8859-1 ${i} -t utf8 > ${i}.utf8
78 + mv ${i}.utf8 ${i}
79 + done
80 + popd > /dev/null
81 + fi
82
83 eautoreconf
84 }