<?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://comments.gmane.org/gmane.os.apple.fink.gnome/2622"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2621"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2619"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2618"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2616"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2614"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2610"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2609"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2607"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2605"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2601"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2600"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2599"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2593"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2592"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2591"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2589"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2588"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2582"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.os.apple.fink.gnome/2580"/>
      </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://comments.gmane.org/gmane.os.apple.fink.gnome/2622">
    <title>Successfully bundle-gnome build on 10.7</title>
    <link>http://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2621">
    <title>Evince missing patch file in the 10.7 tree</title>
    <link>http://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2619">
    <title>shared-mime-info-1.0-1</title>
    <link>http://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2618">
    <title>shared-mime-info fails to build</title>
    <link>http://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2616">
    <title>New pango1-xft2-ft219 INFO file – and PATCH</title>
    <link>http://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2614">
    <title>libxml2-2.7.8-2</title>
    <link>http://comments.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://comments.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://comments.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://comments.gmane.org/gmane.os.apple.fink.gnome/2609">
    <title>Gnome-panel and lablgtk2 on Fink 10.7</title>
    <link>http://comments.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>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2607">
    <title>[patch] glib2 on x86_64 can't collate/sort (eg in filedialogs)</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2607</link>
    <description>&lt;pre&gt;GTK+ file open dialogs don't sort alphabetically on x86_64 because 
apparently glib is using Carbon for collation.  The following patch 
fixes file dialog sorting when I tested it on firefox8 on 10.7.  In 
theory it should be applied to all x86_64 platforms.  Dunno if including 
it for i386 or powerpc would be detrimental.

diff -Nurd -x'*~' glib-2.22.4.orig/tests/child-test.c 
glib-2.22.4/tests/child-test.c
--- glib-2.22.4.orig/glib/gunicollate.c.orig 2009-03-31 
18:04:20.000000000 -0500
+++ glib-2.22.4/glib/gunicollate.c 2010-03-06 17:59:08.000000000 -0600
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -26,6 +26,9 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
  #include &amp;lt;wchar.h&amp;gt;
  #endif

+/* Carbon is not available on 64-bit */
+#undef HAVE_CARBON
+
  #ifdef HAVE_CARBON
  #include &amp;lt;CoreServices/CoreServices.h&amp;gt;
  #endif

Source:
https://trac.macports.org/ticket/23959

Hanspeter

------------------------------------------------------------------------------
Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex
infrastructure or vast IT resources to deliver seamless, secure access to
virtual desktops. With this all-in-one solution, easily deploy virtual 
desktops for less than the cost of PCs and save 60% on VDI infrastructure 
costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox
_______________________________________________
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>2011-12-30T01:04:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2605">
    <title>eel2-1:2.6.2-1010</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2605</link>
    <description>&lt;pre&gt;Hallo,

I'm sorry.

There is the instruction to get  (pmw-py23 and pil-py23) but no item  
Found?


Thanks for an answer,  cheers, Erwin




Feedback: not good

--
Package manager version: 0.27.13
Distribution version: 0.9.0 i386
Mac OS X version: 10.5.8
Developer Tools not installed
Feedback Courtesy of FinkCommander




Gruss von dem Erwin
an der Nördlichen Ostsee

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure 
contains a definitive record of customers, application performance, 
security threats, fraudulent activity, and more. Splunk takes this 
data and makes sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-novd2d_______________________________________________
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>Erwin Jäger</dc:creator>
    <dc:date>2011-12-01T09:26:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2601">
    <title>gtkmm2.4 is obsolete: documentation for this,and 10.7 ?</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2601</link>
    <description>&lt;pre&gt;Hi there,

today I was trying to build a package using gtkmm2.4 (specifically, the package "surfer"), and since I was using "-m --build-as-nobody" as is my habit, Fink error out like this:

WARNING: The package surfer has a preferred BuildDepends on gtkmm2.4-dev,
 but gtkmm2.4-dev is an obsolete package.


I was confused at first, because there is no outward sign that gtkmm2.4-dev is obsolete. Indeed, "fink info gtkmm2.4-dev" says nothing about this! Only when I looked at the .info file, did I discover that gtkmm2.4 and gtkmm2.4-dev are obsolete; apparently these days you ought to use gtkmm2.4-gtk-dev and gtkmm2.4-shlibs only.

But several packages to this day depend on gtkmm2.4-dev, and I am not surprised. If this is meant to eventually change, then it should be made crystal clear for packagers that they are doing something wrong, and how to do it right.


Hence, could at the very least the "Description:" fields for gtkmm2.4 and gtkmm2.4-dev be changed to contain "OBSOLETE" and a hint as to what the migration plan is ?


Secondly, a problem that troubles many other packages is the fact that building a package with just one obsolete splitoff will cause fink to install fink-obsolete-package during build time. This is quite annoying; e.g. me personally, I always balk by default when I see that building a package will install fink-obsolete-packages. 

One way to fix this is to not make migration packages a splitoff, but rather have them in a separate .info file. I realize that using splitoffs for migration packages sometimes is important, but in this case, I wonder if it really is... ? At least for 10.7, we have a chance to start with a clean slate. So, can we at least for 10.7 (re)move the obsolete parts into a separate .info file, so that the genuine non-obsolete parts can be built without involving fink-obsolete-package ? Same for glibmm2.4, by the way.

My guess is that we can also do this for the 10.5/10.6 packages, though, there shouldn't be serious migration troubles, right?



Cheers,
Max




------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
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>Max Horn</dc:creator>
    <dc:date>2011-09-28T10:27:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2600">
    <title>These packages work in 10.7, and I really need them ...</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2600</link>
    <description>&lt;pre&gt;The following all work on 10.7, and are dependencies for one or more packages I maintain.  Any chance they might be added?

Many thanks in advance.

fftw
gsl
gtk2-engines
gtkglarea2
pygobject2-py
pygtk2-gtk-py

I've Bcc-ed maintainers for those packages that have them.

&lt;/pre&gt;</description>
    <dc:creator>William G. Scott</dc:creator>
    <dc:date>2011-07-31T14:42:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2599">
    <title>gnome-desktop-2.14.0-2</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2599</link>
    <description>&lt;pre&gt;Feedback: works for me

--
Package manager version: 0.27.13
Distribution version: 0.9.0 powerpc
Mac OS X version: 10.5.8
Developer Tools not installed
Feedback Courtesy of FinkCommander

------------------------------------------------------------------------------
Got Input?   Slashdot Needs You.
Take our quick survey online.  Come on, we don't ask for help often.
Plus, you'll get a chance to win $100 to spend on ThinkGeek.
http://p.sf.net/sfu/slashdot-survey
_______________________________________________
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>bb wolfe</dc:creator>
    <dc:date>2011-07-31T16:22:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2593">
    <title>libgnomeprint2.2 clang fix</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2593</link>
    <description>&lt;pre&gt;  The current libgnomeprint2.2 packaging fails to build under Lion with
clang unless the following patchlet is added to the libgnomeprint2.2.patch...

--- libgnomeprint-2.18.6/libgnomeprint/modules/cups/gnome-print-cups-transport.c.orig   2011-07-09 14:57:38.000000000 -0400
+++ libgnomeprint-2.18.6/libgnomeprint/modules/cups/gnome-print-cups-transport.c        2011-07-09 14:58:14.000000000 -0400
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -36,6 +36,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 #include &amp;lt;fcntl.h&amp;gt;
 #include &amp;lt;unistd.h&amp;gt;
 #include &amp;lt;locale.h&amp;gt;
+#include &amp;lt;stdio.h&amp;gt;
 
 #include &amp;lt;cups/cups.h&amp;gt;
 #include &amp;lt;libgnomeprint/gnome-print.h&amp;gt;

so that the FILE type is available when it is used in a declaration. FYI.
           Jack

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
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>Jack Howarth</dc:creator>
    <dc:date>2011-07-12T01:51:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2592">
    <title>glib2-shlibs.info clang fix</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2592</link>
    <description>&lt;pre&gt;  The current glib2-shlibs.info in unstable fails to build under clang
due to errors of the form...

/bin/sh ../libtool  --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..  -I..  -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION -DPCRE_STATIC -I/sw/include -DG_DISABLE_SINGLE_INCLUDES   -Os -Wall -c -o garray.lo garray.c
libtool: compile:  gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION -DPCRE_STATIC -I/sw/include -DG_DISABLE_SINGLE_INCLUDES -Os -Wall -c garray.c  -fno-common -DPIC -o .libs/garray.o
In file included from garray.c:944:
./galiasdef.c:18:72: error: only weak aliases are supported on darwin
extern __typeof (g_array_append_vals) g_array_append_vals __attribute((alias("IA__g_array_append_vals"), visibility("default")));
                                                                       ^
./galiasdef.c:21:58: error: only weak aliases are supported on darwin
extern __typeof (g_array_free) g_array_free __attribute((alias("IA__g_array_free"), visibility("default")));
                                                         ^
./galiasdef.c:24:72: error: only weak aliases are supported on darwin
extern __typeof (g_array_insert_vals) g_array_insert_vals __attribute((alias("IA__g_array_insert_vals"), visibility("default")));

Only two solutions are possible. The first, patching glib/makegalias.pl and friends to emit
"weak, alias" rather than "alias" seems difficult to implement. The far simplier fix is to just
append --disable-visibility to ConfigureParams. Note that configure in glib reports...

  --disable-visibility    don't use ELF visibility attributes

The Mach-O object format doesn't support true alias in the object files ala ELF and 
the weak import that Geoff Keatting created is considered a partially functional hack.
So in the absence of any failures in glib, the --disable-visibility option seems wiser.
          Jack

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
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>Jack Howarth</dc:creator>
    <dc:date>2011-07-10T21:47:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2591">
    <title>Fink evolution-2.28.3.1-4 failures</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2591</link>
    <description>&lt;pre&gt;1) fails to finish building the docs w/out docbook-dtd installed

2)
Validating .deb dir /sw/buildworld.build/root-evolution-2.28.3.1-4...
Error: File installed into deprecated directory /sw/sbin/.*/
Offending file: /sw/sbin/evolution/
Offending file: /sw/sbin/evolution/2.28/
Offending file: /sw/sbin/evolution/2.28/csv2vcard
Offending file: /sw/sbin/evolution/2.28/evolution-addressbook-clean
Offending file: /sw/sbin/evolution/2.28/evolution-addressbook-export
Offending file: /sw/sbin/evolution/2.28/evolution-alarm-notify
Offending file: /sw/sbin/evolution/2.28/killev
Removing runtime build-lock...

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
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>2011-07-08T14:58:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2589">
    <title>Missing -lintl in gtkhtml3.14-dev</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2589</link>
    <description>&lt;pre&gt;libtool: link: gcc -dynamiclib  -o .libs/libgtkhtml-3.14.19.dylib 
.libs/gtkhtml-embedded.o .libs/gtkhtml-properties.o 
.libs/gtkhtml-search.o .libs/gtkhtml-stream.o .libs/gtkhtml.o 
.libs/gtkhtmldebug.o .libs/gtkhtmlfontstyle.o .libs/htmlanchor.o 
.libs/htmlbutton.o .libs/htmlcheckbox.o .libs/htmlclue.o 
.libs/htmlcluealigned.o .libs/htmlclueflow.o .libs/htmlclueh.o 
.libs/htmlcluev.o .libs/htmlcolor.o .libs/htmlcolorset.o 
.libs/htmlcursor.o .libs/htmldrawqueue.o .libs/htmlembedded.o 
.libs/htmlengine-edit.o .libs/htmlengine-edit-clueflowstyle.o 
.libs/htmlengine-edit-cursor.o .libs/htmlengine-edit-cut-and-paste.o 
.libs/htmlengine-edit-fontstyle.o .libs/htmlengine-edit-images.o 
.libs/htmlengine-edit-movement.o .libs/htmlengine-edit-rule.o 
.libs/htmlengine-edit-selection-updater.o .libs/htmlengine-edit-table.o 
.libs/htmlengine-edit-tablecell.o .libs/htmlengine-edit-text.o 
.libs/htmlengine-print.o .libs/htmlengine-save.o 
.libs/htmlengine-search.o .libs/htmlengine.o .libs/htmlentity.o 
.libs/htmlenumutils.o .libs/htmlfontmanager.o .libs/htmlform.o 
.libs/htmlgdkpainter.o .libs/htmlplainpainter.o .libs/htmlhidden.o 
.libs/htmlimage.o .libs/htmlimageinput.o .libs/htmlinterval.o 
.libs/htmllist.o .libs/htmlmap.o .libs/htmlmarshal.o .libs/htmlobject.o 
.libs/htmlpainter.o .libs/htmlprinter.o .libs/htmlradio.o 
.libs/htmlrule.o .libs/htmlsearch.o .libs/htmlreplace.o 
.libs/htmlselect.o .libs/htmlselection.o .libs/htmlsettings.o 
.libs/htmlshape.o .libs/htmlstack.o .libs/htmlstringtokenizer.o 
.libs/htmlstyle.o .libs/htmltable.o .libs/htmltablecell.o 
.libs/htmltext.o .libs/htmltextarea.o .libs/htmltextinput.o 
.libs/htmltextslave.o .libs/htmltokenizer.o .libs/htmltype.o 
.libs/htmlundo.o .libs/htmlundo-action.o .libs/htmliframe.o 
.libs/htmlframe.o .libs/htmlframeset.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/cell.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/factory.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/html.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/hyperlink.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/image.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/object.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/paragraph.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/table.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/text.o 
.libs/libgtkhtml-3.14.lax/libgtkhtml-a11y.a/utils.o 
-L/sw/lib/fontconfig2/lib -L/sw/lib /sw/lib/libenchant.dylib 
/sw/lib/libgconf-2.dylib /sw/lib/libgailutil.dylib 
/sw/lib/libgtk-x11-2.0.dylib /sw/lib/libgdk-x11-2.0.dylib 
/sw/lib/libatk-1.0.dylib /sw/lib/libgio-2.0.dylib 
/sw/lib/pango-ft219/lib/libpangoft2-1.0.dylib 
/sw/lib/libgdk_pixbuf-2.0.dylib 
/sw/lib/pango-ft219/lib/libpangocairo-1.0.dylib /sw/lib/libcairo.dylib 
/sw/lib/pango-ft219/lib/libpango-1.0.dylib 
/sw/lib/freetype219/lib/libfreetype.dylib 
/sw/lib/fontconfig2/lib/libfontconfig.dylib /sw/lib/libgobject-2.0.dylib 
/sw/lib/libgmodule-2.0.dylib /sw/lib/libglib-2.0.dylib    -install_name 
  /sw/lib/libgtkhtml-3.14.19.dylib -compatibility_version 21 
-current_version 21.1
Undefined symbols:
   "_libintl_setlocale", referenced from:
       _gtk_html_class_properties_new in gtkhtml-properties.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make[2]: *** [libgtkhtml-3.14.la] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
### execution of make failed, exit code 2
### execution of /var/tmp/tmp.82.GZf69u failed, exit code 2
Removing runtime build-lock...
Removing build-lock package...
/sw/bin/dpkg-lockwait -r fink-buildlock-gtkhtml3.14-dev-3.28.3-3

Hanspeter

------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
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>2011-07-07T20:11:53</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2588">
    <title>gtkspell2-shlibs 2.0.16-2 vs. 2.0.16-3</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2588</link>
    <description>&lt;pre&gt;Dear Gnome Core Team, dear Daniel,

today I got a report from a user about xchat 2.8.8-5 in stable being broken. The reason: It depends on gtkspell2-shlibs 2.0.16-3, which is only in unstable; stable has still rev 2.

Now I wonder how to resolve this: Is there any substantial change in rev 3 that means I must depend on it, and can't depend on rev 2? It was Daniel who changed xchat to depend on gtkspell2-shlibs 2.0.16-3 in February, so I wonder if there was a strict reason.

If not, I could just change the depends to require only rev 2. Alternatively, maybe gtkspell2-shlibs 2.0.16-3 can be moved to stable?

I'd like to resolve this ASAP one way or another in order to un-break xchat in stable.

Thanks,
Max
------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-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>Max Horn</dc:creator>
    <dc:date>2011-06-15T15:35:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2582">
    <title>Runtime issues with fontconfig-config-2.8.0-6 due to mising unburied dylib in libfontconfig2-shlibs</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2582</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

cf.
https://sourceforge.net/tracker/index.php?func=detail&amp;amp;aid=3308385&amp;amp;group_id=17203&amp;amp;atid=117203

On 10.6/64-bit/Xcode 3.2.6, I get:

$ fc-list
- -bash: /sw64/bin/fc-list: Malformed Mach-o file
$ otool -L /sw64/bin/fc-list
/sw64/bin/fc-list:
/sw64/lib/libfontconfig.1.dylib (compatibility version 6.0.0, current
version 6.4.0)
load command 11 extends past end of load commands
$ otool -L /sw64/lib/libfontconfig.1.dylib
otool: can't open file: /sw64/lib/libfontconfig.1.dylib (No such file or
directory)

On 10.6/32-bit/Xcode 3.2.6, the error shows up slightly differently:
$ otool -L /sw32/bin/fc-list
/sw32/bin/fc-list:
/sw32/lib/libfontconfig.1.dylib (compatibility version 6.0.0, current
version 6.4.0)
load command 11 extends past end of load commands
$ otool -L /sw32/lib/libfontconfig.1.dylib
otool: can't open file: /sw32/lib/libfontconfig.1.dylib (No such file or
directory)

32-bit: $ dpkg -S libfontconfig | grep dylib
fontconfig2-dev: /sw32/lib/fontconfig2/lib/libfontconfig.dylib
fontconfig2-dev: /sw32/lib/libfontconfig.dylib
fontconfig2-shlibs: /sw32/lib/fontconfig2/lib/libfontconfig.1.dylib

64-bit: $ dpkg -S libfontconfig | grep dylib
fontconfig2-shlibs: /sw64/lib/fontconfig2/lib/libfontconfig.1.dylib
fontconfig2-dev: /sw64/lib/fontconfig2/lib/libfontconfig.dylib
fontconfig2-dev: /sw64/lib/libfontconfig.dylib
- -- 
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/

iEYEARECAAYFAk3f6MMACgkQB8UpO3rKjQ+69wCfVSJ9upEpj8WVLdRHMtdUUJnx
kTAAmQF5aH7bUftUb+CjoSUR8mPrbcSi
=D2hu
-----END PGP SIGNATURE-----

------------------------------------------------------------------------------
vRanger cuts backup time in half-while increasing security.
With the market-leading solution for virtual backup and recovery, 
you get blazing-fast, flexible, and affordable data protection.
Download your free trial now. 
http://p.sf.net/sfu/quest-d2dcopy1
_______________________________________________
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>2011-05-27T18:09:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2580">
    <title>evolution-2.28.3.1-4</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2580</link>
    <description>&lt;pre&gt;Feedback: works for me

--
Package manager version: 0.29.21
Distribution version: selfupdate-rsync Fri Apr 22 19:41:02 2011, 10.5,  
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

------------------------------------------------------------------------------
Fulfilling the Lean Software Promise
Lean software platforms are now widely adopted and the benefits have been 
demonstrated beyond question. Learn why your peers are replacing JEE 
containers with lightweight application servers - and what you can gain 
from the move. http://p.sf.net/sfu/vmware-sfemails
_______________________________________________
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>Jorge</dc:creator>
    <dc:date>2011-04-22T17:41:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.os.apple.fink.gnome/2572">
    <title>Update of xft2-dev package to 2.2.0</title>
    <link>http://comments.gmane.org/gmane.os.apple.fink.gnome/2572</link>
    <description>&lt;pre&gt;Hello!

I updated the package (MacPorts is already 2.2.0). The most important  
(the only?) change is that xft-config was removed to rely on pkg- 
config. Maybe one of the next days I'll learn how to build GNU Emacs  
24.0.50 to use Fink's libXft instead of that from the X11-2.6.1 package.

Because of the change xft-config -&amp;gt; pkg-config I added to the INFO  
file another component to PKG_CONFIG_PATH. Here are the files:




Mac OS X 10.5.8, PPC.

--
Greetings

   Pete

Imbecility, n.:
A kind of divine inspiration, or sacred fire affecting censorious  
critics of this dictionary.
– Ambrose Bierce: _The Devil's Dictionary_

------------------------------------------------------------------------------
Create and publish websites with WebMatrix
Use the most popular FREE web apps or write code yourself; 
WebMatrix provides all the features you need to develop and 
publish your website. http://p.sf.net/sfu/ms-webmatrix-sf
_______________________________________________
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>2011-04-02T16:08:29</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>

