/[pkgs]/devel/ImageMagick/ImageMagick-6.4.0-xdg-open.patch
ViewVC logotype

Contents of /devel/ImageMagick/ImageMagick-6.4.0-xdg-open.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (show annotations) (download) (as text)
Sun Apr 27 19:40:45 2008 UTC (18 months, 4 weeks ago) by jwrdegoede
Branch: MAIN
CVS Tags: F-12-split, ImageMagick-6_4_5_5-9_fc11, ImageMagick-6_5_3_7-2_fc12, ImageMagick-6_4_5_5-5_fc11, ImageMagick-6_4_5_5-8_fc11, ImageMagick-6_4_9_6-1_fc11, ImageMagick-6_4_9_6-2_fc11, ImageMagick-6_4_0_10-1_fc10, ImageMagick-6_5_3_7-1_fc12, F-11-split, ImageMagick-6_4_0_10-3_fc11, ImageMagick-6_5_4_7-3_fc12, ImageMagick-6_4_0_10-2_fc10, ImageMagick-6_4_5_5-7_fc11, ImageMagick-6_5_1_2-1_fc11, ImageMagick-6_4_5_5-2_fc11, ImageMagick-6_4_5_5-3_fc11, ImageMagick-6_4_5_5-1_fc11, F-10-split, ImageMagick-6_4_5_5-6_fc11, ImageMagick-6_4_5_5-4_fc11, HEAD
File MIME type: text/x-patch
* Sat Apr 26 2008 Hans de Goede <jwrdegoede@fedoraproject.org> 6.4.0.10-1
- New upstream release 6.4.0.10
- This fixes conversion of 24 bpp windows icons (bz 440136)
- Don't reuse GError structs, that upsets glib2 (bz 325211)
- Use the system ltdl, not the included copy (bz 237475)
- Fix various multilib conflicts (bz 341561)
- Use xdg-open instead of htmlview (bz 388451)
- Some small specfile cleanups (utf-8 stuff & others) fixing rpmlint warnings
1 diff -up ImageMagick-6.4.0/configure.ac.orig ImageMagick-6.4.0/configure.ac
2 --- ImageMagick-6.4.0/configure.ac.orig 2008-04-22 05:38:56.000000000 +0200
3 +++ ImageMagick-6.4.0/configure.ac 2008-04-27 16:33:28.000000000 +0200
4 @@ -2391,7 +2391,7 @@ AC_MSG_RESULT([-------------------------
5 AutotraceDecodeDelegateDefault='autotrace'
6 AVIDecodeDelegateDefault='mplayer'
7 BZIPDelegateDefault='bzip2'
8 -BrowseDelegateDefault='htmlview'
9 +BrowseDelegateDefault='xdg-open'
10 CGMDecodeDelegateDefault='ralcgm'
11 CatDelegateDefault='cat'
12 DNGDecodeDelegateDefault='ufraw-batch'
13 diff -up ImageMagick-6.4.0/magick/delegate.c.orig ImageMagick-6.4.0/magick/delegate.c
14 --- ImageMagick-6.4.0/magick/delegate.c.orig 2008-04-06 03:39:42.000000000 +0200
15 +++ ImageMagick-6.4.0/magick/delegate.c 2008-04-27 16:35:46.000000000 +0200
16 @@ -78,7 +78,7 @@ static const char
17 "<delegatemap>"
18 " <delegate decode=\"autotrace\" stealth=\"True\" command=\"&quot;autotrace&quot; -output-format svg -output-file &quot;%o&quot; &quot;%i&quot;\"/>"
19 " <delegate decode=\"avi:decode\" stealth=\"True\" command=\"&quot;mplayer&quot; &quot;%i&quot; -really-quiet -ao null -vo png:z=3\"/>"
20 - " <delegate decode=\"browse\" stealth=\"True\" spawn=\"True\" command=\"&quot;htmlview&quot; http://www.imagemagick.org/\"/>"
21 + " <delegate decode=\"browse\" stealth=\"True\" spawn=\"True\" command=\"&quot;xdg-open&quot; http://www.imagemagick.org/\"/>"
22 " <delegate decode=\"cgm\" thread-support=\"False\" command=\"&quot;ralcgm&quot; -d ps -oC &lt; &quot;%i&quot; &gt; &quot;%o&quot; &gt;&gt;/dev/null\"/>"
23 " <delegate decode=\"dng:decode\" command=\"&quot;/usr/bin/ufraw-batch&quot; --silent --wb=camera --black-point=auto --exposure=auto --create-id=also --out-type=ppm16 &quot;--output=%u.pnm&quot; &quot;%i&quot;\"/>"
24 " <delegate decode=\"edit\" stealth=\"True\" command=\"&quot;xterm&quot; -title &quot;Edit Image Comment&quot; -e vi &quot;%o&quot;\"/>"
25 diff -up ImageMagick-6.4.0/www/source/delegates.xml.orig ImageMagick-6.4.0/www/source/delegates.xml
26 --- ImageMagick-6.4.0/www/source/delegates.xml.orig 2008-04-04 18:43:27.000000000 +0200
27 +++ ImageMagick-6.4.0/www/source/delegates.xml 2008-04-27 16:35:06.000000000 +0200
28 @@ -57,7 +57,7 @@
29 -->
30 <delegatemap>
31 <delegate decode="autotrace" stealth="True" command="&quot;autotrace&quot; -output-format svg -output-file &quot;%o&quot; &quot;%i&quot;"/>
32 - <delegate decode="browse" stealth="True" spawn="True" command="&quot;htmlview&quot; http://www.imagemagick.org/"/>
33 + <delegate decode="browse" stealth="True" spawn="True" command="&quot;xdg-open&quot; http://www.imagemagick.org/"/>
34 <delegate decode="cgm" thread-support="False" command="&quot;ralcgm&quot; -d ps -oC &lt; &quot;%i&quot; &gt; &quot;%o&quot; 2&gt; &quot;%u&quot;"/>
35 <delegate decode="dng:decode" command="&quot;ufraw-batch&quot; --silent --wb=camera --black-point=auto --exposure=auto --create-id=also --out-type=ppm16 &quot;--output=%u.pnm&quot; &quot;%i&quot;"/>
36 <delegate decode="edit" stealth="True" command="&quot;xterm&quot; -title &quot;Edit Image Comment&quot; -e vi &quot;%o&quot;"/>
37 diff -up ImageMagick-6.4.0/configure.orig ImageMagick-6.4.0/configure
38 --- ImageMagick-6.4.0/configure.orig 2008-04-24 17:07:05.000000000 +0200
39 +++ ImageMagick-6.4.0/configure 2008-04-27 16:33:28.000000000 +0200
40 @@ -40762,7 +40762,7 @@ $as_echo "------------------------------
41 AutotraceDecodeDelegateDefault='autotrace'
42 AVIDecodeDelegateDefault='mplayer'
43 BZIPDelegateDefault='bzip2'
44 -BrowseDelegateDefault='htmlview'
45 +BrowseDelegateDefault='xdg-open'
46 CGMDecodeDelegateDefault='ralcgm'
47 CatDelegateDefault='cat'
48 DNGDecodeDelegateDefault='ufraw-batch'

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2