[cvs] dists/10.4/unstable/main/finkinfo/kde libktorrent.info,1.2,1.3

2010-11-08 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv16371/main/finkinfo/kde

Modified Files:
libktorrent.info 
Log Message:
fix missing $KDE4_CMAKE_ARGS (gettext is found on 10.4 now)

Index: libktorrent.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/libktorrent.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libktorrent.info4 Jul 2010 17:40:58 -   1.2
+++ libktorrent.info8 Nov 2010 13:46:03 -   1.3
@@ -12,7 +12,7 @@
 CompileScript: 
 #!/bin/sh -ev
 . %p/sbin/kde4-buildenv.sh
-cmake -DCMAKE_INSTALL_PREFIX:PATH=%p/opt/kde4/%type_pkg[ui] .
+cmake -DCMAKE_INSTALL_PREFIX:PATH=%p/opt/kde4/%type_pkg[ui] $KDE4_CMAKE_ARGS .
 make
 
 InstallScript: make install DESTDIR=%d


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel ppl.info,1.9,1.10

2010-11-08 Thread fangism
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv940

Modified Files:
ppl.info 
Log Message:
fangism now maintains, %v bump, mega-test-suite enabled, 10.4 dist enabled!,
fixed bdep, added InfoTest, remove GCC restriction, patched, un-patched, 
find Java headers fixed w.r.t. recent Apple update (early fail diagnostic),
added DocFiles, ccache-default-safe, ...
testsuite validated on powerpc-darwin8, i686-darwin10


Index: ppl.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/ppl.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ppl.info24 Oct 2010 19:38:07 -  1.9
+++ ppl.info8 Nov 2010 18:18:55 -   1.10
@@ -1,39 +1,120 @@
 Package: ppl
-Version: 0.10.2
-Revision: 2
-Distribution: 10.5, 10.6
+Version: 0.11
+Revision: 1
+# Distribution: 10.5, 10.6
 BuildDependsOnly: True
 Depends: %N-shlibs (= %v-%r)
-BuildDepends: gcc4.2, gmp (= 4.2.4-1000), fink (= 0.28), system-java-dev
+BuildDepends: 
+   fink (= 0.28),
+   gmp (= 4.2.4-1000),
+   m4,
+   system-java-dev
+
+# BuildDepends: gcc4.2
 GCC: 4.0
-SetCC: gcc-4.2
-SetCXX: g++-4.2
+# SetCC: gcc-4.2
+# SetCXX: g++-4.2
 Source: ftp://ftp.cs.unipr.it/pub/%n/releases/%v/%n-%v.tar.bz2
-Source-MD5: 5667111f53150618b0fa522ffc53fc3e
-ConfigureParams: --mandir=%p/share/man
+Source-MD5: c414abd2ecaf1f1f48949c78d383ee1a
+ConfigureParams: 
+   --mandir=%p/share/man \
+   --infodir=%p/share/info \
+   --disable-static \
+   --enable-pch \
+   --with-java=$JAVA_HOME \
+   CFLAGS=-g -O2 -pipe -fpch-preprocess -fPIC \
+   CXXFLAGS=-g -O2 -pipe -fpch-preprocess -fPIC \
+   CPPFLAGS=-I$JAVA_INCLUDE \
+   --enable-check=thorough \
+   -C
+# if you do not have the patience for the 'thorough' tests, 
--enable-check=quick
+
+PatchScript: 
+   #!/bin/sh -ev
+   # g++-4.0.1 rejects template instantiating w/ anonymous enums -- fangism
+   # this was fixed in ppl-0.11; the following patch doesn't do anything
+   # file=src/meta_programming.hh
+   # sed -i.orig -e '/struct Bool/,/^};/s|enum {|enum value_type {|' $file
+   # To take advantage of precompiled headers, defined macros must match.
+   # patch could apply to src/Makefile.am too
+   file=src/Makefile.in
+   sed -i.orig -e '/CXXCOMPILE.*-xc++-header/s|-o|-DPIC |' $file
+   # files compiled here are VERY taxing on memory, so we serialize
+   file=tests/MIP_Problem/Makefile.in
+   echo .NOTPARALLEL: check-am  $file
+   # use consistent architecture for testing, override default as needed
+   file=interfaces/Java/tests/Makefile.in
+   case %m in
+   powerpc ) ;;
+   i386 ) sed -i.orig '/\$(JAVA)/s|-classpath|-d32 |' $file ;;
+   x64_64 ) ;;
+   esac
+
 CompileScript: 
-   #!/bin/bash -ev
-   if [ -e /usr/libexec/java_home ]; then
-   ./configure %c --with-java=`/usr/libexec/java_home`
-   else
-   ./configure %c
-   fi
+   #!/bin/sh -ev
+   mkdir build
+   cd build
+   # old-location
+   # JAVA_HOME=`/usr/libexec/java_home`
+   JAVA_FW=/System/Library/Frameworks/JavaVM.framework
+   JAVA_HOME=$JAVA_FW/Home
+   test -d $JAVA_HOME  test -x $JAVA_HOME || \
+ { echo $JAVA_HOME not found. ; exit 1 ;}
+   JAVA_INCLUDE=$JAVA_HOME/include
+   test -r $JAVA_INCLUDE/jni.h || JAVA_INCLUDE=$JAVA_FW/Headers
+   test -r $JAVA_INCLUDE/jni.h || \
+ { echo Missing Java development package containing jni.h. ; \
+ echo Please download/install from Apple and try again. ; \
+ echo Thank you and have a nice day. ; exit 1 ;}
+   ../configure %c
+   # for ccache-default
+   export CCACHE_SLOPPINESS=time_macros
make
 
-InstallScript: make install DESTDIR=%d
+InfoTest: 
+   TestScript: 
+   #!/bin/sh -ev
+   cd build
+   # for ccache-default
+   export CCACHE_SLOPPINESS=time_macros
+   make -k check || exit 2
+   # make check || exit 2
+   
+   TestDepends: glpk-dev
+   TestSuiteSize: large
+
+InstallScript: 
+   #!/bin/sh -ev
+   cd build
+   make install DESTDIR=%d
+
+DocFiles: 
+   BUGS
+   COPYING
+   CREDITS
+   ChangeLog*
+   INSTALL
+   NEWS
+   README*
+   STANDARDS
+   TODO
+
 SplitOff: 
   Package: %N-shlibs
-  Depends: gmp-shlibs (= 4.2.4-1000), libgmpxx-shlibs (= 4.2.4-1000)
+  Depends: 
+   gmp-shlibs (= 4.2.4-1000),
+   libgmpxx-shlibs (= 4.2.4-1000)
+  
   Files: 
-%p/lib/libppl.7*.dylib
-%p/lib/libppl_c.2*.dylib
-%p/lib/libpwl.4*.dylib
+%p/lib/libppl.9*.dylib
+%p/lib/libppl_c.4*.dylib
+%p/lib/libpwl.5*.dylib
 %p/lib/ppl
   
   Shlibs: 
-%p/lib/libppl.7.dylib 9.0.0 %n (= 0.10-1)
-%p/lib/libppl_c.2.dylib 4.0.0 %n (= 0.10-1)
-

[cvs] dists/10.4/unstable/main/finkinfo/kde libktorrent.info,1.3,1.4

2010-11-08 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9115/main/finkinfo/kde

Modified Files:
libktorrent.info 
Log Message:
more busted stuff in libktorrent

Index: libktorrent.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde/libktorrent.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libktorrent.info8 Nov 2010 13:46:03 -   1.3
+++ libktorrent.info8 Nov 2010 20:23:29 -   1.4
@@ -11,8 +11,9 @@
 SetCXXFLAGS: -Os
 CompileScript: 
 #!/bin/sh -ev
+export KDE4_PREFIX=%p KDE4_TYPE=%type_pkg[ui]
 . %p/sbin/kde4-buildenv.sh
-cmake -DCMAKE_INSTALL_PREFIX:PATH=%p/opt/kde4/%type_pkg[ui] $KDE4_CMAKE_ARGS .
+cmake $KDE4_CMAKE_ARGS .
 make
 
 InstallScript: make install DESTDIR=%d


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods bsddb3-py.info, 1.9, 1.10

2010-11-08 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9652

Modified Files:
bsddb3-py.info 
Log Message:
New upstream version.


Index: bsddb3-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/bsddb3-py.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- bsddb3-py.info  4 Nov 2010 23:21:53 -   1.9
+++ bsddb3-py.info  8 Nov 2010 23:17:14 -   1.10
@@ -1,6 +1,6 @@
 Info2: 
 Package: bsddb3-py%type_pkg[python]
-Version: 5.1.0
+Version: 5.1.1
 Revision: 1
 #Doesn't build with  2.6
 Type: python (2.6 2.7 3.1)
@@ -20,7 +20,7 @@
 Homepage: http://www.jcea.es/programacion/pybsddb.htm
 
 Source: mirror:custom:b/bsddb3/bsddb3-%v.tar.gz
-Source-MD5: 6d72d2533f0f3a4bb4b1207598624d6a
+Source-MD5: c13e47c18077f96381d4fb6ca18f4181
 
 Depends: python%type_pkg[python], db51-aes-shlibs | db51-shlibs
 BuildDepends: db51-aes | db51, fink (= 0.24.12), 
distribute-py%type_pkg[python]


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods dulwich-py.info, 1.2, 1.3

2010-11-08 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21110

Modified Files:
dulwich-py.info 
Log Message:
Take over with maintainer's permission, update to latest upstream, add py27 and 
use update-alternatives to allow multiple python versions to coexist.


Index: dulwich-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/dulwich-py.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dulwich-py.info 25 Apr 2010 06:55:56 -  1.2
+++ dulwich-py.info 9 Nov 2010 00:21:46 -   1.3
@@ -1,26 +1,51 @@
 Info2: 
 Package: dulwich-py%type_pkg[python]
-Version: 0.5.0
+Version: 0.6.2
 Revision: 1
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
-Type: python (2.4 2.5 2.6)
+Type: python (2.4 2.5 2.6 2.7)
 Source: http://samba.org/~jelmer/dulwich/dulwich-%v.tar.gz
-Source-MD5: 811e77a8f1deb6f4bcaca6597b7367a5
-Depends: python%type_pkg[python], setuptools-py%type_pkg[python] (= 0.6c1)
+Source-MD5: 69d7e998f466972d5f9e0a6c6c1147f1
+BuildDepends: distribute-py%type_pkg[python], fink (= 0.24.12)
+Depends: python%type_pkg[python]
 
 CompileScript: 
-  python%type_raw[python] setup.py build
-  python%type_raw[python] setup.py build_ext -i
+  %p/bin/python%type_raw[python] setup.py build
   # Needs pydoctor
   # make doc
 
+
+InfoTest: 
+  TestDepends: discover-py%type_pkg[python], testtools-py%type_pkg[python]
+  TestScript: %p/bin/discover-py%type_pkg[python] || exit 2
+
+
 InstallScript: 
-  python%type_raw[python] setup.py install --prefix %p --root %d
+  %p/bin/python%type_raw[python] setup.py install --root=%d
+  
+  mv %i/bin/dul-daemon %i/bin/dul-daemon-py%type_pkg[python]
+  mv %i/bin/dul-web %i/bin/dul-web-py%type_pkg[python]
+  mv %i/bin/dulwich %i/bin/dulwich-py%type_pkg[python]
+  
   mkdir -p %i/share/doc
   cp -r docs %i/share/doc/%n
 
 DocFiles: AUTHORS COPYING NEWS README
 
+PostInstScript: 
+   update-alternatives --install %p/bin/dul-daemon dul-daemon 
%p/bin/dul-daemon-py%type_pkg[python] %type_pkg[python]
+   update-alternatives --install %p/bin/dul-web dul-web 
%p/bin/dul-web-py%type_pkg[python] %type_pkg[python]
+   update-alternatives --install %p/bin/dulwich dulwich 
%p/bin/dulwich-py%type_pkg[python] %type_pkg[python]
+
+
+PreRmScript: 
+   if [ $1 != upgrade ]; then
+   update-alternatives --remove dul-daemon 
%p/bin/dul-daemon-py%type_pkg[python]
+   update-alternatives --remove dul-web 
%p/bin/dul-web-py%type_pkg[python]
+   update-alternatives --remove dulwich 
%p/bin/dulwich-py%type_pkg[python]
+   fi
+
+
 Description: Python implementation of Git
 DescDetail: 
 Dulwich is a pure-Python implementation of the Git file formats
@@ -29,7 +54,8 @@
 The project is named after the village in which Mr. and Mrs. Git live
 in the Monty Python sketch.
 
-License: GPL
+DescPackaging: Previously maintained by Brendan Cully bren...@finkproject.org
+License: GPL2+
 Homepage: http://samba.org/~jelmer/dulwich/
-Maintainer: Brendan Cully bren...@finkproject.org
+Maintainer: Daniel Johnson dan...@daniel-johnson.org
 


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel mercurial-py.info, 1.22, 1.23

2010-11-08 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19494

Modified Files:
mercurial-py.info 
Log Message:
Oops, didn't mean to leave the '-v' in there.


Index: mercurial-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/mercurial-py.info,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- mercurial-py.info   9 Nov 2010 00:08:04 -   1.22
+++ mercurial-py.info   9 Nov 2010 00:11:19 -   1.23
@@ -82,7 +82,7 @@
   TestScript: 
 perl -pi -e 's/Is a directory/No such file or directory/' 
tests/test-mq-qnew.t
 perl -pi -e 's/python,/python%type_raw[python],/' tests/run-tests.py
-cd tests/  %p/bin/python%type_raw[python] run-tests.py -v || exit 2
+cd tests/  %p/bin/python%type_raw[python] run-tests.py || exit 2
   
   TestSuiteSize: large
 


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel mercurial-py.info, 1.21, 1.22

2010-11-08 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv18643

Modified Files:
mercurial-py.info 
Log Message:
Make sure test suite uses the correct python version.


Index: mercurial-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/mercurial-py.info,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- mercurial-py.info   4 Nov 2010 23:00:34 -   1.21
+++ mercurial-py.info   9 Nov 2010 00:08:04 -   1.22
@@ -81,7 +81,8 @@
 InfoTest: 
   TestScript: 
 perl -pi -e 's/Is a directory/No such file or directory/' 
tests/test-mq-qnew.t
-cd tests/  %p/bin/python%type_raw[python] run-tests.py || exit 2
+perl -pi -e 's/python,/python%type_raw[python],/' tests/run-tests.py
+cd tests/  %p/bin/python%type_raw[python] run-tests.py -v || exit 2
   
   TestSuiteSize: large
 


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/fangism/finkinfo cppunit1.10.2.info,NONE,1.1

2010-11-08 Thread fangism
Update of /cvsroot/fink/experimental/fangism/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22986

Added Files:
cppunit1.10.2.info 
Log Message:
patched the hell out of this to compile with -W -Wall -Werror so that includes
don't trigger warnings/errors in other packages that bdep or tdep on this.


--- NEW FILE: cppunit1.10.2.info ---
Package: cppunit1.10.2
Version: 1.10.2
Revision: 1006
GCC: 4.0
Maintainer: Ben Burton b...@debian.org
License: LGPL

# Dependencies:
Depends: %N-shlibs (=%v-%r)
BuildDepends: doxygen
BuildDependsOnly: True
Conflicts: cppunit
Replaces: cppunit

# Unpack Phase:
Source: mirror:sourceforge:cppunit/cppunit-%v.tar.gz
Source-MD5: 0bc06cd219410f7d4f6bbfc9bdd7c824

PatchScript: 
  #!/bin/sh -ev
  perl -pi -e 's/(AC_DEFUN\()([^[]+)(,)/\1\[\2]\3/' cppunit.m4
  # patch header files to be warning-clean -- fangism
  # the warnings in this file are unused parameters only
  # Admittedly, this patch might result in Doxygen differences.
  file=include/cppunit/TestListener.h
  sed -i.orig -e '/class CPPUNIT_API/,/};/s|\*test|*|g' \
-e '/class CPPUNIT_API/,/};/s|\*suite|*|g' \
-e '/class CPPUNIT_API/,/};/s|failure|\|g' \
-e '/class CPPUNIT_API/,/};/s|\*eventManager|*|g' $file
  file=include/cppunit/plugin/TestPlugIn.h
  sed -i.orig -e '/^{/a \
virtual ~CppUnitTestPlugIn() {}' $file
  file=include/cppunit/XmlOutputterHook.h
  sed -i.orig -e '/^{/a \
virtual ~XmlOutputterHook() {}' $file
  file=include/cppunit/extensions/TestFixtureFactory.h
  sed -i.orig -e '/virtual.*makeFixture/a \
virtual ~TestFixtureFactory() {}' $file
  # translations units are not as important as they are not exposed...
  file=src/cppunit/BriefTestProgressListener.cpp
  sed -i.orig -e '/::endTest/,/};/s|\*test|*|g' $file
  file=src/cppunit/DynamicLibraryManagerException.cpp
  sed -i.orig -e '/std::runtime_error/d' \
-e '/: m_cause/s|.*|: std::runtime_error(), m_cause(cause)|' $file
  file=src/cppunit/TestCaseDecorator.cpp
  sed -i.orig -e '/: m_test/,/, TestCase(.*)/c \
: TestCase( test-getName() ), m_test(test)' $file
  file=src/cppunit/TestFactoryRegistry.cpp
  sed -i.orig -e '/::registerFactory/s|name|\|' $file
  file=src/cppunit/TestPlugInDefaultImpl.cpp
  sed -i.orig -e 's|\*[a-zA-Z]*|*|g' -e 's|[a-zA-Z]*|\|g' $file
  file=src/cppunit/TestSuccessListener.cpp
  sed -i.orig -e '/::addFailure/s|failure|\|' $file
  file=src/cppunit/TextTestProgressListener.cpp
  sed -i.orig -e '/::startTest/s|\*test|*|' \
-e '/::endTestRun/s|\*test|*|' \
-e 's|\*eventManager|*|' $file
  file=src/cppunit/TextTestRunner.cpp
  sed -i.orig -e '/: m_outputter/,/, m_eventManager/c \
: m_result( new TestResultCollector() )\
, m_eventManager( new TestResult() )\
, m_outputter( outputter )' $file
  file=src/cppunit/XmlDocument.cpp
  sed -i.orig -e '/: m_rootElement/,/, m_styleSheet/c \
: m_styleSheet( styleSheet )\
, m_rootElement( new XmlElement( DummyRoot ) )' $file
  file=src/cppunit/XmlOutputterHook.cpp
  sed -i.orig -e 's|\*[a-zA-Z]*|*|g' -e 's|[a-zA-Z]*|\|g' $file
  file=src/DllPlugInTester/CommandLineParser.cpp
  sed -i.orig -e '/: m_currentArgument/,/^{/c \
: m_useCompiler( false )\
, m_useXml( false )\
, m_briefProgress( false )\
, m_noProgress( false )\
, m_useText( false )\
, m_useCout( false )\
, m_waitBeforeExit( false )\
, m_currentArgument( 0 ) {' $file
  file=examples/simple/Main.cpp
  sed -i.orig -e '/^main/s|arg[cv]||g' $file
  file=examples/simple/ExampleTestCase.cpp
  sed -i.orig -e '/\/ zero/a \
result=result;' $file


# Compile Phase:
ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking
# make sure headers compile under strictest warnings -- fangism
SetCFLAGS: -g -O2 -W -Wall -Werror
SetCXXFLAGS: -g -O2 -W -Wall -Werror
CompileScript: ./configure %c; make

# Install Phase:
InstallScript: 
make install DESTDIR=%d

# The standard install includes the example program
# %p/bin/simple, which is not useful as an installed application
# (it is merely provided as example code so that developers can
# look at its sources).  Remove it from the final install.
rm %i/bin/simple

DocFiles: AUTHORS BUGS COPYING NEWS README THANKS TODO

SplitOff: 
 Package: %N-shlibs
 Files: lib/libcppunit-%v*.dylib
 Shlibs: %p/lib/libcppunit-%v.dylib 3.0.0 %n (= 1.10.2-1001)
 DocFiles: AUTHORS BUGS COPYING NEWS README THANKS TODO


Description: C++ Port of JUnit framework for unit testing
DescDetail: 
CppUnit is a C++ unit testing framework.  It started its life as a
port of JUnit.

Features:
- XML output with hook for additional data
- Compiler like text output to integrate with an IDE
- Helper macros for easier test suite declaration
- Hierarchical test fixture support
- Test registry to reduce compilation need
- Test plug-in for faster compile/test cycle (self testable dynamic library)
- Protector to 

[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods hg-git-py.info, NONE, 1.1

2010-11-08 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv5105

Added Files:
hg-git-py.info 
Log Message:
New upstream version.


--- NEW FILE: hg-git-py.info ---
Info2: 
Package: hg-git-py%type_pkg[python]
Version: 0.2.5
Revision: 1
Type: python (2.5 2.6 2.7)
Description: Mercurial as a Git client
DescDetail: 
This is the Hg-Git plugin for Mercurial, adding the ability to push to
and pull from a Git server repository from Mercurial. This means you
can collaborate on Git based projects from Mercurial, or use a Git
server as a collaboration point for a team with developers using both
Git and Mercurial.

DescUsage: 
Add the two lines
hgext.bookmarks =
hggit =
to the [extensions] section of your ~/.hgrc file to enable.
Use hg help hggit to check that it is installed correctly and
get usage information.

Maintainer: Daniel Johnson dan...@daniel-johnson.org
License: GPL2+
Homepage: http://hg-git.github.com/

#Source: http://download.github.com/schacon-hg-git-%v-0-g0ed3c70.tar.gz
Source: http://homepage.mac.com/danielj7/schacon-hg-git-%v-0-g0ed3c70.tar.gz
Source-MD5: 79eebd8b83827ac9a776481991683032
SourceDirectory: schacon-hg-git-0ed3c70

Depends: python%type_pkg[python], mercurial-py%type_pkg[python], 
dulwich-py%type_pkg[python]
BuildDepends: fink (= 0.24.12), distribute-py%type_pkg[python]

CompileScript: %p/bin/python%type_raw[python] setup.py build

# Tests don't work right.
#InfoTest: 
#   TestScript: 
#   perl -pi -e 's/python,/python%type_raw[python],/' 
tests/run-tests.py
#   PYTHONPATH=%b %p/bin/python%type_raw[python] tests/run-tests.py 
|| exit 2
#   
#

InstallScript: %p/bin/python%type_raw[python] setup.py install --root=%d

DocFiles: COPYING DESIGN.txt README.md TODO.txt



--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci mathomatic.info, 1.25, 1.26

2010-11-08 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv32506

Modified Files:
mathomatic.info 
Log Message:
new version


Index: mathomatic.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/mathomatic.info,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- mathomatic.info 29 Aug 2010 16:14:31 -  1.25
+++ mathomatic.info 9 Nov 2010 04:35:31 -   1.26
@@ -1,5 +1,5 @@
 Package: mathomatic
-Version: 15.2.0
+Version: 15.3.3
 Revision: 1
 Description: Symbolic algebra program
 DescDetail: 
@@ -27,7 +27,7 @@
readline5-shlibs (= 5.0-1004)
 
 Source: http://www.panix.com/~gesslein/%n-%v.tar.bz2
-Source-MD5: 36ca2da219ac1d61ef7820c130f98cd3
+Source-MD5: 74a9dcf0ad73f642fca01ee4e9e1b624
 CompileScript: 
   make prefix=%p READLINE=1
   make test


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink/10.4 dpkg-base-files.info, NONE, 1.1 ChangeLog, 1.32, 1.33 dpkg.info, 1.11, 1.12 dpkg.patch, 1.6, 1.7

2010-11-08 Thread David R. Morrison
Update of /cvsroot/fink/fink/10.4
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28970

Modified Files:
ChangeLog dpkg.info dpkg.patch 
Added Files:
dpkg-base-files.info 
Log Message:
sync with stable


Index: dpkg.patch
===
RCS file: /cvsroot/fink/fink/10.4/dpkg.patch,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dpkg.patch  14 Apr 2009 03:11:00 -  1.6
+++ dpkg.patch  9 Nov 2010 07:29:13 -   1.7
@@ -2634,3 +2634,159 @@
  fprintf(stderr, _(dpkg: warning - %s returned error exit status 
%d\n),description,n);
else
  ohshit(_(subprocess %s returned error exit status 
%d),description,n);
+diff -Nurd dpkg-1.10.21.orig/main/help.c dpkg-1.10.21/main/help.c
+--- dpkg-1.10.21.orig/main/help.c  2003-10-25 16:03:21.0 +0400
 dpkg-1.10.21/main/help.c   2009-12-20 02:37:43.0 -0400
+@@ -180,7 +187,7 @@
+   }
+   if (f_debug  dbg_scripts) {
+ fprintf(stderr,D0%05o: fork/exec %s (,dbg_scripts,path);
+-while (*argv) fprintf(stderr, %s,*argv++);
++while (*++argv) fprintf(stderr, %s,*argv);
+ fputs( )\n,stderr);
+   }
+   instdirl= strlen(instdir);
+@@ -256,17 +263,75 @@
+ static int do_script(const char *pkg, const char *scriptname, const char 
*scriptpath, struct stat *stab, char *const arglist[], const char *desc, const 
char *name, int warn) {
+   const char *scriptexec;
+   int c1, r;
++  if (scriptpath) // if NULL, just want wrapper side-effect, no actual .deb 
script present
+   setexecute(scriptpath,stab);
+ 
+   c1= m_fork();
+   if (!c1) {
+ const char **narglist;
++/* FINK LOCAL begin */
++const char **full_narglist;
++char *path_wrapper;
++struct stat stab_wrapper;
++const char *null_script_path = ;  // must be blank string (NULL is 
end-of-array sentinel)
++/* FINK LOCAL end */
+ for (r=0; arglist[r]; r++) ;
+-narglist=nfmalloc((r+1)*sizeof(char*));
++// narglist=nfmalloc((r+1)*sizeof(char*));
++/* FINK LOCAL begin */
++full_narglist=nfmalloc((r+2)*sizeof(char*));  // leave space for 
wrapper-script-name, add NULL terminator
++narglist=full_narglist+1;  // orig pointer points to orig array
++/* FINK LOCAL end */
+ for (r=1; arglist[r-1]; r++)
+   narglist[r]= arglist[r];
++if (scriptpath) { // FINK LOCAL
+ scriptexec= preexecscript(scriptpath,narglist);
++} else { scriptexec = null_script_path; }; // FINK LOCAL was called with 
no actual script path to run
+ narglist[0]= scriptexec;
++/* FINK LOCAL begin */
++// try to set up with wrapper
++#define FINK_DPKG_SCRIPT_DIR @PREFIX@/lib/fink/dpkg-base-files
++// determine wrapper-script pathname
++asprintf(path_wrapper, %s/%s, FINK_DPKG_SCRIPT_DIR, scriptname);
++if (path_wrapper == NULL) {
++  ohshite(_(dpkg - error: could not allocate for fink script wrapper for 
%s.\n), scriptpath);
++} else {
++  if (!stat(path_wrapper, stab_wrapper)) {
++  if ((stab_wrapper.st_mode  0555) == 0555) {
++// only use it if it exists and is chmod a+rx
++debug(dbg_scripts,Wrapper script '%s' will be used around '%s', 
path_wrapper, scriptpath);
++// it's good! set wrapper as actual runnable thing in narglist array
++narglist=full_narglist;
++scriptexec= preexecscript(path_wrapper,narglist);
++narglist[0]= scriptexec;
++
++/*
++  Global wrapper needs way to introspect name of package
++  being manipulated. Normal .deb scripts could have this
++  hard-coded in their script because this info is known at
++  the time the .deb is constructed. Pass the name as an
++  env var to the wrapper.
++*/
++setenv(FINK_PACKAGE_NAME, pkg, 1);
++  } else {
++debug(dbg_scripts,Wrapper script '%s' wrong perms, path_wrapper);
++if (scriptpath) {
++  debug(dbg_scripts,...falling back to real script '%s', 
scriptpath);
++} else {
++  debug(dbg_scripts,...skipping over because no real script '%s', 
scriptpath);
++  exit(0);
++}
++  }
++  } else {
++  debug(dbg_scripts,Wrapper script '%s' does not exist, path_wrapper);
++  if (scriptpath) {
++debug(dbg_scripts,...falling back to real script '%s', scriptpath);
++  } else {
++debug(dbg_scripts,...skipping over because no real script '%s', 
scriptpath);
++exit(0);
++  }
++  }
++}
++/* FINK LOCAL end */
+ execv(scriptexec,narglist);
+ ohshite(desc,name);
+   }
+@@ -294,8 +359,13 @@
+   if (stat(scriptpath,stab)) {
+ if (errno == ENOENT) {
+   debug(dbg_scripts,maintainer_script_installed nonexistent 
%s,scriptname);
+-  return 0;
+-}
++//return 0;
++  /* FINK LOCAL begin */
++  // always call do_script (fink adds side-effects), but pass NULL if no 
actual script
++  scriptpath = 

[cvs] fink/10.4 dpkg-base-files.info, NONE, 1.1.2.2 ChangeLog, 1.21.2.9, 1.21.2.10 dpkg.info, 1.10.2.1, 1.10.2.2 dpkg.patch, 1.5.2.1, 1.5.2.2

2010-11-08 Thread David R. Morrison
Update of /cvsroot/fink/fink/10.4
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29107

Modified Files:
  Tag: branch_0_29
ChangeLog dpkg.info dpkg.patch 
Added Files:
  Tag: branch_0_29
dpkg-base-files.info 
Log Message:
sync with stable


Index: dpkg.patch
===
RCS file: /cvsroot/fink/fink/10.4/dpkg.patch,v
retrieving revision 1.5.2.1
retrieving revision 1.5.2.2
diff -u -d -r1.5.2.1 -r1.5.2.2
--- dpkg.patch  14 Apr 2009 03:11:48 -  1.5.2.1
+++ dpkg.patch  9 Nov 2010 07:29:55 -   1.5.2.2
@@ -2634,3 +2634,159 @@
  fprintf(stderr, _(dpkg: warning - %s returned error exit status 
%d\n),description,n);
else
  ohshit(_(subprocess %s returned error exit status 
%d),description,n);
+diff -Nurd dpkg-1.10.21.orig/main/help.c dpkg-1.10.21/main/help.c
+--- dpkg-1.10.21.orig/main/help.c  2003-10-25 16:03:21.0 +0400
 dpkg-1.10.21/main/help.c   2009-12-20 02:37:43.0 -0400
+@@ -180,7 +187,7 @@
+   }
+   if (f_debug  dbg_scripts) {
+ fprintf(stderr,D0%05o: fork/exec %s (,dbg_scripts,path);
+-while (*argv) fprintf(stderr, %s,*argv++);
++while (*++argv) fprintf(stderr, %s,*argv);
+ fputs( )\n,stderr);
+   }
+   instdirl= strlen(instdir);
+@@ -256,17 +263,75 @@
+ static int do_script(const char *pkg, const char *scriptname, const char 
*scriptpath, struct stat *stab, char *const arglist[], const char *desc, const 
char *name, int warn) {
+   const char *scriptexec;
+   int c1, r;
++  if (scriptpath) // if NULL, just want wrapper side-effect, no actual .deb 
script present
+   setexecute(scriptpath,stab);
+ 
+   c1= m_fork();
+   if (!c1) {
+ const char **narglist;
++/* FINK LOCAL begin */
++const char **full_narglist;
++char *path_wrapper;
++struct stat stab_wrapper;
++const char *null_script_path = ;  // must be blank string (NULL is 
end-of-array sentinel)
++/* FINK LOCAL end */
+ for (r=0; arglist[r]; r++) ;
+-narglist=nfmalloc((r+1)*sizeof(char*));
++// narglist=nfmalloc((r+1)*sizeof(char*));
++/* FINK LOCAL begin */
++full_narglist=nfmalloc((r+2)*sizeof(char*));  // leave space for 
wrapper-script-name, add NULL terminator
++narglist=full_narglist+1;  // orig pointer points to orig array
++/* FINK LOCAL end */
+ for (r=1; arglist[r-1]; r++)
+   narglist[r]= arglist[r];
++if (scriptpath) { // FINK LOCAL
+ scriptexec= preexecscript(scriptpath,narglist);
++} else { scriptexec = null_script_path; }; // FINK LOCAL was called with 
no actual script path to run
+ narglist[0]= scriptexec;
++/* FINK LOCAL begin */
++// try to set up with wrapper
++#define FINK_DPKG_SCRIPT_DIR @PREFIX@/lib/fink/dpkg-base-files
++// determine wrapper-script pathname
++asprintf(path_wrapper, %s/%s, FINK_DPKG_SCRIPT_DIR, scriptname);
++if (path_wrapper == NULL) {
++  ohshite(_(dpkg - error: could not allocate for fink script wrapper for 
%s.\n), scriptpath);
++} else {
++  if (!stat(path_wrapper, stab_wrapper)) {
++  if ((stab_wrapper.st_mode  0555) == 0555) {
++// only use it if it exists and is chmod a+rx
++debug(dbg_scripts,Wrapper script '%s' will be used around '%s', 
path_wrapper, scriptpath);
++// it's good! set wrapper as actual runnable thing in narglist array
++narglist=full_narglist;
++scriptexec= preexecscript(path_wrapper,narglist);
++narglist[0]= scriptexec;
++
++/*
++  Global wrapper needs way to introspect name of package
++  being manipulated. Normal .deb scripts could have this
++  hard-coded in their script because this info is known at
++  the time the .deb is constructed. Pass the name as an
++  env var to the wrapper.
++*/
++setenv(FINK_PACKAGE_NAME, pkg, 1);
++  } else {
++debug(dbg_scripts,Wrapper script '%s' wrong perms, path_wrapper);
++if (scriptpath) {
++  debug(dbg_scripts,...falling back to real script '%s', 
scriptpath);
++} else {
++  debug(dbg_scripts,...skipping over because no real script '%s', 
scriptpath);
++  exit(0);
++}
++  }
++  } else {
++  debug(dbg_scripts,Wrapper script '%s' does not exist, path_wrapper);
++  if (scriptpath) {
++debug(dbg_scripts,...falling back to real script '%s', scriptpath);
++  } else {
++debug(dbg_scripts,...skipping over because no real script '%s', 
scriptpath);
++exit(0);
++  }
++  }
++}
++/* FINK LOCAL end */
+ execv(scriptexec,narglist);
+ ohshite(desc,name);
+   }
+@@ -294,8 +359,13 @@
+   if (stat(scriptpath,stab)) {
+ if (errno == ENOENT) {
+   debug(dbg_scripts,maintainer_script_installed nonexistent 
%s,scriptname);
+-  return 0;
+-}
++//return 0;
++  /* FINK LOCAL begin */
++  // always call do_script (fink adds 

[cvs] fink ChangeLog, 1.503.2.37, 1.503.2.38 VERSION, 1.94.2.16, 1.94.2.17

2010-11-08 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30021

Modified Files:
  Tag: branch_0_29
ChangeLog VERSION 
Log Message:
releasing fink-0.29.16


Index: VERSION
===
RCS file: /cvsroot/fink/fink/VERSION,v
retrieving revision 1.94.2.16
retrieving revision 1.94.2.17
diff -u -d -r1.94.2.16 -r1.94.2.17
--- VERSION 24 Oct 2010 01:19:05 -  1.94.2.16
+++ VERSION 9 Nov 2010 07:34:52 -   1.94.2.17
@@ -1 +1 @@
-0.29.15.cvs
+0.29.16.cvs

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.503.2.37
retrieving revision 1.503.2.38
diff -u -d -r1.503.2.37 -r1.503.2.38
--- ChangeLog   24 Oct 2010 01:19:05 -  1.503.2.37
+++ ChangeLog   9 Nov 2010 07:34:52 -   1.503.2.38
@@ -1,3 +1,9 @@
+2010-11-09  Dave Morrison  d...@finkproject.org
+
+   * VERSION: Bumped package manager version to 0.29.16, a
+   release on branch_0_29 which updates packages used for
+   bootstrapping
+
 2010-10-23  Dave Morrison  d...@finkproject.org
 
* VERSION: Bumped package manager version to 0.29.15, a bug-fix


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/base fink-10.4.info, 1.28, 1.29 fink-10.5.info, 1.30, 1.31 fink-10.6.info, 1.17, 1.18 fink-x86_64.info, 1.13, 1.14

2010-11-08 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31822

Modified Files:
fink-10.4.info fink-10.5.info fink-10.6.info fink-x86_64.info 
Log Message:
new release


Index: fink-10.6.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink-10.6.info,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- fink-10.6.info  24 Oct 2010 01:34:19 -  1.17
+++ fink-10.6.info  9 Nov 2010 07:45:04 -   1.18
@@ -1,6 +1,6 @@
 Info4: 
 Package: fink
-Version: 0.29.15
+Version: 0.29.16
 Revision: 51
 Distribution: 10.6
 Depends: base-files
@@ -13,7 +13,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 3b401b88af6966e3f076d90d482ea07f
+Source-MD5: 55a8ac4ae18a2a713081cf4b74492d3b
 NoSetPATH: true
 CompileScript: 
  make test PREFIX=%p ARCHITECTURE=%m DISTRIBUTION=10.6

Index: fink-10.5.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink-10.5.info,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- fink-10.5.info  24 Oct 2010 01:34:19 -  1.30
+++ fink-10.5.info  9 Nov 2010 07:45:04 -   1.31
@@ -1,6 +1,6 @@
 Info4: 
 Package: fink
-Version: 0.29.15
+Version: 0.29.16
 Revision: 41
 Distribution: 10.5
 Depends: base-files
@@ -13,7 +13,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 3b401b88af6966e3f076d90d482ea07f
+Source-MD5: 55a8ac4ae18a2a713081cf4b74492d3b
 NoSetPATH: true
 CompileScript: 
  make test PREFIX=%p ARCHITECTURE=%m DISTRIBUTION=10.5

Index: fink-10.4.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink-10.4.info,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- fink-10.4.info  24 Oct 2010 01:34:19 -  1.28
+++ fink-10.4.info  9 Nov 2010 07:45:04 -   1.29
@@ -1,5 +1,5 @@
 Package: fink
-Version: 0.29.15
+Version: 0.29.16
 Revision: 31
 Distribution: 10.4
 Depends: base-files
@@ -13,7 +13,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 3b401b88af6966e3f076d90d482ea07f
+Source-MD5: 55a8ac4ae18a2a713081cf4b74492d3b
 NoSetPATH: true
 CompileScript: 
  make test PREFIX=%p ARCHITECTURE=%m DISTRIBUTION=10.4

Index: fink-x86_64.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink-x86_64.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- fink-x86_64.info24 Oct 2010 01:34:19 -  1.13
+++ fink-x86_64.info9 Nov 2010 07:45:04 -   1.14
@@ -1,6 +1,6 @@
 Info4: 
 Package: fink
-Version: 0.29.15
+Version: 0.29.16
 Revision: 46
 Distribution: 10.5
 Architecture: x86_64
@@ -14,7 +14,7 @@
 Replaces: gcc3.1 (= 1175-6)
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 3b401b88af6966e3f076d90d482ea07f
+Source-MD5: 55a8ac4ae18a2a713081cf4b74492d3b
 NoSetPATH: true
 CompileScript: 
  make test PREFIX=%p ARCHITECTURE=%m


--
The Next 800 Companies to Lead America's Growth: New Video Whitepaper
David G. Thomson, author of the best-selling book Blueprint to a 
Billion shares his insights and actions to help propel your 
business during the next growth cycle. Listen Now!
http://p.sf.net/sfu/SAP-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs