[cvs] dists/10.4/stable/main/finkinfo/devel floppy.info, 1.2, 1.3 flow.info, 1.2, 1.3

2011-05-20 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv9450/stable/main/finkinfo/devel

Modified Files:
floppy.info flow.info 
Log Message:
floppy, flow: improved detection of fortran compiler.

Index: floppy.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/floppy.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- floppy.info 19 May 2011 21:32:15 -  1.2
+++ floppy.info 20 May 2011 07:54:29 -  1.3
@@ -1,6 +1,6 @@
 Package: floppy
 Version: 7.0
-Revision: 3
+Revision: 4
 Description: Fortran source code analyzer
 Architecture: powerpc, i386, x86_64
 Provides: floppy
@@ -15,11 +15,15 @@
 
 PatchScript: 
 #!/bin/sh -ev
-# newer fortrans habe a function range
+# newer fortrans have a function range. Rename it.
   sed -i.bak 's|RANGE|EGNAR|g' range.for procom.for settyp.for
-# replace f77 by gfortran if available
+
+# replace f77 by g95 or gfortran if available
+# this is poor fortran man's configure
   if [ -f %p/bin/gfortran ]; then
 sed -i.bak 's|f77|gfortran|g' makefile
+  elif [ -f %p/bin/g95 ]; then
+sed -i.bak 's|f77|g95|g' makefile
   fi
 
 

Index: flow.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/flow.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- flow.info   19 May 2011 21:32:15 -  1.2
+++ flow.info   20 May 2011 07:54:29 -  1.3
@@ -1,6 +1,6 @@
 Package: flow
 Version: 3.0
-Revision: 3
+Revision: 4
 Description: Fortran source code analyzer
 Architecture: powerpc, i386, x86_64
 Provides: flow
@@ -15,9 +15,12 @@
 
 PatchScript: 
 #!/bin/sh -ev
-# replace f77 by gfortran if available
+# replace f77 by g95 or gfortran if available
+# this is poor fortran man's configure
   if [ -f %p/bin/gfortran ]; then
 sed -i.bak 's|f77|gfortran|g' makefile
+  elif [ -f %p/bin/g95 ]; then
+sed -i.bak 's|f77|g95|g' makefile
   fi
 
 


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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 floppy.info, 1.2, 1.3 flow.info, 1.2, 1.3

2011-05-20 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv9450/unstable/main/finkinfo/devel

Modified Files:
floppy.info flow.info 
Log Message:
floppy, flow: improved detection of fortran compiler.

Index: floppy.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/floppy.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- floppy.info 19 May 2011 21:32:15 -  1.2
+++ floppy.info 20 May 2011 07:54:29 -  1.3
@@ -1,6 +1,6 @@
 Package: floppy
 Version: 7.0
-Revision: 3
+Revision: 4
 Description: Fortran source code analyzer
 Architecture: powerpc, i386, x86_64
 Provides: floppy
@@ -15,11 +15,15 @@
 
 PatchScript: 
 #!/bin/sh -ev
-# newer fortrans habe a function range
+# newer fortrans have a function range. Rename it.
   sed -i.bak 's|RANGE|EGNAR|g' range.for procom.for settyp.for
-# replace f77 by gfortran if available
+
+# replace f77 by g95 or gfortran if available
+# this is poor fortran man's configure
   if [ -f %p/bin/gfortran ]; then
 sed -i.bak 's|f77|gfortran|g' makefile
+  elif [ -f %p/bin/g95 ]; then
+sed -i.bak 's|f77|g95|g' makefile
   fi
 
 

Index: flow.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/flow.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- flow.info   19 May 2011 21:32:15 -  1.2
+++ flow.info   20 May 2011 07:54:29 -  1.3
@@ -1,6 +1,6 @@
 Package: flow
 Version: 3.0
-Revision: 3
+Revision: 4
 Description: Fortran source code analyzer
 Architecture: powerpc, i386, x86_64
 Provides: flow
@@ -15,9 +15,12 @@
 
 PatchScript: 
 #!/bin/sh -ev
-# replace f77 by gfortran if available
+# replace f77 by g95 or gfortran if available
+# this is poor fortran man's configure
   if [ -f %p/bin/gfortran ]; then
 sed -i.bak 's|f77|gfortran|g' makefile
+  elif [ -f %p/bin/g95 ]; then
+sed -i.bak 's|f77|g95|g' makefile
   fi
 
 


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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/editors lyx2-10.4.info, NONE, 1.1 lyx2-10.5.info, NONE, 1.1 lyx2-10.6.info, NONE, 1.1

2011-05-20 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv3504

Added Files:
lyx2-10.4.info lyx2-10.5.info lyx2-10.6.info 
Log Message:
LyX 2.x branch

--- NEW FILE: lyx2-10.5.info ---
Info2: 
Package: lyx2%type_pkg[-ui]
Type: -ui ( -x11 -mac )
Version: 2.0.0
Revision: 21
Distribution: 10.5
Source: ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/lyx-%v.tar.gz
Source-MD5: e4e863211bad95698a81a5be444fa836
Depends: 
qt4-base%type_pkg[-ui]-qtcore-shlibs, qt4-base%type_pkg[-ui]-qtgui-shlibs, 
aspell, libiconv,
freetype219-shlibs, libhunspell-shlibs, hunspell, aspell-shlibs, enchant, 
enchant1-shlibs,
libgettext8-shlibs, expat1-shlibs, 
(%type_pkg[-ui] = -x11) glib2-shlibs,
boost1.41.cmake-shlibs, pth2-shlibs

BuildDepends: 
qt4-base%type_pkg[-ui], expat1, libgettext8-dev, gettext-bin, gettext-tools, 
libiconv-dev, latex-xft-fonts, libhunspell, aspell-dev, enchant1-dev, 
automake1.11, 
freetype219, fink (= 0.24.12), 
(%type_pkg[-ui] = -x11) glib2-dev,  
(%type_pkg[-ui] = -x11) x11-dev, 
boost1.41.cmake, pth2-dev, pkgconfig

Conflicts: (%type_pkg[-ui] = -x11) lyx-qt, lyx%type_pkg[-ui]
Replaces:  (%type_pkg[-ui] = -x11) lyx-qt, lyx%type_pkg[-ui]
Provides: lyx2, lyx-editor
Recommends: 
tetex | ptex | texlive, 
imagemagick | imagemagick-nox,
gv | kghostview | evince | launch , 
gv | kghostview | kpdf | xpdf | evince | launch 

GCC: 4.0
UpdatePoMakefile: true
SetLDFLAGS: -Wl,-framework,AppKit -Wl,-framework,Carbon -Wl,-framework,OpenGL 
-Wl,-framework,AGL -Wl,-framework,QuickTime 
-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
 -L/usr/X11/lib -lX11
PatchFile: lyx.patch
PatchFile-MD5: 21f0b994568a271f66c7c6da1bfbf114
PatchScript: 
 sed 's|@PREFIX@|%p|g'  %{PatchFile} | patch -p1
 ln -s %p/share/automake-1.11/mkinstalldirs mkinstalldirs

ConfigureParams:   
(%type_pkg[-ui] = -mac) --prefix='%i/Applications/LyX.app' \
(%type_pkg[-ui] = -x11) --mandir='${prefix}/share/man' \
--with-frontend=qt4 \
--with-qt4-includes=%p/lib/qt4%type_pkg[-ui]/include \
--with-qt4-libraries=%p/lib/qt4%type_pkg[-ui]/lib \
(%type_pkg[-ui] = -mac) --without-x \
(%type_pkg[-ui] = -x11) --with-packaging=posix \
(%type_pkg[-ui] = -mac) --with-packaging=macosx \
--with-aspell --without-included-boost \
(%type_pkg[-ui] = -x11) --x-libraries=/usr/X11R6/lib \
(%type_pkg[-ui] = -x11) --x-includes=/usr/X11R6/include \
--enable-threads

CompileScript: 
 #!/bin/sh -ev
 export PYTHON=/usr/bin/python
 export CCACHE_DISABLE=1
 export QT4DIR=%p/lib/qt4%type_pkg[-ui]
 ./configure %c
 # some bits don't compile with -O2.
 make

InstallScript: 
#!/bin/sh -ev
 export PYTHON=/usr/bin/python 
if [ %type_pkg[-ui] == -x11 ]; then
 make install DESTDIR=%d
 mkdir -p %i/etc/texmf.local/tex/latex
 cp -R %i/share/lyx/tex %i/etc/texmf.local/tex/latex/lyx
 pushd %i/share/lyx 
 ln -s %p/share/lyx/lyxrc.example preferences
 popd
 mv %i/bin/lyx %i/bin/lyxx
 cp lyx.sh %i/bin/lyx
 chmod 755 %i/bin/lyx
else 
 make install-strip
 find %i/Applications/LyX.app \( -name '*.pyc' -o -name '*.pyo' \) -delete;
 pushd %i/Applications/LyX.app/Contents/Resources/lyx2lyx
 %p/share/automake-1.11/py-compile  *.py
 popd
 pushd %i/Applications/LyX.app/Contents/Resources/scripts
 %p/share/automake-1.11/py-compile *.py
fi

License: GPL
DocFiles: INSTALL COPYING NEWS README UPGRADING ANNOUNCE
PostInstScript: 
if [ %type_pkg[-ui] == -x11 ]; then
echo Configuring LyX for your system...
(cd %p/share/lyx; ./configure.py)
if [ -f %p/bin/mktexlsr ]; then %p/bin/mktexlsr %p/etc/texmf.local; fi
else
if ! test -e /Applications/Fink; then
/usr/bin/install -d -m 755 /Applications/Fink
fi
/bin/ln -s '%p/Applications/LyX.app' /Applications/Fink/
(cd %p/Applications/LyX.app/Contents/Resources ; ./configure.py)
fi

PostRmScript: 
if [ -f %p/bin/mktexlsr ]; then %p/bin/mktexlsr %p/etc/texmf.local; fi
if [ %type_raw[-ui] == -mac ]; then
  /bin/rm -f '/Applications/Fink/LyX.app'
fi

Description: Wordprocessor utilizing LaTeX
DescDetail: 
LyX is a modern approach of writing documents with a computer
which breaks with the tradition of the obsolete typewriter
concept.  It is designed for people who want a professional
output with a minimum of time and effort, without becoming specia-
lists in typesetting.  Compared to common word processors LyX
will increase the productivity a lot, since most of the type-
setting will be done by the computer, not the author.  With LyX
the author can concentrate on the contents of his writing,
since the computer will take care of the look.

DescUsage: 
If you're using a non-Fink TeX distro, you'll want to run

/path/to/mktexlsr %p/etc/texmf.local
after installation of the package, and also after removing it, 
to integrate its style and class files with your TeX setup.

Since LyX is highly configurable at runtime, we've moved to
having recommended rather than 

[cvs] dists/10.4/unstable/main/finkinfo/sound whysynth.info,1.2,1.3

2011-05-20 Thread Hanspeter Niederstrasser
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound
In directory vz-cvs-3.sog:/tmp/cvs-serv7397

Modified Files:
whysynth.info 
Log Message:
new version 20100922 from tracker:
https://sourceforge.net/tracker/?func=detailatid=414256aid=3121929group_id=17203

Index: whysynth.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound/whysynth.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- whysynth.info   14 Mar 2009 23:27:57 -  1.2
+++ whysynth.info   20 May 2011 16:00:59 -  1.3
@@ -1,15 +1,15 @@
 Package: whysynth
-Version: 20080412
-Revision: 1
+Version: 20100922
+Revision: 2
 Source: http://www.smbolton.com/whysynth/%n-%v.tar.bz2
 Maintainer: Adrian Prantl adr...@f4z.org
 HomePage:  http://www.smbolton.com/whysynth.html
 License: GPL
 Description: Sofware Synthesizer (DSSI Plugin)
-Source-MD5: 54e7eab2c475c7dc82f57703cdd3148e
+Source-MD5: 931944999b7def5140c2397c228a4983
 
-Depends: atk1-shlibs, cairo-shlibs, expat1-shlibs, fftw3-shlibs, 
freetype219-shlibs, glib2-shlibs, glitz-shlibs, gtk+2-shlibs, 
libdssialsacompat-shlibs, libgettext3-shlibs, libiconv, liblo0-shlibs, 
libpng3-shlibs, pango1-xft2-ft219-shlibs, pixman-shlibs, ladspa
-BuildDepends: dssi-dev, atk1, cairo, expat1, fftw3, freetype219(=2.3.8-1), 
glib2-dev, glitz, gtk+2-dev, libdssialsacompat, libgettext3-dev, libiconv-dev, 
liblo0, libpng3, pango1-xft2-ft219-dev (=1.22.4-1), pixman, ladspa-dev, 
fontconfig2-dev
+Depends: atk1-shlibs, cairo-shlibs, expat1-shlibs, fftw3-shlibs, 
freetype219-shlibs(= 2.3.8-1), glib2-shlibs, glitz-shlibs, gtk+2-shlibs, 
libdssialsacompat-shlibs, libgettext3-shlibs, libiconv, liblo0-shlibs, 
libpng3-shlibs, pango1-xft2-ft219-shlibs (= 1.22.4-1), pango1-xft2-ft219 (= 
1.22.4-1), pixman-shlibs, ladspa, fontconfig2-shlibs (= 2.8.0-6)
+BuildDepends: dssi-dev, atk1, cairo, expat1, fftw3, freetype219(=2.3.8-1), 
glib2-dev, glitz, gtk+2-dev, libdssialsacompat, libgettext3-dev, libiconv-dev, 
liblo0, libpng3, pango1-xft2-ft219-dev (=1.22.4-1), pixman, ladspa-dev, 
fontconfig2-dev (= 2.8.0-6), pkgconfig (= 0.23)
 Suggests: dssi, ghostess
 
 DocFiles: README COPYING AUTHORS
@@ -18,7 +18,7 @@
 DescDetail: 
 
 WhySynth is a versatile softsynth which operates as a plugin for the
-Disposable Soft Synth Interface (DSSI).  A brief list of features:
+DSSI Soft Synth Interface.  A brief list of features:
 
 - 4 oscillators, 2 filters, 3 LFOs, and 5 envelope generators per
 voice.
@@ -29,7 +29,13 @@
 
 - 6 filter modes.
 
-- flexible modulation and mixdown options.
+- flexible modulation and mixdown options, plus effects.
+
+DSSI is a plugin API for software instruments (soft synths) with
+user interfaces, permitting them to be hosted in-process by audio
+applications.  More information on DSSI can be found at:
+
+  http://dssi.sourceforge.net/
 
 WhySynth is something of a mongrel, combining bits from Xsynth-DSSI,
 hexter, Csound, Mats Olsson's MSS, and various other programs, with
@@ -39,4 +45,30 @@
 SQ-80 wavetable ROMs. See the enclosed file AUTHORS for more
 details.
 
-
\ No newline at end of file
+WhySynth is written by Sean Bolton, and copyright (c) 2010 under the
+GNU General Public License, version 2 or later.  See here for
+details.  While this software is 'free' within the requirements of
+this license, I (Sean) would appreciate any or all of the following
+should you find WhySynth useful:
+
+- an email stating where you're from and how you're using
+WhySynth, sent to musound /at/ jps /dot/ net, or better
+yet, a postcard sent to:
+Sean Bolton
+1223 SE Ash St
+Portland Oregon 97214 USA
+
+- copies of or links to music you've created with WhySynth.
+
+- any patches you create for WhySynth. Yes! Please!
+
+- suggestions for improving WhySynth.
+
+The patches distributed with WhySynth, including the default
+'factory' patches and those found in the 'extra' directory, have
+been placed in the public domain by their respective authors.  See
+the enclosed file extra/COPYING-patches for details.
+
+The GUI is stiflingly dull.  Anyone want to help make it look cool?
+
+


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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/gnome gcursor.info,NONE,1.1

2011-05-20 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory vz-cvs-3.sog:/tmp/cvs-serv15999

Added Files:
gcursor.info 
Log Message:
New package
WorksForME (TM)

--- NEW FILE: gcursor.info ---
Package: gcursor
Version: 0.061
Revision: 2
Depends: atk1-shlibs (= 1.28.0-2), cairo-shlibs (= 1.8.10-3), 
fontconfig2-shlibs (= 2.8.0-6), freetype219-shlibs (= 2.4.4-2), gconf2-shlibs 
(= 2.28.0-4), glib2-shlibs (= 2.21.4-3), gnome-vfs2-unified-shlibs (= 
1:2.24.1-2), gtk+2-shlibs (= 2.18.9-5), libart2-shlibs (= 2.3.21-1), 
libbonobo2-shlibs (= 2.24.1-1), libbonoboui2-shlibs (= 2.24.1-2), 
libgettext8-shlibs (= 0.17-19), libglade2-shlibs (= 2.6.4-3), 
libgnome2-shlibs (= 2.26.0-1), libgnomecanvas2-shlibs (= 2.26.0-2), 
libgnomeui2-shlibs (= 2.24.1-2), libxml2-shlibs (= 2.6.32-1), orbit2-shlibs 
(= 2.14.17-2), pango1-xft2-ft219-shlibs (= 1.24.5-7), popt-shlibs (= 
1.14-1), x11, x11-shlibs, file-roller
BuildDepends: intltool40, pkgconfig, x11-dev, atk1 (= 1.28.0-2), cairo (= 
1.8.10-3), fontconfig2-dev (= 2.8.0-6), freetype219 (= 2.4.4-2), gconf2-dev 
(= 2.28.0-4), glib2-dev (= 2.21.4-3), gnome-vfs2-unified-dev (= 1:2.24.1-2), 
gtk+2-dev (= 2.18.9-5), libart2 (= 2.3.21-1), libbonobo2-dev (= 2.24.1-1), 
libbonoboui2-dev (= 2.24.1-2), libgettext8-dev (= 0.17-19), libglade2 (= 
2.6.4-3), libgnome2-dev (= 2.26.0-1), libgnomecanvas2-dev (= 2.26.0-2), 
libgnomeui2-dev (= 2.24.1-2), libxml2 (= 2.6.32-1), orbit2 (= 2.14.17-2), 
pango1-xft2-ft219-dev (= 1.24.5-7), popt (= 1.14-1), fink-package-precedence
Source: http://archive.ubuntu.com/ubuntu/pool/universe/g/%n/%n_%v.orig.tar.gz
Source-MD5: d18608cd2f703d26266022517dc36e82
SourceDirectory: %n-%v.orig
ConfigureParams: --prefix=%p 
CompileScript: 
./configure %c
fink-package-precedence .

InstallScript: make install DESTDIR=%d
DocFiles: AUTHORS COPYING ChangeLog NEWS README TODO
License: GPL
Homepage: http://qballcow.nl/?name=gcursorcss=0
Maintainer: Jack Fink jackf...@users.sourceforge.net
Description: GNOME cursor theme managing software


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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/editors teaqt.info,1.4,1.5

2011-05-20 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv24102

Modified Files:
teaqt.info 
Log Message:
New upstream tea 29.0.3.


Index: teaqt.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/teaqt.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- teaqt.info  18 May 2011 22:47:44 -  1.4
+++ teaqt.info  20 May 2011 22:06:58 -  1.5
@@ -1,6 +1,6 @@
 Info2: 
 Package: teaqt-%type_pkg[qt]
-Version: 29.0.2
+Version: 29.0.3
 Revision: 1
 Type: qt (mac x11)
 Description: Powerful and easy-to-use Qt4-based editor
@@ -25,7 +25,7 @@
 Homepage: http://tea-editor.sourceforge.net/
 
 Source: mirror:sourceforge:tea-editor/tea-%v.tar.bz2
-Source-MD5: 7b93a54df1a699cb02b188d918ecc9e8
+Source-MD5: 1c900e7f57a0fe72fb4cc481450a5b32
 
 PatchScript: perl -pi -e 's|/usr/include|%p/include|' src.pro
 


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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/editors vim.info,1.162,1.163

2011-05-20 Thread Hisashi Todd Fujinaka
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv26457

Modified Files:
vim.info 
Log Message:
Welcome to Vim-7.3.198.

Index: vim.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/vim.info,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -d -r1.162 -r1.163
--- vim.info11 May 2011 16:07:36 -  1.162
+++ vim.info20 May 2011 22:20:50 -  1.163
@@ -1,10 +1,10 @@
 Info2: 
 Package: vim%type_pkg[-nox]
 Type: -nox (boolean)
-Version: 7.3.189
+Version: 7.3.198
 Revision: 1
 Source: http://www.i8u.org/~htodd/finksrc/vim-%v.tar.bz2
-Source-MD5: 14b5fffaaa664f978b17d74654a349f5
+Source-MD5: 5ce0cebe9a4263cf1a0e9b488de4e9a4
 SourceDirectory: vim
 PatchFile: vim.patch
 PatchFile-MD5: 191661eead217c0d99c3aaa628997cf8


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/fangism/finkinfo wesnoth.info,1.6,1.7

2011-05-20 Thread David Fang
Update of /cvsroot/fink/experimental/fangism/finkinfo
In directory vz-cvs-3.sog:/tmp/cvs-serv1455

Modified Files:
wesnoth.info 
Log Message:
upstream update 1.8.6, validated on powerpc-darwin8


Index: wesnoth.info
===
RCS file: /cvsroot/fink/experimental/fangism/finkinfo/wesnoth.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- wesnoth.info24 Jan 2011 04:31:11 -  1.6
+++ wesnoth.info20 May 2011 23:02:58 -  1.7
@@ -1,9 +1,9 @@
 Package: wesnoth
-Version: 1.8.5
-Revision: 2
+Version: 1.8.6
+Revision: 1
 Description: Fantasy turn-based strategy game
 GCC: 4.0
-Source-MD5: a800285d1406690755dd0ea22b98b6df
+Source-MD5: f1c3179869b01b61e253e74aeb241034
 Source: mirror:sourceforge:wesnoth/wesnoth-%v.tar.bz2
 BuildDepends: 
   autoconf (= 2.60),


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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 bzr-py.info,1.33,1.34

2011-05-20 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv23910

Modified Files:
bzr-py.info 
Log Message:
New upstream bzr-py 2.3.3.


Index: bzr-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/bzr-py.info,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- bzr-py.info 6 May 2011 01:37:53 -   1.33
+++ bzr-py.info 21 May 2011 01:17:26 -  1.34
@@ -1,17 +1,16 @@
 Info2: 
 Package: bzr-py%type_pkg[python]
-Version: 2.3.1
+Version: 2.3.3
 Revision: 1
 Conflicts: bzr, bzr-py24-bin
 Replaces: bzr, bzr-py24-bin
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.4 2.5 2.6 2.7)
-Source: http://launchpadlibrarian.net/66057429/bzr-%v.tar.gz
-Source-MD5: 1a4367ce59a2880f321ecb882e195856
+Source: http://launchpadlibrarian.net/71629128/bzr-%v.tar.gz
+Source-MD5: a8ca30af0431c691ce7e71a74497e31d
 Depends: 
   python%type_pkg[python],
-  (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24,
-  bash-completion
+  (%type_pkg[python] = 24) celementtree-py24 | (%type_pkg[python] = 24) 
elementtree-py24
 
 BuildDepends: docutils-py%type_pkg[python], graphviz | graphviz-nox
 Recommends: paramiko-py%type_pkg[python]


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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 git-archimport.info, 1.14, 1.15 git-cvsimport.info, 1.14, 1.15 git-send-email-10.4.info, 1.7, 1.8 git-send-email-10.5.info, 1.7, 1.8 git-send-email-10.6.i

2011-05-20 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory vz-cvs-3.sog:/tmp/cvs-serv23944

Modified Files:
git-archimport.info git-cvsimport.info 
git-send-email-10.4.info git-send-email-10.5.info 
git-send-email-10.6.info git-svn-10.4.info git-svn-10.5.info 
git-svn-10.6.info git.info 
Log Message:
New upstream git 1.7.5.2.


Index: git-archimport.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git-archimport.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- git-archimport.info 9 May 2011 23:10:00 -   1.14
+++ git-archimport.info 21 May 2011 01:18:00 -  1.15
@@ -1,16 +1,16 @@
 Package: git-archimport
-Version: 1.7.5.1
+Version: 1.7.5.2
 Revision: 1
 Description: Tool to import an arch repository into git
 Depends: git (= %v-1), arch-tla
 
 Source: mirror:custom:/software/scm/git/git-%v.tar.bz2
-Source-MD5: a49291116e3b0564e069ae989e4db6fb
+Source-MD5: f79ab8fe79b35346b499f131cbf381a4
 Source2: mirror:custom:/software/scm/git/git-htmldocs-%v.tar.bz2
-Source2-MD5: 17d3a1fc1127a5872193443143bf14bd
+Source2-MD5: 0aa4bd68b0c6c47a609ed34cb0fd138b
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/git/git-manpages-%v.tar.bz2
-Source3-MD5: cb0ec1095fbdf5b4935d5c43194b976a
+Source3-MD5: 43fc5538f137231f5c96e7da5eb6c934
 
 CompileScript: echo Nothing to compile.
 

Index: git-svn-10.4.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git-svn-10.4.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- git-svn-10.4.info   9 May 2011 23:10:00 -   1.14
+++ git-svn-10.4.info   21 May 2011 01:18:00 -  1.15
@@ -1,6 +1,6 @@
 Info2:
 Package: git-svn
-Version: 1.7.5.1
+Version: 1.7.5.2
 Revision: 1+10.4
 Type: pm 5.8.6
 Distribution: 10.4
@@ -13,12 +13,12 @@
 
 
 Source: mirror:custom:/software/scm/git/git-%v.tar.bz2
-Source-MD5: a49291116e3b0564e069ae989e4db6fb
+Source-MD5: f79ab8fe79b35346b499f131cbf381a4
 Source2: mirror:custom:/software/scm/git/git-htmldocs-%v.tar.bz2
-Source2-MD5: 17d3a1fc1127a5872193443143bf14bd
+Source2-MD5: 0aa4bd68b0c6c47a609ed34cb0fd138b
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/git/git-manpages-%v.tar.bz2
-Source3-MD5: cb0ec1095fbdf5b4935d5c43194b976a
+Source3-MD5: 43fc5538f137231f5c96e7da5eb6c934
 
 CompileScript: echo Nothing to compile.
 

Index: git-svn-10.6.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git-svn-10.6.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- git-svn-10.6.info   9 May 2011 23:10:00 -   1.1
+++ git-svn-10.6.info   21 May 2011 01:18:00 -  1.2
@@ -1,6 +1,6 @@
 Info2:
 Package: git-svn
-Version: 1.7.5.1
+Version: 1.7.5.2
 Revision: 1+10.6
 Type: pm 5.10.0
 Distribution: 10.6
@@ -13,12 +13,12 @@
 
 
 Source: mirror:custom:/software/scm/git/git-%v.tar.bz2
-Source-MD5: a49291116e3b0564e069ae989e4db6fb
+Source-MD5: f79ab8fe79b35346b499f131cbf381a4
 Source2: mirror:custom:/software/scm/git/git-htmldocs-%v.tar.bz2
-Source2-MD5: 17d3a1fc1127a5872193443143bf14bd
+Source2-MD5: 0aa4bd68b0c6c47a609ed34cb0fd138b
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/git/git-manpages-%v.tar.bz2
-Source3-MD5: cb0ec1095fbdf5b4935d5c43194b976a
+Source3-MD5: 43fc5538f137231f5c96e7da5eb6c934
 
 CompileScript: echo Nothing to compile.
 

Index: git-cvsimport.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git-cvsimport.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- git-cvsimport.info  9 May 2011 23:10:00 -   1.14
+++ git-cvsimport.info  21 May 2011 01:18:00 -  1.15
@@ -1,16 +1,16 @@
 Package: git-cvsimport
-Version: 1.7.5.1
+Version: 1.7.5.2
 Revision: 1
 Description: Tool to import a CVS repository into git
 Depends: git (= %v-1), cvsps
 
 Source: mirror:custom:/software/scm/git/git-%v.tar.bz2
-Source-MD5: a49291116e3b0564e069ae989e4db6fb
+Source-MD5: f79ab8fe79b35346b499f131cbf381a4
 Source2: mirror:custom:/software/scm/git/git-htmldocs-%v.tar.bz2
-Source2-MD5: 17d3a1fc1127a5872193443143bf14bd
+Source2-MD5: 0aa4bd68b0c6c47a609ed34cb0fd138b
 Source2ExtractDir: doc
 Source3: mirror:custom:/software/scm/git/git-manpages-%v.tar.bz2
-Source3-MD5: cb0ec1095fbdf5b4935d5c43194b976a
+Source3-MD5: 43fc5538f137231f5c96e7da5eb6c934
 
 CompileScript: echo Nothing to compile.
 

Index: git-svn-10.5.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/git-svn-10.5.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- git-svn-10.5.info   9 May 2011 

[cvs] dists/10.4/unstable/main/finkinfo/libs/pythonmods git-remote-helpers-py.info, 1.17, 1.18

2011-05-20 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods
In directory vz-cvs-3.sog:/tmp/cvs-serv24008

Modified Files:
git-remote-helpers-py.info 
Log Message:
New upstream git 1.7.5.2.


Index: git-remote-helpers-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/pythonmods/git-remote-helpers-py.info,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- git-remote-helpers-py.info  9 May 2011 23:10:10 -   1.17
+++ git-remote-helpers-py.info  21 May 2011 01:18:09 -  1.18
@@ -1,6 +1,6 @@
 Info2: 
 Package: git-remote-helpers-py%type_pkg[python]
-Version: 1.7.5.1
+Version: 1.7.5.2
 Revision: 1
 Type: python (2.5 2.6 2.7 3.1 3.2)
 Description: Git remote helper program for non-git repos
@@ -9,7 +9,7 @@
 Homepage: http://git-scm.com/
 
 Source: mirror:custom:/software/scm/git/git-%v.tar.bz2
-Source-MD5: a49291116e3b0564e069ae989e4db6fb
+Source-MD5: f79ab8fe79b35346b499f131cbf381a4
 
 Depends: python%type_pkg[python], git (= %v-1)
 


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
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 apt.info, 1.15, 1.16 apt.patch, 1.8, 1.9

2011-05-20 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base
In directory vz-cvs-3.sog:/tmp/cvs-serv23641

Modified Files:
apt.info apt.patch 
Log Message:
fix formal-variable name-collision/mismatch in prototype


Index: apt.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/apt.patch,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- apt.patch   13 May 2011 07:58:27 -  1.8
+++ apt.patch   21 May 2011 04:06:46 -  1.9
@@ -456,6 +456,18 @@
 
 vectorpkgIndexFile * Files(List.begin(),List.end());
 unsigned long EndOfSource = Files.size();
+diff -urN apt-0.5.4.orig/apt-pkg/pkgcachegen.h apt-0.5.4/apt-pkg/pkgcachegen.h
+--- apt-0.5.4.orig/apt-pkg/pkgcachegen.h   2001-02-20 02:03:17.0 
-0500
 apt-0.5.4/apt-pkg/pkgcachegen.h2011-05-21 00:01:31.0 -0400
+@@ -50,7 +50,7 @@
+string PkgFileName;
+pkgCache::PackageFile *CurrentFile;
+
+-   bool NewPackage(pkgCache::PkgIterator Pkg,string Pkg);
++   bool NewPackage(pkgCache::PkgIterator Pkg,string Name);
+bool NewFileVer(pkgCache::VerIterator Ver,ListParser List);
+unsigned long NewVersion(pkgCache::VerIterator Ver,string VerStr,unsigned 
long Next);
+ 
 diff -urN apt-0.5.4.orig/apt-pkg/policy.cc apt-0.5.4/apt-pkg/policy.cc
 --- apt-0.5.4.orig/apt-pkg/policy.cc   2001-05-28 08:40:56.0 +0900
 +++ apt-0.5.4/apt-pkg/policy.cc2005-03-08 13:00:38.0 +0900

Index: apt.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/apt.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- apt.info13 May 2011 07:58:27 -  1.15
+++ apt.info21 May 2011 04:06:46 -  1.16
@@ -8,7 +8,7 @@
 Source-MD5: 274fb64e2e67318b4c9c94599785c37d
 SourceDirectory: %n-%v
 PatchFile: %n.patch
-PatchFile-MD5: 9cdb4ed3be59c5b2a69aa294a8c61b1a
+PatchFile-MD5: 6b83d9ba0b19aa525de8f39603938c97
 PatchScript: 
  sed -e 's|@PREFIX@|%p|g' -e 's|@DIST@|10.3|g'  %{PatchFile} | patch -p1
  sh patch_flush


--
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink/10.4 ChangeLog, 1.36, 1.37 apt.info, 1.11, 1.12 apt.patch, 1.6, 1.7 perl588-core-x86_64.info, 1.4, 1.5

2011-05-20 Thread Daniel Macks
Update of /cvsroot/fink/fink/10.4
In directory vz-cvs-3.sog:/tmp/cvs-serv27731

Modified Files:
ChangeLog apt.info apt.patch perl588-core-x86_64.info 
Log Message:
sync a bunch of bug and compiler-pendantics fixes from unstable


Index: apt.patch
===
RCS file: /cvsroot/fink/fink/10.4/apt.patch,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- apt.patch   24 Oct 2010 01:16:23 -  1.6
+++ apt.patch   21 May 2011 04:24:18 -  1.7
@@ -141,9 +141,36 @@
 +  (void)_apt_Pkg;
 +  (void)_apt_Status;
 +}
+diff -urN apt-0.5.4.orig/apt-pkg/deb/deblistparser.cc 
apt-0.5.4/apt-pkg/deb/deblistparser.cc
+--- apt-0.5.4.orig/apt-pkg/deb/deblistparser.cc2001-07-26 
02:15:59.0 -0400
 apt-0.5.4/apt-pkg/deb/deblistparser.cc 2011-05-13 03:50:31.0 
-0400
+@@ -163,18 +163,18 @@
+   /* Strip out any spaces from the text, this undoes dpkgs reformatting
+  of certain fields. dpkg also has the rather interesting notion of
+  reformatting depends operators  - = */
+-  char *I = S;
++  char *J = S;
+   for (; Start != End; Start++)
+   {
+if (isspace(*Start) == 0)
+-  *I++ = tolower(*Start);
++  *J++ = tolower(*Start);
+if (*Start == ''  Start[1] != ''  Start[1] != '=')
+-  *I++ = '=';
++  *J++ = '=';
+if (*Start == ''  Start[1] != ''  Start[1] != '=')
+-  *I++ = '=';
++  *J++ = '=';
+   }
+ 
+-  Result = AddCRC16(Result,S,I - S);
++  Result = AddCRC16(Result,S,J - S);
+}
+
+return Result;
 diff -urN apt-0.5.4.orig/apt-pkg/deb/debsystem.cc 
apt-0.5.4/apt-pkg/deb/debsystem.cc
 --- apt-0.5.4.orig/apt-pkg/deb/debsystem.cc2001-04-29 14:13:51.0 
+0900
-+++ apt-0.5.4/apt-pkg/deb/debsystem.cc 2005-03-08 13:50:12.0 +0900
 apt-0.5.4/apt-pkg/deb/debsystem.cc 2011-04-29 14:25:17.0 -0400
 @@ -27,6 +27,109 @@
  #include dirent.h
  #include errno.h
@@ -286,7 +313,7 @@
Score += 10;
 if (FileExists(/etc/debian_version) == true)
Score += 10;
-@@ -202,6 +307,44 @@
+@@ -202,6 +307,54 @@
 if (StatusFile == 0)
StatusFile = new 
debStatusIndex(_config-FindFile(Dir::State::status));
 List.push_back(StatusFile);
@@ -294,13 +321,23 @@
 +
 +   if (FinkStatusFile == 0) {
 +  struct stat unused_sbuf;
-+  int sys_ok=0;
 +  unlink(FINKSTATUSFILE);
 +  if ( 0 == stat(@PREFIX@/bin/fink-virtual-pkgs,unused_sbuf)) {
-+  if ( 0 == system(@PREFIX@/bin/fink-virtual-pkgs --apt)) sys_ok=1;
-+  }
-+  if (stat(FINKSTATUSFILE, unused_sbuf) || !sys_ok) {
-+std::ofstream finkstatus(FINKSTATUSFILE);
++  // will be trying to use fink's own virtpkg data
++int have_fvp_data=0;
++if ( 0 == system(@PREFIX@/bin/fink-virtual-pkgs --apt)) {
++  if (0 == stat(FINKSTATUSFILE, unused_sbuf)) {
++  // f-v-p did not fail and we have its data-file available
++  have_fvp_data=1;
++}
++  }
++  if ( !have_fvp_data ) {
++// f-v-p failed somehow? ABORT!
++  return _error-Error(Error while setting up data-piping from 
fink-virtual-pkgs);
++  }
++  } else {
++// no f-v-p...use dummy data
++  std::ofstream finkstatus(FINKSTATUSFILE);
 +  if(macosx_version.version != 0)
 +  {
 +finkstatus  Package: macosx  endl;
@@ -323,7 +360,7 @@
 +  finkstatus  Description: Pseudo package representing Darwin  endl;
 +  finkstatus   Pseudo package representing Darwin  endl  endl;
 +  finkstatus.close();
-+  }   
++  }
 +  FinkStatusFile = new debStatusIndex(FINKSTATUSFILE);
 +   }
 +   List.push_back(FinkStatusFile);
@@ -331,7 +368,7 @@
 return true;
  }
/*}}}*/
-@@ -217,6 +360,10 @@
+@@ -217,6 +370,10 @@
 {
Found = StatusFile;
return true;
@@ -419,6 +456,18 @@
 
 vectorpkgIndexFile * Files(List.begin(),List.end());
 unsigned long EndOfSource = Files.size();
+diff -urN apt-0.5.4.orig/apt-pkg/pkgcachegen.h apt-0.5.4/apt-pkg/pkgcachegen.h
+--- apt-0.5.4.orig/apt-pkg/pkgcachegen.h   2001-02-20 02:03:17.0 
-0500
 apt-0.5.4/apt-pkg/pkgcachegen.h2011-05-21 00:01:31.0 -0400
+@@ -50,7 +50,7 @@
+string PkgFileName;
+pkgCache::PackageFile *CurrentFile;
+
+-   bool NewPackage(pkgCache::PkgIterator Pkg,string Pkg);
++   bool NewPackage(pkgCache::PkgIterator Pkg,string Name);
+bool NewFileVer(pkgCache::VerIterator Ver,ListParser List);
+unsigned long NewVersion(pkgCache::VerIterator Ver,string VerStr,unsigned 
long Next);
+ 
 diff -urN apt-0.5.4.orig/apt-pkg/policy.cc apt-0.5.4/apt-pkg/policy.cc
 --- apt-0.5.4.orig/apt-pkg/policy.cc   2001-05-28 08:40:56.0 +0900
 +++ apt-0.5.4/apt-pkg/policy.cc2005-03-08 13:00:38.0 +0900
@@