Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/gst-plugins-libpng: gst-plugins-libpng-0.10.14-r1.ebuild ChangeLog
Date: Wed, 01 Jul 2009 16:54:36
Message-Id: E1MM34r-0000u3-1G@stork.gentoo.org
1 armin76 09/07/01 16:54:33
2
3 Modified: ChangeLog
4 Added: fish-fillets-0.9.0.ebuild
5 fish-fillets-0.9.0-gcc43.patch
6 fish-fillets-0.9.0-fribidi.patch
7 Log:
8 version bump
9 (Portage version: 2.1.6.13/cvs/Linux i686)
10
11 Modified: gst-plugins-libpng-0.10.14-r1.ebuild ChangeLog
12 Log:
13 Also mark -r1
14 (Portage version: 2.1.6.13/cvs/Linux ia64)
15
16 Revision Changes Path
17 1.39 games-puzzle/fish-fillets/ChangeLog
18
19 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/ChangeLog?rev=1.39&view=markup
20 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/ChangeLog?rev=1.39&content-type=text/plain
21 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/ChangeLog?r1=1.38&r2=1.39
22
23 Index: ChangeLog
24 ===================================================================
25 RCS file: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/ChangeLog,v
26 retrieving revision 1.38
27 retrieving revision 1.39
28 diff -u -r1.38 -r1.39
29 --- ChangeLog 6 Apr 2009 20:47:01 -0000 1.38
30 +++ ChangeLog 15 Jun 2009 07:02:18 -0000 1.39
31 @@ -1,6 +1,13 @@
32 # ChangeLog for games-puzzle/fish-fillets
33 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
34 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/ChangeLog,v 1.38 2009/04/06 20:47:01 maekke Exp $
35 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/ChangeLog,v 1.39 2009/06/15 07:02:18 mr_bones_ Exp $
36 +
37 +*fish-fillets-0.9.0 (15 Jun 2009)
38 +
39 + 15 Jun 2009; Michael Sterrett <mr_bones_@g.o>
40 + +files/fish-fillets-0.9.0-fribidi.patch,
41 + +files/fish-fillets-0.9.0-gcc43.patch, +fish-fillets-0.9.0.ebuild:
42 + version bump
43
44 06 Apr 2009; Markus Meier <maekke@g.o> fish-fillets-0.8.1.ebuild:
45 amd64/x86 stable, bug #264696
46
47
48
49 1.1 games-puzzle/fish-fillets/fish-fillets-0.9.0.ebuild
50
51 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.9.0.ebuild?rev=1.1&view=markup
52 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.9.0.ebuild?rev=1.1&content-type=text/plain
53
54 Index: fish-fillets-0.9.0.ebuild
55 ===================================================================
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 # $Header: /var/cvsroot/gentoo-x86/games-puzzle/fish-fillets/fish-fillets-0.9.0.ebuild,v 1.1 2009/06/15 07:02:18 mr_bones_ Exp $
59
60 EAPI=2
61 inherit autotools eutils games
62
63 DATA_PV="0.9.0"
64 DESCRIPTION="Underwater puzzle game - find a safe way out"
65 HOMEPAGE="http://fillets.sourceforge.net/"
66 SRC_URI="mirror://sourceforge/fillets/fillets-ng-${PV}.tar.gz
67 mirror://sourceforge/fillets/fillets-ng-data-${DATA_PV}.tar.gz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ppc ~x86"
72 IUSE=""
73
74 RDEPEND=">=media-libs/libsdl-1.2[video]
75 >=media-libs/sdl-mixer-1.2.5[vorbis]
76 >=media-libs/sdl-image-1.2.2[png]
77 x11-libs/libX11
78 media-libs/sdl-ttf
79 dev-libs/fribidi
80 >=dev-lang/lua-5"
81 DEPEND="${RDEPEND}
82 dev-util/pkgconfig"
83
84 S=${WORKDIR}/fillets-ng-${PV}
85
86 src_prepare() {
87 epatch \
88 "${FILESDIR}/${P}-gcc43.patch" \
89 "${FILESDIR}/${P}-fribidi.patch"
90
91 #.mod was renamed to .fmod in lua 5.1.3 - bug #223271
92 sed -i \
93 -e 's/\.mod(/.fmod(/' \
94 $(grep -rl "\.mod\>" "${WORKDIR}"/fillets-ng-data-${DATA_PV}) \
95 || die "sed failed"
96 rm -f missing
97 eautoreconf
98 }
99
100 src_configure() {
101 egamesconf \
102 --disable-dependency-tracking \
103 --datadir="${GAMES_DATADIR}/${PN}"
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" install || die "emake install failed"
108 dodoc AUTHORS ChangeLog NEWS README TODO
109 insinto "${GAMES_DATADIR}/${PN}"
110 cd "${WORKDIR}"/fillets-ng-data-${DATA_PV} || die
111 rm -f COPYING
112 doins -r * || die "doins failed"
113 newicon images/icon.png fillets.png
114 make_desktop_entry fillets FishFillets fillets
115 prepgamesdirs
116 }
117
118
119
120 1.1 games-puzzle/fish-fillets/files/fish-fillets-0.9.0-gcc43.patch
121
122 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/files/fish-fillets-0.9.0-gcc43.patch?rev=1.1&view=markup
123 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/files/fish-fillets-0.9.0-gcc43.patch?rev=1.1&content-type=text/plain
124
125 Index: fish-fillets-0.9.0-gcc43.patch
126 ===================================================================
127 diff -ru fillets-ng-0.8.1.orig/src/gengine/OptionAgent.cpp fillets-ng-0.8.1/src/gengine/OptionAgent.cpp
128 --- fillets-ng-0.8.1.orig/src/gengine/OptionAgent.cpp 2008-12-29 05:43:40.000000000 -0500
129 +++ fillets-ng-0.8.1/src/gengine/OptionAgent.cpp 2009-02-13 13:35:13.000000000 -0500
130 @@ -23,8 +23,8 @@
131 #include "UnknownMsgException.h"
132 #include "minmax.h"
133
134 -#include <stdlib.h> //getenv
135 -#include <string.h> //strlen
136 +#include <cstdlib> //getenv
137 +#include <cstring> //strlen
138 #include <locale.h> //setlocale
139
140 #ifndef LC_MESSAGES
141 diff -ru fillets-ng-0.8.1.orig/src/gengine/StringTool.cpp fillets-ng-0.8.1/src/gengine/StringTool.cpp
142 --- fillets-ng-0.8.1.orig/src/gengine/StringTool.cpp 2008-08-10 06:00:15.000000000 -0400
143 +++ fillets-ng-0.8.1/src/gengine/StringTool.cpp 2009-02-13 13:35:29.000000000 -0500
144 @@ -8,7 +8,7 @@
145 */
146 #include "StringTool.h"
147
148 -#include <stdlib.h>
149 +#include <cstdlib>
150 #include <sstream>
151
152 //-----------------------------------------------------------------
153 diff -ru fillets-ng-0.8.1.orig/src/level/Landslip.cpp fillets-ng-0.8.1/src/level/Landslip.cpp
154 --- fillets-ng-0.8.1.orig/src/level/Landslip.cpp 2008-08-10 06:00:29.000000000 -0400
155 +++ fillets-ng-0.8.1/src/level/Landslip.cpp 2009-02-13 13:36:06.000000000 -0500
156 @@ -11,7 +11,7 @@
157 #include "Rules.h"
158 #include "minmax.h"
159
160 -#include <string.h>
161 +#include <cstring>
162
163 //-----------------------------------------------------------------
164 Landslip::Landslip(const ModelList &models)
165
166
167
168 1.1 games-puzzle/fish-fillets/files/fish-fillets-0.9.0-fribidi.patch
169
170 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/files/fish-fillets-0.9.0-fribidi.patch?rev=1.1&view=markup
171 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-puzzle/fish-fillets/files/fish-fillets-0.9.0-fribidi.patch?rev=1.1&content-type=text/plain
172
173 Index: fish-fillets-0.9.0-fribidi.patch
174 ===================================================================
175 diff -ru fillets-ng-0.8.1.orig/src/effect/Font.cpp fillets-ng-0.8.1/src/effect/Font.cpp
176 --- fillets-ng-0.8.1.orig/src/effect/Font.cpp 2006-01-05 23:31:18.000000000 +0100
177 +++ fillets-ng-0.8.1/src/effect/Font.cpp 2009-03-02 21:20:23.000000000 +0100
178 @@ -26,7 +26,7 @@
179 FriBidiChar *logicalString = new FriBidiChar[text.length() + 1];
180 FriBidiChar *visualString = new FriBidiChar[text.length() + 1];
181
182 - int ucsLength = fribidi_utf8_to_unicode(const_cast<char*>(text.c_str()),
183 + int ucsLength = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, const_cast<char*>(text.c_str()),
184 text.length(), logicalString);
185 fribidi_boolean ok = fribidi_log2vis(logicalString, ucsLength, &base,
186 visualString, NULL, NULL, NULL);
187 @@ -37,7 +37,7 @@
188 }
189
190 char *buffer = new char[text.length() + 1];
191 - int length = fribidi_unicode_to_utf8(visualString, ucsLength, buffer);
192 + int length = fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, visualString, ucsLength, buffer);
193 std::string result = std::string(buffer, length);
194 delete[] buffer;
195 delete[] visualString;
196
197
198
199 1.7 media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild
200
201 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild?rev=1.7&view=markup
202 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild?rev=1.7&content-type=text/plain
203 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild?r1=1.6&r2=1.7
204
205 Index: gst-plugins-libpng-0.10.14-r1.ebuild
206 ===================================================================
207 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild,v
208 retrieving revision 1.6
209 retrieving revision 1.7
210 diff -u -r1.6 -r1.7
211 --- gst-plugins-libpng-0.10.14-r1.ebuild 21 Jun 2009 14:17:00 -0000 1.6
212 +++ gst-plugins-libpng-0.10.14-r1.ebuild 1 Jul 2009 16:54:32 -0000 1.7
213 @@ -1,11 +1,11 @@
214 # Copyright 1999-2009 Gentoo Foundation
215 # Distributed under the terms of the GNU General Public License v2
216 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild,v 1.6 2009/06/21 14:17:00 ranger Exp $
217 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/gst-plugins-libpng-0.10.14-r1.ebuild,v 1.7 2009/07/01 16:54:32 armin76 Exp $
218
219 inherit gst-plugins-good
220
221 DESCRIPTION="plug-in to encode png images"
222 -KEYWORDS="alpha amd64 ~arm ppc ppc64 ~sparc x86"
223 +KEYWORDS="alpha amd64 ~arm ppc ppc64 sparc x86"
224 IUSE=""
225
226 DEPEND=">=media-libs/libpng-1.2
227
228
229
230 1.112 media-plugins/gst-plugins-libpng/ChangeLog
231
232 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog?rev=1.112&view=markup
233 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog?rev=1.112&content-type=text/plain
234 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog?r1=1.111&r2=1.112
235
236 Index: ChangeLog
237 ===================================================================
238 RCS file: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog,v
239 retrieving revision 1.111
240 retrieving revision 1.112
241 diff -u -r1.111 -r1.112
242 --- ChangeLog 1 Jul 2009 16:43:11 -0000 1.111
243 +++ ChangeLog 1 Jul 2009 16:54:32 -0000 1.112
244 @@ -1,9 +1,9 @@
245 # ChangeLog for media-plugins/gst-plugins-libpng
246 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
247 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog,v 1.111 2009/07/01 16:43:11 armin76 Exp $
248 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gst-plugins-libpng/ChangeLog,v 1.112 2009/07/01 16:54:32 armin76 Exp $
249
250 01 Jul 2009; Raúl Porcel <armin76@g.o>
251 - gst-plugins-libpng-0.10.14.ebuild:
252 + gst-plugins-libpng-0.10.14-r1.ebuild:
253 sparc stable wrt #266986
254
255 21 Jun 2009; Brent Baude <ranger@g.o>