[cvs] dists/10.4/unstable/main/finkinfo/text doclifter.patch, NONE, 1.1 doclifter.info, 1.2, 1.3

2007-02-28 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv24345

Modified Files:
doclifter.info 
Added Files:
doclifter.patch 
Log Message:
Fixed bad 'import sre' and a warning about use of a deprecated name qualifier

--- NEW FILE: doclifter.patch ---
diff -ru doclifter-2.1/doclifter doclifter-2.1-patched/doclifter
--- doclifter-2.1/doclifter 2005-01-14 18:50:42.0 +0100
+++ doclifter-2.1-patched/doclifter 2007-02-28 14:15:56.0 +0100
@@ -125,7 +125,7 @@
 $Id: doclifter,v 1.1294 2005/01/14 06:35:12 esr Exp $
 
 # Requires Python 2.2a
-import sys, os, glob, re, sre, string, exceptions, copy, tempfile, time, pprint
+import sys, os, glob, re, string, exceptions, copy, tempfile, time, pprint
 
 # This is a speed hack recommended by Armin Rigo.  It cuts runtime by about 33%
 # and makes it possible for psyco 1.2 to reduce runtime another 33%.
@@ -6301,8 +6301,8 @@
 return result
 def styleargs(self, args, tag, attribute=, prefix=):
 return self.process_punct(args, lambda x: self.stylehook(x, tag, 
attribute, prefix), 1)
-def replacemacro(self, args, with):
-return self.process_punct(args, lambda x: [with] + x, 1)
+def replacemacro(self, args, replacement):
+return self.process_punct(args, lambda x: [replacement] + x, 1)
 def eval(self, args):
 Evaluate a macro, returning a list.
 if args[0][0] == '.':

Index: doclifter.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text/doclifter.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- doclifter.info  24 Dec 2006 16:14:33 -  1.2
+++ doclifter.info  28 Feb 2007 13:22:45 -  1.3
@@ -16,9 +16,10 @@
 
 Package: doclifter
 Version: 2.1
-Revision: 1
+Revision: 2
 Source: http://www.catb.org/~esr/doclifter/%n-%v.tar.gz
 Source-MD5: 1695f456ede9b926966f08f6828757cd
+Patch: %n.patch
 CompileScript: echo 
 InstallScript: 
   /usr/bin/install -d -m 755 %i/bin
@@ -37,6 +38,11 @@
 information that might have structural implications.  Also includes manlifter,
 a driver script that can be used to convert entire manual-page hierarchies.
 
+DescPackaging: 
+Remove import of the sre module, which has been deprecated in recent
+Python versions. Also replaced 'with' in one spot, as this will be a
+reserved keyword in future Python versions.
+
 License: GPL
 Maintainer: Max Horn [EMAIL PROTECTED]
 Homepage: http://www.catb.org/~esr/doclifter/


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/text doclifter.patch, NONE, 1.1 doclifter.info, 1.2, 1.3

2007-02-28 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv24735

Modified Files:
doclifter.info 
Added Files:
doclifter.patch 
Log Message:
Fixed bad 'import sre' and a warning about use of a deprecated name qualifier

--- NEW FILE: doclifter.patch ---
diff -ru doclifter-2.1/doclifter doclifter-2.1-patched/doclifter
--- doclifter-2.1/doclifter 2005-01-14 18:50:42.0 +0100
+++ doclifter-2.1-patched/doclifter 2007-02-28 14:15:56.0 +0100
@@ -125,7 +125,7 @@
 $Id: doclifter,v 1.1294 2005/01/14 06:35:12 esr Exp $
 
 # Requires Python 2.2a
-import sys, os, glob, re, sre, string, exceptions, copy, tempfile, time, pprint
+import sys, os, glob, re, string, exceptions, copy, tempfile, time, pprint
 
 # This is a speed hack recommended by Armin Rigo.  It cuts runtime by about 33%
 # and makes it possible for psyco 1.2 to reduce runtime another 33%.
@@ -6301,8 +6301,8 @@
 return result
 def styleargs(self, args, tag, attribute=, prefix=):
 return self.process_punct(args, lambda x: self.stylehook(x, tag, 
attribute, prefix), 1)
-def replacemacro(self, args, with):
-return self.process_punct(args, lambda x: [with] + x, 1)
+def replacemacro(self, args, replacement):
+return self.process_punct(args, lambda x: [replacement] + x, 1)
 def eval(self, args):
 Evaluate a macro, returning a list.
 if args[0][0] == '.':

Index: doclifter.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/doclifter.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- doclifter.info  25 Feb 2007 13:52:54 -  1.2
+++ doclifter.info  28 Feb 2007 13:23:17 -  1.3
@@ -16,9 +16,10 @@
 
 Package: doclifter
 Version: 2.1
-Revision: 1
+Revision: 2
 Source: http://www.catb.org/~esr/doclifter/%n-%v.tar.gz
 Source-MD5: 1695f456ede9b926966f08f6828757cd
+Patch: %n.patch
 CompileScript: echo 
 InstallScript: 
   /usr/bin/install -d -m 755 %i/bin
@@ -37,6 +38,11 @@
 information that might have structural implications.  Also includes manlifter,
 a driver script that can be used to convert entire manual-page hierarchies.
 
+DescPackaging: 
+Remove import of the sre module, which has been deprecated in recent
+Python versions. Also replaced 'with' in one spot, as this will be a
+reserved keyword in future Python versions.
+
 License: GPL
 Maintainer: Max Horn [EMAIL PROTECTED]
 Homepage: http://www.catb.org/~esr/doclifter/


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] experimental/gnome/2.10/main/finkinfo/gnome gnumeric.info, 1.2, 1.3

2007-02-28 Thread Jean-Fran�ois Mertens
Update of /cvsroot/fink/experimental/gnome/2.10/main/finkinfo/gnome
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv5628

Modified Files:
gnumeric.info 
Log Message:
keep it buildable _ though :
probably nobody uses this tree
 even this pkg getting old...

Index: gnumeric.info
===
RCS file: 
/cvsroot/fink/experimental/gnome/2.10/main/finkinfo/gnome/gnumeric.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnumeric.info   26 Feb 2006 18:18:01 -  1.2
+++ gnumeric.info   28 Feb 2007 15:16:54 -  1.3
@@ -63,6 +63,7 @@
  perl -pi.bak -e 's/-scrollkeeper-update.*$/-echo no scrollkeeper-update/g' 
omf.make doc/C/Makefile.in
  perl -pi.bak -e 's/scrollkeeper-update.*;/echo no scrollkeeper-update;/g' 
omf.make doc/C/Makefile.in
  perl -pi.bak -e 's/static double/double/' 
src/cut-n-paste-code/goffice/graph/plugins/plot_radar/gog-radar.c
+ perl -pi.bak -e 's, \-DGNOME_DISABLE_DEPRECATED,,' configure{.in,}
 
 ConfigureParams: --without-python --mandir='${prefix}/share/man' 
--libexecdir='${prefix}/lib'
 DocFiles: AUTHORS BEVERAGES BUGS COPYING ChangeLog HACKING INSTALL MAINTAINERS 
NEWS OChangeLog* README TODO 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/net dovecot.info,1.1,1.2

2007-02-28 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv18694/main/finkinfo/net

Modified Files:
dovecot.info 
Log Message:
New revision
http://sourceforge.net/tracker/index.php?func=detailaid=1668440group_id=17203atid=414256


Index: dovecot.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/dovecot.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dovecot.info3 Feb 2007 16:16:48 -   1.1
+++ dovecot.info28 Feb 2007 15:48:51 -  1.2
@@ -1,6 +1,6 @@
 Package: dovecot
 Version: 1.0.rc17
-Revision: 1
+Revision: 2
 
 Source: http://www.dovecot.org/releases/%n-%v.tar.gz
 
@@ -28,7 +28,7 @@
   copy %p/etc/pam.d/dovecot (or whereever you instaled Fink) to 
   /etc/pam.d/dovecot using the command:
 
-sudo cp %p/pam.d/dovecot /etc/pam.d
+sudo cp %p/etc/pam.d/dovecot /etc/pam.d
 
   To use SSL connections for IMAP and POP connections (RECOMMENDED), you will
   need to generate an SSL certificate. To generate the certificate:
@@ -96,6 +96,25 @@
   echo accountrequired pam_permit.so  %i/etc/pam.d/dovecot
   echo password   required pam_deny.so%i/etc/pam.d/dovecot
   echo sessionrequired pam_uwtmp.so   %i/etc/pam.d/dovecot
+
+  #
+  # Create logrotate task file
+  mkdir -p %i/etc/logrotate.d
+  echo %p/var/log/dovecot.log { %i/etc/logrotate.d/dovecot
+  echo weekly   %i/etc/logrotate.d/dovecot
+  echo missingok%i/etc/logrotate.d/dovecot
+  echo rotate 7 %i/etc/logrotate.d/dovecot
+  echo compress %i/etc/logrotate.d/dovecot
+  echo delaycompress%i/etc/logrotate.d/dovecot
+  echo notifempty   %i/etc/logrotate.d/dovecot
+  echo create 640 root admin%i/etc/logrotate.d/dovecot
+  echo sharedscripts%i/etc/logrotate.d/dovecot
+  echo postrotate   %i/etc/logrotate.d/dovecot
+  echo if [ -f %p/var/run/dovecot/master.pid ]; then 
 %i/etc/logrotate.d/dovecot
+  echo kill -USR1 \`cat 
%p/var/run/dovecot/master.pid\` %i/etc/logrotate.d/dovecot
+  echo fi   %i/etc/logrotate.d/dovecot
+  echo endscript%i/etc/logrotate.d/dovecot
+  echo }%i/etc/logrotate.d/dovecot
 
 
 PostInstScript: 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/web libapache2-mod-python-doc.info, NONE, 1.1 libapache2-mod-python-py.info, 1.3, 1.4

2007-02-28 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/web
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv20298/main/finkinfo/web

Modified Files:
libapache2-mod-python-py.info 
Added Files:
libapache2-mod-python-doc.info 
Log Message:
Updated version from tracker
http://sourceforge.net/tracker/index.php?func=detailaid=1562973group_id=17203atid=414256


Index: libapache2-mod-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/web/libapache2-mod-python-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libapache2-mod-python-py.info   29 Jan 2006 19:24:12 -  1.3
+++ libapache2-mod-python-py.info   28 Feb 2007 15:53:22 -  1.4
@@ -2,32 +2,31 @@
 
 #=
 # $Id$
-Package: libapache2-mod-python-py%type_pkg[python]%type_pkg[-ssl]
-Version: 3.1.4
-Revision: 4
-Type: python (2.3 2.4), -ssl .
+Package: libapache2-mod-python-py%type_pkg[python]
+Version: 3.3.1
+Revision: 1
+Type: python (2.3 2.4 2.5)
 Description: Embeds the Python interpreter within Apache
 License: OSI-Approved
 Homepage: http://modpython.org/
-Maintainer: Matthew Bogosian [EMAIL PROTECTED]
+Maintainer: Matthew Bogosian [EMAIL PROTECTED]
 #=
 
 # Dependencies ---
 
-Depends: python%type_pkg[python] | python%type_pkg[python]-nox, 
apache2%type_pkg[-ssl] (= 2.0.55-1010)
-BuildDepends: apache2%type_pkg[-ssl]-dev (= 2.0.55-1010) , apr%type_pkg[-ssl] 
(= 0.9.7-1011)
+Depends: python%type_pkg[python] | python%type_pkg[python]-nox, apache2 (= 
2.0.55-1010)
+BuildDepends: apache2-dev (= 2.0.55-1010), apr-dev (= 0.9.7-1011), 
aprutil-dev ( =0.9.12-12 )
 
 # Unpack phase ---
 
 Source: http://www.apache.org/dist/httpd/modpython/mod_python-%v.tgz
-Source-MD5: 607175958137b06bcda91110414c82a1
-PatchScript: patch -p0  %a/libapache2-mod-python-py.patch
+Source-MD5: a3b0150176b726bd2833dac3a7837dc5
 
 # Compile phase --
 
 CompileScript: 
 #!/bin/sh -ex
-./configure --prefix='%p' --with-apxs='%p/sbin/apxs' \
+./configure --prefix='%p' --with-apxs='%p/bin/apxs2' \
 --with-python='%p/bin/python%type_raw[python]'
 make
 
@@ -39,21 +38,16 @@
 InstallScript: 
 #!/bin/sh -ex
 make DESTDIR='%d' install
-
-install -d -m 700 '%i/share/doc/mod-python'
-cp -Rp doc-html examples '%i/share/doc/mod-python'
-chmod -R go-rstwx,a+Xr '%i/share/doc/mod-python'
-
-
-# Split-offs -
-
-SplitOff: 
-Package: %N-doc
-Description: mod_python documentation
-Conflicts: libapache2-mod-python-doc, libapache2-mod-python-py23-doc, 
libapache2-mod-python-py23-ssl-doc, libapache2-mod-python-py24-doc, 
libapache2-mod-python-py24-ssl-doc
-Replaces: libapache2-mod-python-doc, libapache2-mod-python-py23-doc, 
libapache2-mod-python-py23-ssl-doc, libapache2-mod-python-py24-doc, 
libapache2-mod-python-py24-ssl-doc
-Suggests: libapache2-mod-python-py24 | libapache2-mod-python-py23
-Files: share/doc/mod-python
+mv '%i/lib/apache2/modules/mod_python.so' 
'%i/lib/apache2/modules/mod_python%type_raw[python].so'
+(
+cat EOF
+LoadModule python_module %p/lib/apache2/modules/mod_python%type_raw[python].so
+EOF
+) 'python%type_raw[python].load'
+chmod 600 'python%type_raw[python].load'
+install -d -m 700 '%i/etc/apache2/mods-available'
+cp 'python%type_raw[python].load' '%i/etc/apache2/mods-available'
+chmod -R go-rstwx,a+Xr '%i/etc/apache2/mods-available'
 
 
 # Documentation --
@@ -68,9 +62,4 @@
 other data between hits and access to Apache internals.
 
 
-DescPort: 
-Using a patch from here:
-http://cvs.opendarwin.org//cgi-bin/cvsweb.cgi/proj/darwinports/dports/www/mod_python/files/patch-mod_python.c
-
-
 

--- NEW FILE: libapache2-mod-python-doc.info ---
Info2: 

#=
# $Id: libapache2-mod-python-doc.info 483 2007-02-27 22:32:05Z matt $
Package: libapache2-mod-python-doc
Version: 3.3.1
Revision: 1
Description: Documentation for mod_python
Conflicts: libapache2-mod-python-doc, libapache2-mod-python-py23-doc, 
libapache2-mod-python-py23-ssl-doc, libapache2-mod-python-py24-doc, 
libapache2-mod-python-py24-ssl-doc
Replaces: libapache2-mod-python-doc, libapache2-mod-python-py23-doc, 
libapache2-mod-python-py23-ssl-doc, libapache2-mod-python-py24-doc, 
libapache2-mod-python-py24-ssl-doc
Suggests: libapache2-mod-python-py25 | libapache2-mod-python-py24 | 
libapache2-mod-python-py23
License: OSI-Approved
Homepage: http://modpython.org/
Maintainer: Matthew Bogosian [EMAIL PROTECTED]
#=


[cvs] dists/10.4/unstable/main/finkinfo/sound qtguitune.info, NONE, 1.1 qtguitune.patch, NONE, 1.1

2007-02-28 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv21514/main/finkinfo/sound

Added Files:
qtguitune.info qtguitune.patch 
Log Message:
New package from tracker
http://sourceforge.net/tracker/index.php?func=detailaid=1658895group_id=17203atid=414256



--- NEW FILE: qtguitune.info ---
Package: qtguitune
Version: 0.5
Revision: 1

BuildDepends: qt3, portaudio
Depends: x11, qt3-shlibs, portaudio-shlibs
GCC: 4.0

Source: http://www.geocities.com/harpin_floh/mysoft/qtguitune-%v.tar.gz
Source-MD5: ab245b0218d22078999f41b58c04e9a7
UpdateConfigGuess: true

PatchScript: 
sed 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1
autoconf
chmod +x configure


InstallScript: 
make install DESTDIR=%d
strip %i/bin/%n



DocFiles: README COPYING AUTHORS NEWS

Description: Tuning guitars and other instruments

DescDetail: 
Guitune is a linux program for tuning guitars and other instruments by using
the method of Schmitt-triggering, i.e. counting the number of triggerings
between two trigger levels in a certain amount of time.


DescPort: 
Replaced the linux OSS backend with portaudio's blocking I/O layer.


License: GPL
Homepage: http://www.geocities.com/harpin_floh/kguitune_page.html
Maintainer: Martin Buechler [EMAIL PROTECTED]

--- NEW FILE: qtguitune.patch ---
diff --exclude .svn -Nau qtguitune-0.5/Makefile.in 
qtguitune-0.5_portaudio-1.18.1/Makefile.in
--- qtguitune-0.5/Makefile.in   2001-08-02 22:34:04.0 +0200
+++ qtguitune-0.5_portaudio-1.18.1/Makefile.in  2007-02-13 01:58:12.0 
+0100
@@ -66,22 +66,22 @@
 VERSION = @VERSION@
 
 bin_PROGRAMS = qtguitune
-qtguitune_SOURCES = main.cpp  guitune.cpp logview.cpp 
osziview.cpp  guitune.h   logview.h   osziview.h   
mainwindow.h  moc_mainwindow.cpp moc_guitune.cpp
  resources.h
+qtguitune_SOURCES = main.cpp  guitune.cpp logview.cpp 
osziview.cpp  guitune.h   logview.h   osziview.h   
mainwindow.h  moc_mainwindow.cpp moc_guitune.cpp
  resources.h pablio.c ringbuffer.c
 
 #qtguitune_LDADD   = @LIBOBJS@
-qtguitune_LDFLAGS = -lqt -lm -L${QTDIR}/lib
+qtguitune_LDFLAGS = -lqt-mt -lportaudio -lm -L${QTDIR}/lib [EMAIL 
PROTECTED]@/lib
 CPPFLAGS = -I${QTDIR}/include  
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 CONFIG_CLEAN_FILES = 
 PROGRAMS =  $(bin_PROGRAMS)
 
[...1952 lines suppressed...]
+ void **dataPtr2, long *sizePtr2 );
+long RingBuffer_AdvanceWriteIndex( RingBuffer *rbuf, long numBytes );
+
+/* Get address of region(s) from which we can read data.
+** If the region is contiguous, size2 will be zero.
+** If non-contiguous, size2 will be the size of second region.
+** Returns room available to be read or numBytes, whichever is smaller.
+*/
+long RingBuffer_GetReadRegions( RingBuffer *rbuf, long numBytes,
+void **dataPtr1, long *sizePtr1,
+void **dataPtr2, long *sizePtr2 );
+
+long RingBuffer_AdvanceReadIndex( RingBuffer *rbuf, long numBytes );
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+#endif /* _RINGBUFFER_H */

 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/games wesnoth.patch,1.3,1.4

2007-02-28 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv10766

Modified Files:
wesnoth.patch 
Log Message:
Typo--seems only to matter on a headless build, so it wasn't caught in 
build-testing.

Index: wesnoth.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games/wesnoth.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- wesnoth.patch   28 Feb 2007 00:54:51 -  1.3
+++ wesnoth.patch   28 Feb 2007 18:10:25 -  1.4
@@ -85,7 +85,7 @@
  { echo $as_me:$LINENO: checking for PNG support in SDL_image 5
  echo $ECHO_N checking for PNG support in SDL_image... $ECHO_C 6; }
  
-+if text x$enable_sdltest = xyes ; then
++if test x$enable_sdltest = xyes ; then
  OLD_CPPFLAGS=$CPPFLAGS
  OLD_CFLAGS=$CFLAGS
  OLD_LIBS=$LIBS


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/sound sdl-sound.info, NONE, 1.1 sdl-sound.patch, NONE, 1.1

2007-02-28 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sound
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26821

Added Files:
sdl-sound.info sdl-sound.patch 
Log Message:
Moving sdl-sound to stable (with permission of the maintainer)

--- NEW FILE: sdl-sound.patch ---
Common subdirectories: SDL_sound-1.0.1.orig/VisualC and 
SDL_sound-1.0.1.new/VisualC
diff -u SDL_sound-1.0.1.orig/configure SDL_sound-1.0.1.new/configure
--- SDL_sound-1.0.1.orig/configure  Sun Oct 12 20:54:57 2003
+++ SDL_sound-1.0.1.new/configure   Tue Jan 25 11:36:13 2005
@@ -7363,15 +7363,15 @@
 }
   else
 {
-  printf(\n*** 'smpeg-config --version' returned %d.%d.%d, but the
+  printf(\n*** 'smpeg-config --version' returned %d.%d.%d, but the \
 minimum version\n, $smpeg_major_version, $smpeg_minor_version,
 $smpeg_micro_version);
-  printf(*** of SMPEG required is %d.%d.%d. If smpeg-config is
+  printf(*** of SMPEG required is %d.%d.%d. If smpeg-config is \
 correct, then it is\n, major, minor, micro);
   printf(*** best to upgrade to the required version.\n);
-  printf(*** If smpeg-config was wrong, set the environment variable
+  printf(*** If smpeg-config was wrong, set the environment variable \
 SMPEG_CONFIG\n);
-  printf(*** to point to the correct copy of smpeg-config, and remove
+  printf(*** to point to the correct copy of smpeg-config, and remove \
 the file\n);
   printf(*** config.cache before re-running configure\n);
   return 1;
Common subdirectories: SDL_sound-1.0.1.orig/decoders and 
SDL_sound-1.0.1.new/decoders
Common subdirectories: SDL_sound-1.0.1.orig/docs and SDL_sound-1.0.1.new/docs
Common subdirectories: SDL_sound-1.0.1.orig/playsound and 
SDL_sound-1.0.1.new/playsound

--- NEW FILE: sdl-sound.info ---
Package: sdl-sound
Version: 1.0.1
Revision: 1002
Maintainer: Daniel Nielsen [EMAIL PROTECTED]
Depends: %N-shlibs (= %v-%r)
BuildDependsOnly: true
BuildDepends: sdl (= 1.2.9-1001), smpeg (= 0.4.4-1025), libogg, libmikmod, 
libvorbis0
Patch: %n.patch
Source: http://www.icculus.org/SDL_sound/downloads/SDL_sound-%v.tar.gz
Source-MD5: 49e197ef7c8ab623d0640dc74be43160
UpdateLibtool: true
ConfigureParams: --disable-sdltest
InstallScript: make install DESTDIR=%d
CompileScript: 
  ./configure %c
  ./ltconfig ltmain.sh
  make


SplitOff: 
  Package: %N-shlibs
  Depends: sdl-shlibs (= 1.2.9-1001), smpeg-shlibs (= 0.4.4-1025), 
libogg-shlibs, libmikmod-shlibs, libvorbis0-shlibs
  Files: lib/libSDL_sound-*.dylib
  Shlibs: %p/lib/libSDL_sound-1.0.1.dylib 2.0.0 %n (= 1.0.1-1)
  Description: SDL sound library - shared libs


SplitOff2: 
  Package: %N-bin
  Depends: %N-shlibs
  Files: bin/playsound
  Description: SDL sound library - audio player

Docfiles: CHANGELOG COPYING README
Description: SDL sound library
Homepage: http://www.icculus.org/SDL_sound/
License: LGPL


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] fink/perlmod/Fink ChangeLog, 1.1416.2.5, 1.1416.2.6 PkgVersion.pm, 1.577.2.2, 1.577.2.3

2007-02-28 Thread David R. Morrison
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv30919

Modified Files:
  Tag: branch_0_26
ChangeLog PkgVersion.pm 
Log Message:
backport removal of high-level warning about splitoff validation failure


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.577.2.2
retrieving revision 1.577.2.3
diff -u -d -r1.577.2.2 -r1.577.2.3
--- PkgVersion.pm   25 Jan 2007 05:18:25 -  1.577.2.2
+++ PkgVersion.pm   1 Mar 2007 01:46:39 -   1.577.2.3
@@ -2320,8 +2320,6 @@
if ($violated) {
if(Fink::Config::get_option(validate) eq on) {
die Please correct the above problems and try 
again!\n;
-   } elsif ($config-verbosity_level()  1) {
-   warn Validation of splitoffs failed.\n;
}
}
}

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1416.2.5
retrieving revision 1.1416.2.6
diff -u -d -r1.1416.2.5 -r1.1416.2.6
--- ChangeLog   17 Feb 2007 18:41:37 -  1.1416.2.5
+++ ChangeLog   1 Mar 2007 01:46:39 -   1.1416.2.6
@@ -1,3 +1,8 @@
+2007-02-26  Daniel Macks  [EMAIL PROTECTED]
+
+   * PkgVersion.pm: Scrap the high-level warning for splitoff
+   validation failure.
+
 2007-02-17  Dave Morrison  [EMAIL PROTECTED]
 
* SysState.pm: when advising the user to run 'apt-get', the advice


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci ccp4.info,1.21,1.22

2007-02-28 Thread William Scott
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv831

Modified Files:
ccp4.info 
Log Message:
ccp4 patch upgrade, added anti-norton-antivirus conditional test

Index: ccp4.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/ccp4.info,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- ccp4.info   29 Jan 2007 01:10:58 -  1.21
+++ ccp4.info   1 Mar 2007 01:52:30 -   1.22
@@ -1,6 +1,6 @@
 Package: ccp4
 Version: 6.0.2
-Revision: 4
+Revision: 5
 GCC: 4
 Source: ftp://ftp.ccp4.ac.uk/ccp4/%v/source/ccp4-%v-core-src.tar.gz
 Source-MD5: a47ae8b8e6fa76eef7f17baa85e8dc16
@@ -21,6 +21,12 @@
 Source7-MD5: 52ac21688c047287d4fcbbd1aaaea774
 Source8: ftp://ftp.ccp4.ac.uk/ccp4/6.0.2/patches/amore.f-r1.115-r1.116.diff
 Source8-MD5: 26a124b160c4215d6b20749f20932920
+Source9: ftp://ftp.ccp4.ac.uk/ccp4/6.0.2/patches/crystal.C-r1.5-r1.6.diff
+Source9-MD5: 5c62b4a7399aded0f0c896c4315cfff6
+Source10: ftp://ftp.ccp4.ac.uk/ccp4/6.0.2/patches/export-r1_12.tcl
+Source10-MD5: 984f7305ba151d961bef2ac25b1b9925
+Source11: ftp://ftp.ccp4.ac.uk/ccp4/6.0.2/patches/export-r1_6.def
+Source11-MD5: 3babc1ee652fed6d2bb976bde41450a8
 #
 DescPort: 
CCP4 is designed to compile with gfortran on OS X = 10.4 by default. 
@@ -129,6 +135,9 @@
/usr/bin/patchsrc/scala_/scala.f   
../scala.f-r1.101.2.3-r1.101.2.4.diff
/usr/bin/patchccp4i/src/util_windows.tcl   
../util_windows.tcl-r1.27-r1.27.2.1.diff
/usr/bin/patchsrc/amore.f  
../amore.f-r1.115-r1.116.diff
+   /usr/bin/patchsrc/bp3_/crystal.C   
../crystal.C-r1.5-r1.6.diff
+   cp../export-r1_12.tcl  
$CCP4/ccp4i/tasks/export.tcl
+   cp../export-r1_6.def   
$CCP4/ccp4i/tasks/export.def
#
 
 

@@ -136,6 +145,24 @@
#!/bin/zsh -efv
  umask 0022

+   # The build will fail if Norton Auto-Protect is running.
+   # Check to see if it is, and abort the installation with a
+   # warning to the user.
+   if  [[ $(ps axww | grep NortonAutoProtect | wc -l) -gt 1 ]];then
+   print 
\e[1m**
+   print 
**
+   print 
**
+   print 
+   print Norton AutoProtect must be suspended during CCP4 
installation. Please do so now and then try again.
+   print 
+   print 
**
+   print 
**
+   print 
**\e[0m
+   sleep 15
+   return 1000
+   fi
+   
+   
# These are required for the build environment
  export TEMPXTAL=$PWD:h
  source include/ccp4.setup-zsh
@@ -393,7 +420,7 @@
License agreement is part of configure file -- print out form and mail 
in,
additional comments at http://xanana.ucsc.edu/xtal/ccp4.html
CCP4 files will be installed under /sw/share/xtal/ccp4-6.0.2
-   This revision includes all available CCP4 patches as of Dec 19, 2006. 
+   This revision includes all available CCP4 patches as of Feb 24, 2007. 
and new bash and zsh command completions specific to ccp4. 
 
 DocFiles: 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/net applersync.info,1.1,1.2

2007-02-28 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv2323/main/finkinfo/net

Modified Files:
applersync.info 
Log Message:
Needs to build consistently whether or not Fink's popt is installed.

Index: applersync.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/applersync.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- applersync.info 9 Oct 2006 22:38:57 -   1.1
+++ applersync.info 1 Mar 2007 03:19:31 -   1.2
@@ -4,7 +4,7 @@
 # $Id$
 Package: applersync
 Version: 2.6.3
-Revision: 3
+Revision: 4
 Description: Tiger's rsync w/ HFS+ support (patched)
 License: GPL
 Homepage: http://lartmaker.nl/rsync/
@@ -13,7 +13,7 @@
 
 # Dependencies ---
 
-BuildDepends: appleincludes-copyfile01
+BuildDepends: appleincludes-copyfile01, popt
 Conflicts: rsync
 Provides: rsync
 Replaces: rsync
@@ -26,8 +26,10 @@
 Source2-MD5: 6caa1f5c7149c56311b50c12206dc56e
 
 # Compile phase --
+SetLDFLAGS: -I%p/include
+SetCPPFLAGS: -I%p/include/copyfile-0.1
 
-ConfigureParams: --mandir='%p/share/man' --enable-ea-support
+ConfigureParams: --mandir='%p/share/man' --enable-ea-support 
--without-included-popt
 
 PatchScript: 
 #!/bin/sh -ex
@@ -39,7 +41,7 @@
 CompileScript: 
 #!/bin/sh -ex
 cd rsync
-CPPFLAGS='-I%p/include/copyfile-0.1' ./configure %c
+./configure %c
 make
 
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/libs libgeda.info,1.9,1.10

2007-02-28 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv13843

Modified Files:
libgeda.info 
Log Message:
Fixing build dependencies.


Index: libgeda.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/libgeda.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- libgeda.info27 Feb 2007 03:47:08 -  1.9
+++ libgeda.info1 Mar 2007 03:48:06 -   1.10
@@ -1,12 +1,25 @@
 Package: libgeda
 Version: 20061020
-Revision: 2
+Revision: 3
 
 Depends: guile16-shlibs (= 1.6.7-1010), %N27-shlibs (=%v-%r), libpng3-shlibs, 
gd2-shlibs
 BuildDepends: 
-  guile16 (= 1.6.7-1010), guile16-dev (= 1.6.7-1010), pkgconfig, gtk+2-dev,
-  x11-dev, texi2html | tetex-base, libpng3, glib2-dev (= 2.6.6-),
-  pango1-xft2-dev, libgettext3-dev, libiconv, libiconv-dev, gd2
+  atk1,
+  gd2,
+  gdk-pixbuf,
+  glib2-dev (= 2.12.0-1),
+  gtk+2-dev,
+  guile16 (= 1.6.7-1010),
+  guile16-dev (= 1.6.7-1010),
+  libgettext3-dev,
+  libiconv,
+  libiconv-dev,
+  libjpeg,
+  libpng3,
+  pango1-xft2-dev,
+  pkgconfig,
+  texi2html | tetex-base,
+  x11-dev
 
 BuildDependsOnly: True
 
@@ -34,9 +47,20 @@
   Package: %N27-shlibs
   Replaces: libgeda-shlibs ( 20041228-0)
   Depends: 
-guile16-shlibs (= 1.6.7-1010), glib2-shlibs (= 2.6.6-), x11-shlibs,
-gtk+2, gtk+2-shlibs, pango1-xft2, pango1-xft2-shlibs, libpng3-shlibs, 
libiconv, libgettext3-shlibs,
-%N27-data | %N-data
+atk1-shlibs,
+gdk-pixbuf-shlibs,
+glib2-shlibs (= 2.6.6-),
+guile16-shlibs (= 1.6.7-1010),
+gtk+2,
+gtk+2-shlibs,
+libiconv,
+libjpeg-shlibs,
+libgettext3-shlibs,
+%N27-data | %N-data,
+libpng3-shlibs,
+pango1-xft2,
+pango1-xft2-shlibs,
+x11-shlibs,
   
 
   Description: GNU EDA -- Electronics design -- library files
@@ -92,5 +116,5 @@
 prolog.ps has been split off since we do not yet know whether it will
 be backwards compatible in future releases.
 
-$LastChangedRevision: 360 $ in my local repository.
+$LastChangedRevision: 363 $ in my local repository.
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.3/stable/main/finkinfo/base debianutils.info, 1.2, 1.3 fink-mirrors.info, 1.13, 1.14 ncurses.info, 1.9, 1.10

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/base
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9665/10.3/stable/main/finkinfo/base

Modified Files:
debianutils.info fink-mirrors.info ncurses.info 
Log Message:
Stabilize a few tweaks and newest fink-mirrors


Index: fink-mirrors.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/base/fink-mirrors.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- fink-mirrors.info   31 Oct 2006 02:21:16 -  1.13
+++ fink-mirrors.info   1 Mar 2007 05:01:58 -   1.14
@@ -1,9 +1,9 @@
 Package: fink-mirrors
-Version: 0.25.1.2
+Version: 0.25.1.3
 Revision: 1
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 15fb97481d6f8a853454e1cb3c93e70b
+Source-MD5: 3a5027bb74e7617e6d773b182dde60e2
 Depends: fink (= 0.17.3-1)
 Replaces: fink ( 0.17.2-1)
 CompileScript:  sed -e s|@PREFIX@|%p|g  postinstall.pl.in  postinstall.pl
@@ -17,7 +17,9 @@
 
 License: GPL
 Maintainer: Fink Core Group [EMAIL PROTECTED]
-Homepage: http://fink.sourceforge.net/
+Homepage: http://www.finkproject.org
+
+NoSourceDirectory: true
 
 CustomMirror: 
  Primary: http://west.dl.sourceforge.net/sourceforge/
@@ -25,4 +27,3 @@
  nam-US: http://us.dl.sourceforge.net/sourceforge/
  eur: http://eu.dl.sourceforge.net/sourceforge/
 
-

Index: debianutils.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/base/debianutils.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- debianutils.info1 Jan 2004 22:05:47 -   1.2
+++ debianutils.info1 Mar 2007 05:01:58 -   1.3
@@ -13,7 +13,7 @@
 SourceDirectory: %n-%v
 Patch: %n.patch
 InstallScript: 
-  #!/bin/sh
+  #!/bin/sh -ev
   INSTALL=install
   INSTALL_FILE=$INSTALL -p -o root -g admin -m 644
   INSTALL_PROGRAM=$INSTALL -p -o root -g admin -m 755

Index: ncurses.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/base/ncurses.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ncurses.info22 Feb 2005 15:56:44 -  1.9
+++ ncurses.info1 Mar 2007 05:01:58 -   1.10
@@ -11,7 +11,7 @@
 Source3-MD5: 2cacb921a11287fedda5db7de4d331a6
 Source3ExtractDir: ncurses-5.4
 PatchScript: 
-  #!/bin/sh -e
+  #!/bin/sh -ev
   bunzip2 ncurses-5.4-20040711-patch.sh.bz2
   chmod +x ncurses-5.4-20040711-patch.sh
   ./ncurses-5.4-20040711-patch.sh
@@ -33,12 +33,12 @@
 NoSetMAKEFLAGS: true
 SetMAKEFLAGS: -j1
 CompileScript: 
-  #!/bin/sh -e
+  #!/bin/sh -ev
   ./configure %c --libdir=%p/lib/ncurses
   make
 
 InstallScript: 
-#!/bin/sh -e
+#!/bin/sh -ev
   make install DESTDIR=%d DYLD_LIBRARY_PATH=`pwd`/lib:`pwd`/lib/ncurses
 # add extra symlinks in the main lib directory
   ln -s ncurses/libform.5.dylib %i/lib/libform.dylib


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/stable/main/finkinfo/base fink-mirrors.info,1.3,1.4

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/base
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv9665/10.4/stable/main/finkinfo/base

Modified Files:
fink-mirrors.info 
Log Message:
Stabilize a few tweaks and newest fink-mirrors


Index: fink-mirrors.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/base/fink-mirrors.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- fink-mirrors.info   31 Oct 2006 02:20:34 -  1.3
+++ fink-mirrors.info   1 Mar 2007 05:01:59 -   1.4
@@ -1,9 +1,9 @@
 Package: fink-mirrors
-Version: 0.25.1.2
+Version: 0.25.1.3
 Revision: 1
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 15fb97481d6f8a853454e1cb3c93e70b
+Source-MD5: 3a5027bb74e7617e6d773b182dde60e2
 Depends: fink (= 0.17.3-1)
 Replaces: fink ( 0.17.2-1)
 CompileScript:  sed -e s|@PREFIX@|%p|g  postinstall.pl.in  postinstall.pl
@@ -17,7 +17,9 @@
 
 License: GPL
 Maintainer: Fink Core Group [EMAIL PROTECTED]
-Homepage: http://fink.sourceforge.net/
+Homepage: http://www.finkproject.org
+
+NoSourceDirectory: true
 
 CustomMirror: 
  Primary: http://west.dl.sourceforge.net/sourceforge/
@@ -25,4 +27,3 @@
  nam-US: http://us.dl.sourceforge.net/sourceforge/
  eur: http://eu.dl.sourceforge.net/sourceforge/
 
-


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] scripts/buildfink filter,1.1,1.2

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/scripts/buildfink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv18861

Modified Files:
filter 
Log Message:
Implement -p pipe mode that reads STDIN and reports to STDOUT
instead of reading data files and writing to outdir hierarchy


Index: filter
===
RCS file: /cvsroot/fink/scripts/buildfink/filter,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- filter  11 May 2005 19:04:34 -  1.1
+++ filter  1 Mar 2007 06:43:17 -   1.2
@@ -25,6 +25,7 @@
 =head1 USAGE
 
filter [-F] [-f FILTERS] [-x XML FILTERS] -o OUTDIR 
FILES_OR_DIRECTORIES...
+   filter [-F] [-f FILTERS] [-x XML FILTERS] -p
 
 CFILTERS specifies a filter file, or a directory which will be recursively 
processed an all files
 in which will be processed as filter files.  The filter file defines the 
regular expressions
@@ -32,6 +33,8 @@
 
 CXML FILTERS is like CFILTERS but for XML-format filter files.
 
+An -f or -x spec is required.
+
 COUTDIR specifies the output directory.  For each set, a file whose name is 
the name of the set
 will be created in this directory.  Set names may contain a /, causing 
subdirectories to be
 created.
@@ -44,6 +47,12 @@
 If multiple regular expressions match at the same position, it will use the 
one which
 is defined first.
 
+The C-p option enables pipe mode, in which the data to be matched
+against the filters is read from STDIN instead of from
+FILES_OR_DIRECTORIES and the names of the filters that match are
+printed to STDOUT instead of storing filenames into the OUTDIR
+hierarchy.
+
 =head1 FILTER FILES
 
 =head2 XML FILTER FILES
@@ -103,10 +112,18 @@
 sub load_filter_file($$);
 sub process_input_file($);
 
-if(!getopts('Fx:f:o:', \%options)) { exit 1; }
+if(!getopts('Fpx:f:o:', \%options)) { exit 1; }
+
+my $outdir;  # undef if in -p mode
+if ($options{p}) {
+   die Cannot use -o in -p mode\n if $options{o};
+   die Cannot pass filenames on commandline in -p mode\n if @ARGV;
+   $outdir = undef;
+} else {
+   die Must specify an output directory!\n unless $options{o};
+   $outdir = $options{o};
+}
 
-my @inputs = ();
-my $outdir = $options{o} or die Must specify an output directory!\n;
 die Must specify filter source!\n unless $options{f} or $options{x};
 $filtindex = 0;
 
@@ -154,7 +171,11 @@
 sub process_input_file($) {
my $input = shift;
 
-   if(-d $input) {
+   my $contents;  # slurp of a single datafile
+
+   if (!defined $input) {
+   $contents = join '', STDIN;
+   } elsif (-d $input) {
opendir(DIR, $input) or die Couldn't opendir $input: $!\n;
my @files = map {$input/$_} grep {$_ ne . and $_ ne ..} 
readdir(DIR);
closedir(DIR);
@@ -162,8 +183,11 @@
process_input_file($_) foreach @files;
} else {
open(FILE, $input) or die Couldn't open $input: $!\n;
-   my $contents = join(, FILE);
+   $contents = join(, FILE);
close FILE;
+   }
+
+   # we've got the data now, regardless of how we were called
 
foreach my $filter(@filters) {
if($contents =~ /$filter-{regex}/) {
@@ -181,10 +205,11 @@
# $-[0] is index in string of last successful 
match
$filter-{matchpos} = $-[0];
 
-   $filter-{outfile} = $outdir/.$filter-{name};
+   $filter-{outfile} = ( defined $outdir ? 
$outdir/.$filter-{name} : undef);
 
-   $filter-{outtext} = basename($input);
-   $filter-{outtext} .= \t$^N if $last_paren;
+   $filter-{outtext} = (defined $input ? 
basename($input).\t : '');  # give filename if known
+   $filter-{outtext} .= $filter-{name}.\t if 
!defined $outdir;  # give filtername if it wouldn't be known from outfile
+   $filter-{outtext} .= $^N if $last_paren;
$filter-{outtext} .= \n;
} else {
$filter-{matched} = 0;
@@ -206,13 +231,22 @@
}
 
foreach my $filter(@matched_filters) {
-   system(mkdir, -p, dirname($filter-{outfile}));
+   if (defined $filter-{outfile}) {
+   # have a filename, so append outtext there
+   system(mkdir, -p, $filter-{name});
 
-   open(OUTPUT, , $filter-{outfile}) or die Couldn't 
open .$filter-{outfile}. for output: $!\n;
-   print OUTPUT $filter-{outtext};
-   close OUTPUT;
+   open(my $out_fh, '', $filter-{name}) or die 
Couldn't open .$filter-{name}. for 

[cvs] scripts/buildfink filters.xml,1.12,1.13

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/scripts/buildfink
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv19262

Modified Files:
filters.xml 
Log Message:
Compiler flag that has been silent NOOP may become an error soon.


Index: filters.xml
===
RCS file: /cvsroot/fink/scripts/buildfink/filters.xml,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- filters.xml 27 Nov 2006 15:55:16 -  1.12
+++ filters.xml 1 Mar 2007 06:44:35 -   1.13
@@ -177,5 +177,7 @@
 
filter name=warnings/obsolete_headtail(head|tail)\s+-[0-9]/filter
 
+   filter name=warnings/no_cpp_precomp-no-cpp-precomp/filter
+
filter name=successes.$/filter
 /filters


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sound esound.info, 1.1.2.2, 1.1.2.3 esound.patch, 1.1, 1.1.2.1

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound
In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv26609

Modified Files:
  Tag: pangocairo-branch
esound.info esound.patch 
Log Message:
Remove some patches that have been incorporated upstream.


Index: esound.patch
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound/esound.patch,v
retrieving revision 1.1
retrieving revision 1.1.2.1
diff -u -d -r1.1 -r1.1.2.1
--- esound.patch20 Jan 2006 20:30:47 -  1.1
+++ esound.patch1 Mar 2007 07:02:52 -   1.1.2.1
@@ -1,39 +1,6 @@
 diff -Nurd -x'*~' esound-0.2.36.orig/Makefile.in esound-0.2.36/Makefile.in
 --- esound-0.2.36.orig/Makefile.in 2005-06-06 21:04:14.0 -0400
 +++ esound-0.2.36/Makefile.in  2005-09-30 18:29:03.0 -0400
-@@ -81,13 +81,13 @@
- esdPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- PROGRAMS = $(bin_PROGRAMS) $(esd_PROGRAMS)
- am__esd_SOURCES_DIST = esd.c clients.c filter.c mix.c players.c \
--  proto.c samples.c getopt.c getopt1.c util.c esd-config.h \
-+  proto.c samples.c getopt.c getopt1.cesd-config.h \
-   esd-server.h
- am__objects_1 = getopt.$(OBJEXT) getopt1.$(OBJEXT)
- @[EMAIL PROTECTED] = $(am__objects_1)
- am_esd_OBJECTS = esd.$(OBJEXT) clients.$(OBJEXT) filter.$(OBJEXT) \
-   mix.$(OBJEXT) players.$(OBJEXT) proto.$(OBJEXT) \
--  samples.$(OBJEXT) $(am__objects_2) util.$(OBJEXT)
-+  samples.$(OBJEXT) $(am__objects_2)
- esd_OBJECTS = $(am_esd_OBJECTS)
- am__DEPENDENCIES_2 = libesd.la $(am__DEPENDENCIES_1)
- esd_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2)
-@@ -145,7 +145,7 @@
- @AMDEP_TRUE@  ./$(DEPDIR)/libesd_la-genrand.Plo \
- @AMDEP_TRUE@  ./$(DEPDIR)/libesd_la-util.Plo ./$(DEPDIR)/mix.Po \
- @AMDEP_TRUE@  ./$(DEPDIR)/players.Po ./$(DEPDIR)/proto.Po \
[EMAIL PROTECTED]@  ./$(DEPDIR)/samples.Po ./$(DEPDIR)/util.Po
[EMAIL PROTECTED]@  ./$(DEPDIR)/samples.Po
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-   $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
- LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) \
-@@ -391,7 +391,6 @@
-   proto.c \
-   samples.c   \
-   $(getopt_src)   \
--  util.c  \
-   esd-config.h\
-   esd-server.h
- 
 @@ -422,7 +421,7 @@
esdplay.c
  
@@ -43,34 +10,6 @@
  m4datadir = $(datadir)/aclocal
  m4data_DATA = esd.m4
  esdconfdir = $(sysconfdir)
-@@ -676,7 +675,6 @@
- @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
- @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
- @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
[EMAIL PROTECTED]@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
- 
- .c.o:
- @am__fastdepCC_TRUE@  if $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c 
-o $@ $; \
-diff -Nurd -x'*~' esound-0.2.36.orig/docs/Makefile.in 
esound-0.2.36/docs/Makefile.in
 esound-0.2.36.orig/docs/Makefile.in2005-06-06 21:04:14.0 
-0400
-+++ esound-0.2.36/docs/Makefile.in 2005-09-30 18:27:06.0 -0400
-@@ -455,13 +455,13 @@
- @[EMAIL PROTECTED]:
- @HAVE_JW_TRUE@$(mkinstalldirs) $(DESTDIR)$(htmldir)
- @HAVE_JW_TRUE@files=`cd html  echo *.html`; \
[EMAIL PROTECTED]@  test $$files || for f in $$files; do \
[EMAIL PROTECTED]@cp -p $$f $(DESTDIR)$(htmldir)/$$f; \
[EMAIL PROTECTED]@  test $$files  for f in $$files; do \
[EMAIL PROTECTED]@cp -p html/$$f $(DESTDIR)$(htmldir)/$$f; \
- @HAVE_JW_TRUE@done
- 
- @[EMAIL PROTECTED]:
- @HAVE_JW_TRUE@files=`cd html  echo *.html`; \
[EMAIL PROTECTED]@  test $$files || for f in $$files; do \
[EMAIL PROTECTED]@  test $$files  for f in $$files; do \
- @HAVE_JW_TRUE@  rm -rf $(DESTDIR)$(htmldir)/$$f; \
- @HAVE_JW_TRUE@done
- @HAVE_JW_TRUE@if test -d $(DESTDIR)$(htmldir); then rmdir 
$(DESTDIR)$(htmldir); fi
 diff -Nurd -x'*~' esound-0.2.36.orig/esd.c esound-0.2.36/esd.c
 --- esound-0.2.36.orig/esd.c   2005-05-25 21:02:52.0 -0400
 +++ esound-0.2.36/esd.c2005-09-30 18:27:06.0 -0400

Index: esound.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sound/esound.info,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -u -d -r1.1.2.2 -r1.1.2.3
--- esound.info 27 Feb 2007 22:41:24 -  1.1.2.2
+++ esound.info 1 Mar 2007 07:02:52 -   1.1.2.3
@@ -13,9 +13,6 @@
 Source: mirror:gnome:sources/%n/0.2/%n-%v.tar.bz2
 Source-MD5: 99cc68770176c8940cf346f60208420e
 Patch: %n.patch
-PatchScript: 
-  perl -pi -e 's/(SOUND_LIBS=-Wl,-framework) -Wl,(CoreAudio)/$1,$2/' 
configure
-
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetCPPFLAGS: -pipe
@@ -73,18 +70,7 @@
 
 Applied a iMacs/eMacs patch from Alexander Strange (= 0.2.28).
 
-Daniel Macks corrected passing of 

[cvs] dists/10.4/unstable/main/finkinfo/gnome libart2.patch, 1.2, 1.3 libart2.info, 1.3, 1.4

2007-02-28 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv7369/10.4/unstable/main/finkinfo/gnome

Modified Files:
libart2.info 
Added Files:
libart2.patch 
Log Message:
Clean for use by g++ (thanks Martin!)
New version


--- NEW FILE: libart2.patch ---
diff -Nurd -x'*~' libart_lgpl-2.3.19.orig/art_misc.h 
libart_lgpl-2.3.19/art_misc.h
--- libart_lgpl-2.3.19.orig/art_misc.h  2007-01-01 18:59:22.0 -0500
+++ libart_lgpl-2.3.19/art_misc.h   2007-03-01 02:24:10.0 -0500
@@ -34,10 +34,18 @@
 #include libart_lgpl/art_config.h
 #endif
 
+#ifdef __cplusplus
+extern C {
+#endif
+
 void *art_alloc(size_t size);
 void art_free(void *ptr);
 void *art_realloc(void *ptr, size_t size);
 
+#ifdef __cplusplus
+}
+#endif
+
 /* These aren't, strictly speaking, configuration macros, but they're
damn handy to have around, and may be worth playing with for
debugging. */

Index: libart2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/libart2.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libart2.info27 Feb 2007 06:27:40 -  1.3
+++ libart2.info1 Mar 2007 07:36:54 -   1.4
@@ -1,5 +1,5 @@
 Package: libart2
-Version: 2.3.18
+Version: 2.3.19
 Revision: 1
 Depends: %N-shlibs (= %v-%r)
 DescPackaging: 
@@ -7,7 +7,8 @@
 pkg-config is not needed to compile this package.
 
 Source: mirror:gnome:sources/libart_lgpl/2.3/libart_lgpl-%v.tar.bz2
-Source-MD5: 7beb9139354896c12a578b9f35a88911
+Source-MD5: ac885805d1918026a18b560f4015bc66
+Patch: %n.patch
 SetCFLAGS: -Os
 InstallScript: make install DESTDIR=%d
 BuildDependsOnly: True
@@ -25,6 +26,10 @@
 here. The GPL'd component will be getting various enhanced functions
 for specific applications.
 
+DescPort: 
+  Fix art_misc.h for use by C++. See:
+  http://bugzilla.gnome.org/show_bug.cgi?id=413197
+
 License: LGPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]
 Homepage: http://www.levien.com/libart/


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits