<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.os.apple.fink.gnome">
    <title>gmane.os.apple.fink.gnome</title>
    <link>http://blog.gmane.org/gmane.os.apple.fink.gnome</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2630"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2629"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2627"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2626"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2625"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2624"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2623"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2622"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2621"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2620"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2619"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2618"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2617"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2616"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2615"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2614"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2613"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2612"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2611"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2610"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2630">
    <title>Re: [Fink-devel] Failed: phase compiling: libgnomecups-shlibs-0.2.3-8 failed</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2630</link>
    <description>&lt;pre&gt;
As a follow up, replacing 'grep -v -- -liconv' in the patch with

sed 's/-liconv//g'

fixes the libgnomecups-shlibs build.

For gtk+2, the patch needs to be applied to configure (not configure.in 
as currently happens) or the fix doesn't get applied to the actual 
build. The patch below takes care of 1) changing the bad grep call to 
sed, and 2) moving the chunk from configure.in to configure.

diff -u -r1.3 gtk+2.patch
--- gtk+2.patch4 May 2012 22:48:26 -00001.3
+++ gtk+2.patch6 May 2012 14:50:54 -0000
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -30,15 +30,12 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;

   $as_echo "#define HAVE_RANDR 1" &amp;gt;&amp;gt;confdefs.h

-diff -Nurd -x'*~' gtk+-2.18.9.orig/configure.in gtk+-2.18.9/configure.in
---- gtk+-2.18.9.orig/configure.in2010-03-17 09:31:39.000000000 -0400
-+++ gtk+-2.18.9/configure.in2012-05-03 22:16:14.000000000 -0400
-&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -1860,7 +1860,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
+&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -24713,7 +24713,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
       fi
     else
-     CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O[0-9]*//' | sed 
's/-m[^\t]*//g'`
+     CUPS_CFLAGS=`$CUPS_CONFIG --cflags | sed 's/-O0-9*//' | sed 
's/-m^\t*//g'`
  -    CUPS_LIBS=`$CUPS_CONFIG --libs`
-+    CUPS_LIBS=`$CUPS_CONFIG --libs | grep -v -- -liconv`
++    CUPS_LIBS=`$CUPS_CONFIG --libs | sed 's/-liconv//g'`

       CUPS_API_VERSION=`$CUPS_CONFIG --api-version`
       CUPS_API_MAJOR=`echo $ECHO_N $CUPS_API_VERSION | awk -F. '{print 
$1}'`

Hanspeter

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-05-06T14:54:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2629">
    <title>Re: [Fink-devel] Failed: phase compiling: libgnomecups-shlibs-0.2.3-8 failed</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2629</link>
    <description>&lt;pre&gt;

Ditto.  This is due to I presume a bug in the latest revision that 
attempts to remove the -liconv flag from "cups-config --libs" output, 
but instead wipes the entire line if there.

The recent gtk+2 checkin has the same underlying issue, though different 
result, because 'grep -v -- -liconv' doesn't remove just that flag, it 
wipes the entire line if present.

Hanspeter

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-05-06T11:56:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2627">
    <title>Re: Window frames in Gnome on 10.7.3</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2627</link>
    <description>&lt;pre&gt; &amp;gt;
 &amp;gt; metacity builds on 10.7 with only minor changes to the .info, but it 
 &amp;gt; crashes on startup, which is why it has not been added to 10.7. 

Metacity worked for me well last time I tried (I don't care too much
about it in fact but it is required for bundle-gnome).  But then my
changes ("SetCC: llvm-gcc" and "SetCXX: llvm-g++") are probably
different from the official ones.

 &amp;gt; That aside, I've built the rest of bundle-gnome on 10.7 (dasher
 &amp;gt; builds but runs awful though that could be a problem between the
 &amp;gt; keyboard and chair). 

I have never used dasher (I don't even know what it does ;-) ), I just
built it because bundle-gnome asked me to...

 &amp;gt; Running gnome-session with quartz-wm works, but the panel
 &amp;gt; misbehaves and likes to cover up window title bars. Maybe a truer
 &amp;gt; x11 wm might behave better.

Apparently fluxbox is also available (never used it though), and so is
enlightenment (my favourite, but tastes may obviously vary).

Cheers,
Stefan

&lt;/pre&gt;</description>
    <dc:creator>Stefan Bruda</dc:creator>
    <dc:date>2012-04-26T18:18:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2626">
    <title>Re: [Fink-users] Window frames in Gnome on 10.7.3</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2626</link>
    <description>&lt;pre&gt;

metacity builds on 10.7 with only minor changes to the .info, but it 
crashes on startup, which is why it has not been added to 10.7. That 
aside, I've built the rest of bundle-gnome on 10.7 (dasher builds but 
runs awful though that could be a problem between the keyboard and 
chair). Running gnome-session with quartz-wm works, but the panel 
misbehaves and likes to cover up window title bars. Maybe a truer x11 wm 
might behave better.

Hanspeter

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-04-26T15:37:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2625">
    <title>Re: [Fink-users] Evince missing patch file in the 10.7tree</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2625</link>
    <description>&lt;pre&gt;
Fixed as well.  Thanks for the report.

Hanspeter

------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-04-12T18:41:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2624">
    <title>Re: Evince missing patch file in the 10.7 tree</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2624</link>
    <description>&lt;pre&gt; &amp;gt;
 &amp;gt; On 4/11/2012 10:12 PM, Stefan Bruda wrote:
 &amp;gt; &amp;gt;
 &amp;gt; &amp;gt; I just tried to install evince on my fresh 10.7 fink install and it
 &amp;gt; &amp;gt; complains like this:
 &amp;gt; &amp;gt;
 &amp;gt; &amp;gt;      Failed: Cannot read PatchFile
 &amp;gt; &amp;gt;      "/opt/sw/fink/dists/stable/main/finkinfo/gnome/evince.patch"
 &amp;gt; &amp;gt;
 &amp;gt; &amp;gt; (/opt/sw being my Fink prefix).  Sure enough, said patch is missing.
 &amp;gt; &amp;gt; I thought you may want to know about it...
 &amp;gt; 
 &amp;gt; Oops.  I forgot to remove the PatchFile field when I moved evince to 
 &amp;gt; 10.7 (patch is no longer needed in the newer evince). 

So it does, thank you.  Mind you, I also had to handle an obscure
error which turns out to be caused by the missing dependency on
libdjvulibre21-dev (which is needed for DJVU support, which the DEB
building process expects), but the thing builds fine now that I
installed libdjvulibre21-dev.  Thank you for the quick reply (and
fix).

Best regards,
Stefan

&lt;/pre&gt;</description>
    <dc:creator>Stefan Bruda</dc:creator>
    <dc:date>2012-04-12T13:15:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2623">
    <title>Re: [Fink-users] Evince missing patch file in the 10.7tree</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2623</link>
    <description>&lt;pre&gt;
Oops.  I forgot to remove the PatchFile field when I moved evince to 
10.7 (patch is no longer needed in the newer evince).  There's a new 
version of evince.info now in CVS and should be making its way to the 
mirrors.

Hanspeter

------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-04-12T03:04:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2622">
    <title>Successfully bundle-gnome build on 10.7</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2622</link>
    <description>&lt;pre&gt;Hello,

I just managed to build bundle-gnome on my 10.7 box (Xcode 4.2).  The
whole thing appears to work well except for the minor quirk of needing
to launch gnome-settings-daemon by hand.

The whole thing was built copying the missing packages from the 10.6
tree and performing minor tweaks only.  Below is the summary of
changes.  Should you need more information please ask, as I will be
happy to provide it.

1. metacity: build fails with clang but succeeds cleanly using

      SetCC: llvm-gcc
      SetCXX: llvm-g++

   metacity also refuses to launch unless gnome-themes is installed (I
   believe that this is a missing dependency which applies to the 10.6
   tree too).

2. gnome-speech builds as is with the addition of "10.7" to the
   "Distribution" variable.

3. gnome-utils builds fine with llvm-gcc and llvm-g++ (SetCC, SetCXX
   as for metacity).

   It is quite possible that the package can be patched instead, as
   the build chokes with clang on a couple of functions that use
   g_return_if_fail() instead of a plain return, which in turn causes
   clang to complain about a non-void function not returning.  This
   seems easy to fix, but I am not familiar enough with the GNOME code
   base to attempt such.

4. file-roller builds with the following appended to
   fille-roller.patch:

------ patch beings ------
diff -Pur file-roller-2.28.2/src/eggtreemultidnd.c.orig file-roller-2.28.2/src/eggtreemultidnd.c
--- file-roller-2.28.2/src/eggtreemultidnd.c.orig2009-11-07 13:38:19.000000000 -0500
+++ file-roller-2.28.2/src/eggtreemultidnd.c2012-04-11 16:31:05.000000000 -0400
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -310,7 +310,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
       selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget));
       gtk_tree_selection_selected_foreach (selection, selection_foreach, &amp;amp;path_list);
       if (path_list == NULL)
-      return;
+      return FALSE;
 
       path_list = g_list_reverse (path_list);
------ patch ends ------

   At least I hope it's FALSE, somebody please correct me if I am
   wrong.

5. As I noted in an earlier email, webkit-1.0.2 (already in the
   official 10.7 tree) fails but gets to build using the by now
   familiar SetCC/SecCXX trick.

That's about it, everything else works unchanged.  I am now happily
running a GNOME desktop.

Here is the content of my local tree as a summary of what was imported
from the 10.6 tree (I hope I only have the GNOME related stuff in
there but I apologize in advance if some other things crept in):

    &amp;lt; godel-v:~ &amp;gt; ls /opt/sw/fink/10.7/local/main/finkinfo/ | cat
    at-spi-py.info
    at-spi-py25.info
    at-spi.info
    at-spi.patch
    bundle-gnome.info
    control-center.info
    control-center.patch
    dasher.info
    dasher.patch
    file-roller.info
    file-roller.patch
    gnome-applets.info
    gnome-applets.patch
    gnome-games.info
    gnome-games.patch
    gnome-netstatus.info
    gnome-netstatus.patch
    gnome-pilot.info
    gnome-pilot.patch
    gnome-python2-desktop-py.info
    gnome-python2-desktop-py.patch
    gnome-python2-py-2.20.1.info
    gnome-python2-py-2.20.1.patch
    gnome-python2-py.info
    gnome-python2-py.patch
    gnome-python2-py25.info
    gnome-python2-py25.patch
    gnome-session.info
    gnome-session.patch
    gnome-speech.info
    gnome-system-monitor.info
    gnome-system-monitor.patch
    gnome-terminal.info
    gnome-terminal.patch
    gnome-themes.info
    gnome-user-docs.info
    gnome-utils.info
    gnome-utils.patch
    gpdf.info
    gpdf.patch
    gtksourceview.info
    gtksourceview.patch
    metacity-setup.info
    metacity-setup.patch
    metacity.info
    metacity.patch
    nautilus-cd-burner.info
    nautilus-cd-burner.patch
    xscreensaver.info
    xscreensaver.patch

Should have I done something wrong and/or should anybody need any
other detail please let me know.

Best regards,
Stefan

&lt;/pre&gt;</description>
    <dc:creator>Stefan Bruda</dc:creator>
    <dc:date>2012-04-12T02:45:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2621">
    <title>Evince missing patch file in the 10.7 tree</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2621</link>
    <description>&lt;pre&gt;Hello,

I just tried to install evince on my fresh 10.7 fink install and it
complains like this:

    Failed: Cannot read PatchFile
    "/opt/sw/fink/dists/stable/main/finkinfo/gnome/evince.patch"

(/opt/sw being my Fink prefix).  Sure enough, said patch is missing.
I thought you may want to know about it...

Best regards,
Stefan

&lt;/pre&gt;</description>
    <dc:creator>Stefan Bruda</dc:creator>
    <dc:date>2012-04-12T02:12:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2620">
    <title>Re: shared-mime-info-1.0-1</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2620</link>
    <description>&lt;pre&gt;The above is all we get from Fink Commander.  Without seeing the error 
message there's no way to know what is wrong.

&lt;/pre&gt;</description>
    <dc:creator>Alexander Hansen</dc:creator>
    <dc:date>2012-04-08T04:00:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2619">
    <title>shared-mime-info-1.0-1</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2619</link>
    <description>&lt;pre&gt;Feedback: not good

--
Package manager version: 0.32.5.3
Distribution version: selfupdate-cvs Sat Apr  7 19:26:10 2012, 10.7, x86_64
Mac OS X version: 10.7.3
Unable to determine Developer Tools version
gcc version: 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn)
make version: 3.81
Feedback Courtesy of FinkCommander

------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Thor Axtmann Garcia</dc:creator>
    <dc:date>2012-04-08T02:42:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2618">
    <title>shared-mime-info fails to build</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2618</link>
    <description>&lt;pre&gt;On 10.7.3 with Xcode 4.3.2, I can't build shared-mime-info-1.0-1. I get the following error:

make
  GEN    create-pot
LC_ALL=C /sw64/bin/intltool-merge -x -u -c ./po/.intltool-merge-cache ./po freedesktop.org.xml.in freedesktop.org.xml
  CC     update_mime_database-update-mime-database.o
gcc -DHAVE_CONFIG_H -I. -I/sw64/include/glib-2.0 -I/sw64/lib/glib-2.0/include -I/sw64/include/libxml2 -I/sw64/include  -I/sw64/include -I/sw64/include/glib-2.0 -I/sw64/lib/glib-2.0/include -I/sw64/include/libxml2 -I/sw64/include -g -O2 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -c -o update_mime_database-update-mime-database.o `test -f 'update-mime-database.c' || echo './'`update-mime-database.c
make[1]: `shared-mime-info.pot' is up to date.
Making check in .
  CCLD   update-mime-database
ld: in update_mime_database-update-mime-database.o, file too small for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Generating and caching the translation database
make[1]: *** [update-mime-database] Error 1
make: *** [check-recursive] Error 1
make: *** Waiting for unfinished jobs....
Merging translations into freedesktop.org.xml.
CREATED freedesktop.org.xml
### execution of make failed, exit code 2
### execution of /tmp/fink.BObKE failed, exit code 2

The file update_mime_database-update-mime-database.o is identified by 'file' as 'Mach-O 64-bit object x86_64' which is right and the file size is 188132. I'm baffled by this error; I've never seen it before. And how can a file be too small for ld to handle?! Weird.

Daniel


------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Daniel Johnson</dc:creator>
    <dc:date>2012-04-02T23:31:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2617">
    <title>Re:  New pango1-xft2-ft219 INFO file – and PATCH</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2617</link>
    <description>&lt;pre&gt;Hello!

I tried to install PANGO with the patch applied via Perl – this works pretty good on intel Mac OS X 10.6.8 and PPC Mac OS X 10.5.8 and 10.4.11. Except of Tiger I could build ImageMagick 6.7.5 with PANGO 1.28.3. On Tiger I have to wait a few hours to be able to try that. Here is the recent version of the INFO file:



--
Greetings

  Pete

Life is the only flaw in an otherwise perfect nonexistence
– Schopenhauer

------------------------------------------------------------------------------
Virtualization &amp;amp; Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core&lt;/pre&gt;</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2012-02-28T23:08:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2616">
    <title>New pango1-xft2-ft219 INFO file – and PATCH</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2616</link>
    <description>&lt;pre&gt;Hello!

I am trying to set up a new INFO file for ImageMagick. Its recent version, 6.7.5-6, needs a more up-to-date version of PANGO, at least 1.28.1. PANGO 1.28.4 creates a new problem: it needs GLip 2.24 (and recent PANGO 1.29.x might need much more updates). So I set up a new INFO file for pango1-xft2-ft219, based on PANGO 1.28.3. I also checked a few bug reports and seems that two are resolved and the problem with '-I&amp;lt;SPACE&amp;gt;' is also past. So I commented and deleted some lines at the end of the DescPackaging block. One bug seems to persist, the one in modules/basic, where one set of C flags comes too early.

I have a bug, https://bugzilla.gnome.org/show_bug.cgi?id=670891, with 'make check'.

The ConfigureParams received an update, --disable-silent-rules, in order to get more information from make.

I have a problem with the line in the PatchScript involving Perl – I commented it applied the patches directly. LDFLAGS and CFLAGS are a bit augmented to accelerate build and produce valuable information. The build succeeds on intel (Sandy Bridge) Mac OS X 10.6.8 with 'fink -vm --build-as-nobody rebuild pango1-xft2-ft219-shlibs pango1-xft2-ft219-dev pango1-xft2-ft219' in one thread or in parallel. When installed ImageMagick builds with this installed version of PANGO.

I'm going to test on PPC (G4, 7447A) on Mac OS X 10.5.8. Some time later I'll probably boot Tiger (10.4.11) and see what is building.



--
Greetings

  Pete                           &amp;lt;]
             o        __o         |__    o       HPV, the real
    ___o    /I       -\&amp;lt;,         |o \  -\),-%     high speed!
___/\ /\___./ \___...O/ O____.....`-O-'-()--o_________________

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core&lt;/pre&gt;</description>
    <dc:creator>Peter Dyballa</dc:creator>
    <dc:date>2012-02-27T16:38:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2615">
    <title>Re: libxml2-2.7.8-2</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2615</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 2/13/12 5:06 AM, PA FRONTH NYHUS wrote:

I don't show a ghmm package in our 10.5 distribution.


If libxml2 is installed, this is not a problem with _it_:

http://www.finkproject.org/faq/usage-general.php?phpLang=en#compile-myself


You're using the wrong version of the Fink distribution for your OS
version as well, and this will cause problems for you.

Follow steps 5-9 from the Source Update section of

http://www.finkproject.org/download/upgrade.php
- -- 
Alexander Hansen, Ph.D.
Fink User Liaison
http://finkakh.wordpress.com/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk85M8QACgkQB8UpO3rKjQ98YgCePD5qS6Q76C9vF1DH9tmRjo7r
NNwAmwXQ2tb4yNny1LMw8HgOCL7hFtwj
=3/e3
-----END PGP SIGNATURE-----

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Alexander Hansen</dc:creator>
    <dc:date>2012-02-13T16:01:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2614">
    <title>libxml2-2.7.8-2</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2614</link>
    <description>&lt;pre&gt;Does not work for me Feedback: Does not works for mein compiling ghmm :




-n checking libxml2 version...
Package libxml-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libxml-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libxml-2.0' found


--
Package manager version: 0.26.0
Distribution version: 0.8.1.rsync i386
Mac OS X version: 10.5.8
Xcode version: 3.0
gcc version: 4.0.1 (Apple Inc. build 5465)
make version: 3.81
Feedback Courtesy of FinkCommander


------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>PA FRONTH NYHUS</dc:creator>
    <dc:date>2012-02-13T10:06:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2613">
    <title>Re: Fwd: Re: Wine-x86 on Lion</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2613</link>
    <description>&lt;pre&gt;Op 21-01-12 18:26, Sjors Gielen schreef:

Anyone against me committing it to 10.7 next week, with me as the
maintainer?

Thanks,
Sjors

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core&lt;/pre&gt;</description>
    <dc:creator>Sjors Gielen</dc:creator>
    <dc:date>2012-01-29T09:43:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2612">
    <title>Re: pango1-xft2-ft2191.24.5-7 fails withgtk-doc-1.18-1</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2612</link>
    <description>&lt;pre&gt;On Wed, 18 Jan 2012 22:02:52 -0500, Hanspeter Niederstrasser 
&amp;lt;hanspeter&amp;lt; at &amp;gt;snaggledworks.com&amp;gt; wrote:
On 10.6 (32 or 64), pango1-xft2-ft219-1.24.5-7 fails tests when building

Confirmed. I flagged the test as expected-fail, so it won't block the 
build. I can't quite figure out what specifically to do to fix them 
all, and pango has completely overhauled (in a way that can't be simply 
backported) at least some of these underlying functions and their 
documentation. New version is blocked from fink by glib and perhaps 
also intrinsic bugginess. 

dan

  --
Daniel Macks
dmacks&amp;lt; at &amp;gt;netspace.org



------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Daniel Macks</dc:creator>
    <dc:date>2012-01-28T15:29:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2611">
    <title>Fwd: Re: Wine-x86 on Lion</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2611</link>
    <description>&lt;pre&gt;Hello fink-gnome-core list,

You are the listed maintainer for the Freetype219 package. For the
wine-x86 package on Lion, I need a freetype219-x86 package which is
otherwise equal to freetype219.

I've gone ahead created this package; it's in my experimental and works
fine together with wine-x86. Are you OK with me committing it to 10.7
stable? (I'll leave you as the maintainer, unless you explicitly want me
to list myself.)

Thanks,
Sjors

-------- Originele bericht --------
Onderwerp: Re: Wine-x86 on Lion
Datum: Sat, 21 Jan 2012 17:21:43 +0000
Van: Damian Dimmich &amp;lt;damian&amp;lt; at &amp;gt;tauri-tec.com&amp;gt;
Aan: Sjors Gielen &amp;lt;sjors&amp;lt; at &amp;gt;sjorsgielen.nl&amp;gt;
CC: fink-devel&amp;lt; at &amp;gt;lists.sourceforge.net

Hello Sjors,

By all means go ahead - I've not released an update in a while.  I also
currently dont have a Lion capable machine and as such have no way of
testing/verifying that the package would work.

Can you remind me - does Lion have its own tree for packages?

Cheers,
Damian

On 21/01/2012 17:05, Sjors Gielen wrote:


------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core&lt;/pre&gt;</description>
    <dc:creator>Sjors Gielen</dc:creator>
    <dc:date>2012-01-21T17:26:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2610">
    <title>pango1-xft2-ft2191.24.5-7 fails with gtk-doc-1.18-1</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2610</link>
    <description>&lt;pre&gt;On 10.6 (32 or 64), pango1-xft2-ft219-1.24.5-7 fails tests when building 
with the newer gtk-doc-1.18-1:

....
gtk-doc: Building HTML
rm -rf ./html
mkdir ./html
mkhtml_options=""; \
gtkdoc-mkhtml 2&amp;gt;&amp;amp;1 --help | grep  &amp;gt;/dev/null "\-\-path"; \
if test "sgml.stamp pango-docs.sgml pango_markup.sgml version.xml 
pango-querymodules.xml" = "0"; then \
  mkhtml_options=--path="."; \
fi
cd ./html &amp;amp;&amp;amp; gtkdoc-mkhtml   pango ../pango-docs.sgml
Computing chunks...

           In gtk-doc.xsl: For acronym (element-type) no value found!


           In gtk-doc.xsl: For acronym (element-type) no value found!


           In gtk-doc.xsl: For acronym (element-type) no value found!


           In gtk-doc.xsl: For acronym (out) no value found!

test "xlayout.gif rotated-text.png" = "x" || ( cd . &amp;amp;&amp;amp; cp layout.gif 
rotated-text.png html )
gtk-doc: Fixing cross-references
....
into make check
....
Making check in docs
make  check-am
make  check-TESTS
make[4]: Nothing to be done for `pango-undeclared.txt'.
make[4]: Nothing to be done for `pango-unused.txt'.
Incomplete or undocumented symbols:
100% symbol docs coverage.
801 symbols documented.
8 symbols incomplete.
0 not documented.


PangoColor (&amp;lt;items&amp;gt;)
PangoFontMetrics (&amp;lt;items&amp;gt;)
PangoGlyphItem (&amp;lt;items&amp;gt;)
PangoGlyphItemIter (&amp;lt;items&amp;gt;)
PangoGlyphString (&amp;lt;items&amp;gt;)
PangoItem (&amp;lt;items&amp;gt;)
PangoLayoutLine (&amp;lt;items&amp;gt;)
pango_tab_array_new_with_positions (...)


FAIL: check.docs
======================================================================
1 of 1 test failed
Please report to http://bugzilla.gnome.org/enter_bug.cgi?product=pango
======================================================================
make[3]: *** [check-TESTS] Error 1
make[2]: *** [check-am] Error 2
make[1]: *** [check] Error 2

The first chunk above happens at the end of the normal build and is 
noisier than what happens with the old gtk-doc, but does not kill the 
build.  The test failure is fatal.

On Lion, which has gtk-doc-1.17 there is no failure.  However, when I 
copy the 10.5/6 gtk-doc.info to Lion, I see the same failure.

Hanspeter

&lt;/pre&gt;</description>
    <dc:creator>Hanspeter Niederstrasser</dc:creator>
    <dc:date>2012-01-19T03:02:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.os.apple.fink.gnome/2609">
    <title>Gnome-panel and lablgtk2 on Fink 10.7</title>
    <link>http://permalink.gmane.org/gmane.os.apple.fink.gnome/2609</link>
    <description>&lt;pre&gt;Hello Corey and gnome-core,

I have a Fink package for coqide that depends on (among other things) gnome-panel and lablgtk2, but these packages are not available in the 10.7 tree.
Do you think you could move them there?
I've been able to build gnome-panel 2.28.0-3 and lablgtk2 2.14.2-2 on 10.7 with their existing package descriptions without any modifications.

Best regards,
Bruno De Fraine


------------------------------------------------------------------------------
RSA(R) Conference 2012
Mar 27 - Feb 2
Save $400 by Jan. 27
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev2
_______________________________________________
fink-gnome-core mailing list
fink-gnome-core&amp;lt; at &amp;gt;lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.gnome
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-gnome-core

&lt;/pre&gt;</description>
    <dc:creator>Bruno De Fraine</dc:creator>
    <dc:date>2012-01-16T09:36:36</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.os.apple.fink.gnome">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.os.apple.fink.gnome</link>
  </textinput>
</rdf:RDF>

