Re: [Fink-devel] Let's update gimp2 on pangocairo-branch!

2008-05-01 Thread Tomoaki Okayama
I renew the update patch and attach it.

Additional changes:

* PatchScript:
 - Use 'open' for read help files instead of 'firefox',
   suggested by Sebastien Maret.

At Thu, 01 May 2008 00:50:49 +0200,
Sebastien Maret wrote:
 
 Alexander Strange [EMAIL PROTECTED] writes:
 
  There's another new package for it here:
  http://sourceforge.net/tracker/index.php?func=detailaid=1942780group_id=17203atid=414256
 
  As noted above, my patch follows your original packaging way.
  Another one seems to make some big changes in packaging.
  It's difficult for me to say which is better.
  Which one do you like?
 
 Hang on a second here. I posted this package on the trackers *two
 weeks ago*, and I offered to maintain it. I spent a lot of time
 updating and testing this package. What's the point of duplicating the
 efforts? Before starting working on updating a package, it we would
 good if poeple could check on the tracker that nothing has been
 submitted yet. Maintainers time is a scarse ressource that should be
 used more wisely.
 
I'm sorry for not checking the tracker first...
After I read Strange's e-mail, I realized that.
I didn't intend to take your submittion lightly,
but to leave it up to the maintainer's discretion.


Thanks,
Tomoaki Okayama



gimp2_update_pangocairo_3.diff
Description: Binary data
-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel

Re: [Fink-devel] xquartz woes (was Re: [Fink-users] Failed: phase compiling: imagemagick-6.4.0-1001 failed)

2008-05-01 Thread David R. Morrison

On Apr 30, 2008, at 10:46 AM, Martin Costabel wrote:


 All of these bugs can be worked around simply by supplying configure  
 with the flags

 --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib


Thanks for the tip: this works great!  I've added these flags to a  
number of packages which were having trouble building under xquartz,  
and I expect we'll need to add this to a number of other packages.

 In the case of imagemagick, there seems to be a logical error in  
 configure: It assumes that if it finds rsvg and cairo, then there  
 must also be rsvg-cairo somewhere. This is visibly not true for the  
 version of rsvg which it accepts (=2.9.0).

I agree, and I'm not too sure what can be done about it at the  
moment.  Once pangocairo is released we should be all set.

   -- Dave


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


[Fink-devel] issue building with imagemagick1

2008-05-01 Thread Alexander Hansen
(I talked with David earlier about this on IRC, and this is a followup)

The issue is that I wanted to update a package to use imagemagick1.  It 
wound up failing thusly:

g++ -I/sw/include/ImageMagick -g -O2 -Wall -W -D_THREAD_SAFE -DYYDEBUG=1 
-g -O2
 -L/sw/lib -o drawtiming -L/sw/lib/pango-ft219/lib 
-L/sw/lib/fontconfig2/lib -L/
usr/X11/lib -R/usr/X11/lib -L/sw/lib/freetype219/lib -lfreetype -lz 
-Wl,-framewo
rk,CoreServices -Wl,-framework,ApplicationServices -L/sw/lib main.o 
parser.o sca
nner.o timing.o -L/sw/lib -lMagick++ -lWand -lMagick -lgnugetopt
ld: library not found for -lWand
collect2: ld returned 1 exit status

David told me that upstream is now using libMagickWand instead of 
libWand, so I looked in my packages' source code for a hardcoded lWand.  
There was none.  I found that it was getting its ImageMagick build 
environment from %p/bin/Magick++-config (installed through 
imagemagick1-dev).  So I checked that, and found the following line:




--libs)
  echo -L${libdir} -lMagick++ -lWand -lMagick

So I'd think we'd either need a compatibility symlink libWand.dylib - 
libMagicWand.1.dylib, or to fix Magick++-config (that looks like the 
only config file that will output -lWand).

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] issue building with imagemagick1

2008-05-01 Thread Daniel Macks
On Thu, May 01, 2008 at 03:49:12PM -0400, Alexander Hansen wrote:
 (I talked with David earlier about this on IRC, and this is a followup)
 
 The issue is that I wanted to update a package to use imagemagick1.  It 
 wound up failing thusly:
 
 g++ -I/sw/include/ImageMagick -g -O2 -Wall -W -D_THREAD_SAFE -DYYDEBUG=1 
 -g -O2
  -L/sw/lib -o drawtiming -L/sw/lib/pango-ft219/lib 
 -L/sw/lib/fontconfig2/lib -L/
 usr/X11/lib -R/usr/X11/lib -L/sw/lib/freetype219/lib -lfreetype -lz 
 -Wl,-framewo
 rk,CoreServices -Wl,-framework,ApplicationServices -L/sw/lib main.o 
 parser.o sca
 nner.o timing.o -L/sw/lib -lMagick++ -lWand -lMagick -lgnugetopt
 ld: library not found for -lWand
 collect2: ld returned 1 exit status
 
 David told me that upstream is now using libMagickWand instead of 
 libWand, so I looked in my packages' source code for a hardcoded lWand.  
 There was none.  I found that it was getting its ImageMagick build 
 environment from %p/bin/Magick++-config (installed through 
 imagemagick1-dev).  So I checked that, and found the following line:
 
 
 
 
 --libs)
   echo -L${libdir} -lMagick++ -lWand -lMagick
 
 So I'd think we'd either need a compatibility symlink libWand.dylib - 
 libMagicWand.1.dylib, or to fix Magick++-config (that looks like the 
 only config file that will output -lWand).

foo-config returns incorrect information about foo does sound like a
bug in foo.

dan

-- 
Daniel Macks
[EMAIL PROTECTED]
http://www.netspace.org/~dmacks


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel


Re: [Fink-devel] issue building with imagemagick1

2008-05-01 Thread Alexander Hansen
Oh, sorry about the redundant extra message.  Thunderbird on Windows  
XP. ;-)



-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.devel