Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/fbida/files: ida-desktop.patch fbida-2.09-giflib-4.2.patch
Date: Tue, 31 Dec 2013 17:23:52
Message-Id: 20131231172349.1D9422004E@flycatcher.gentoo.org
1 jer 13/12/31 17:23:49
2
3 Modified: ida-desktop.patch
4 Added: fbida-2.09-giflib-4.2.patch
5 Log:
6 Add giflib-4.2 patch by Tomasz Wasiak (bug #494402).
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.2 media-gfx/fbida/files/ida-desktop.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fbida/files/ida-desktop.patch?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fbida/files/ida-desktop.patch?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fbida/files/ida-desktop.patch?r1=1.1&r2=1.2
16
17 Index: ida-desktop.patch
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/fbida/files/ida-desktop.patch,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ida-desktop.patch 7 Sep 2008 10:37:39 -0000 1.1
24 +++ ida-desktop.patch 31 Dec 2013 17:23:48 -0000 1.2
25 @@ -1,5 +1,5 @@
26 ---- desktop/ida.desktop~ 2008-08-28 00:33:58.000000000 +0200
27 -+++ desktop/ida.desktop 2008-08-28 00:33:58.000000000 +0200
28 +--- a/desktop/ida.desktop
29 ++++ b/desktop/ida.desktop
30 @@ -1,9 +1,10 @@
31 [Desktop Entry]
32 Type=Application
33
34
35
36 1.1 media-gfx/fbida/files/fbida-2.09-giflib-4.2.patch
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fbida/files/fbida-2.09-giflib-4.2.patch?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/fbida/files/fbida-2.09-giflib-4.2.patch?rev=1.1&content-type=text/plain
40
41 Index: fbida-2.09-giflib-4.2.patch
42 ===================================================================
43 --- a/rd/read-gif.c
44 +++ b/rd/read-gif.c
45 @@ -25,7 +25,7 @@
46 if (GIF_ERROR == DGifGetRecordType(h->gif,&RecordType)) {
47 if (debug)
48 fprintf(stderr,"gif: DGifGetRecordType failed\n");
49 - PrintGifError();
50 + GifErrorString();
51 return -1;
52 }
53 switch (RecordType) {
54 @@ -42,7 +42,7 @@
55 if (rc == GIF_ERROR) {
56 if (debug)
57 fprintf(stderr,"gif: DGifGetExtension failed\n");
58 - PrintGifError();
59 + GifErrorString();
60 return -1;
61 }
62 if (debug) {
63 @@ -108,7 +108,7 @@
64 if (GIF_ERROR == DGifGetImageDesc(h->gif)) {
65 if (debug)
66 fprintf(stderr,"gif: DGifGetImageDesc failed\n");
67 - PrintGifError();
68 + GifErrorString();
69 }
70 if (NULL == h->gif->SColorMap &&
71 NULL == h->gif->Image.ColorMap) {