Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/gimp/files: gimp-2.6.0-file-psd-needs-jpeg.patch
Date: Thu, 09 Oct 2008 21:27:08
Message-Id: E1Ko32I-0008Fy-9g@stork.gentoo.org
1 hanno 08/10/09 21:27:06
2
3 Added: gimp-2.6.0-file-psd-needs-jpeg.patch
4 Log:
5 gimp: fix build with USE=-jpeg
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc9-00169-gb34c873 x86_64)
7
8 Revision Changes Path
9 1.1 media-gfx/gimp/files/gimp-2.6.0-file-psd-needs-jpeg.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/files/gimp-2.6.0-file-psd-needs-jpeg.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-gfx/gimp/files/gimp-2.6.0-file-psd-needs-jpeg.patch?rev=1.1&content-type=text/plain
13
14 Index: gimp-2.6.0-file-psd-needs-jpeg.patch
15 ===================================================================
16 diff -Naur gimp-2.6.0-old/plug-ins/Makefile.am gimp-2.6.0/plug-ins/Makefile.am
17 --- gimp-2.6.0-old/plug-ins/Makefile.am 2008-08-21 13:35:22.000000000 +0200
18 +++ gimp-2.6.0/plug-ins/Makefile.am 2008-10-09 17:03:04.000000000 +0200
19 @@ -10,6 +10,7 @@
20
21 if BUILD_JPEG
22 file_jpeg = file-jpeg
23 +file_psd = file-psd
24 endif
25
26 if BUILD_PRINT
27 @@ -57,7 +58,7 @@
28 file-fli \
29 $(file_ico) \
30 $(file_jpeg) \
31 - file-psd \
32 + $(file_psd) \
33 file-sgi \
34 $(file_uri) \
35 $(file_xjt) \
36 diff -Naur gimp-2.6.0-old/plug-ins/Makefile.in gimp-2.6.0/plug-ins/Makefile.in
37 --- gimp-2.6.0-old/plug-ins/Makefile.in 2008-09-29 19:23:20.000000000 +0200
38 +++ gimp-2.6.0/plug-ins/Makefile.in 2008-10-09 17:05:56.000000000 +0200
39 @@ -385,6 +385,7 @@
40
41 @BUILD_HELP_BROWSER_TRUE@help_browser = help-browser
42 @BUILD_JPEG_TRUE@file_jpeg = file-jpeg
43 +@BUILD_JPEG_TRUE@file_psd = file-psd
44 @BUILD_PRINT_TRUE@print = print
45 @BUILD_PYTHON_TRUE@pygimp = pygimp
46 @BUILD_SCRIPT_FU_TRUE@script_fu = script-fu
47 @@ -405,7 +406,7 @@
48 file-fli \
49 $(file_ico) \
50 $(file_jpeg) \
51 - file-psd \
52 + $(file_psd) \
53 file-sgi \
54 $(file_uri) \
55 $(file_xjt) \