dists/10.3/unstable/main/finkinfo/graphics pil-py23.info,1.2,NONE pil-py22.info,1.2,NONE pil-py22.patch,1.1,NONE pil-py23.patch,1.1,NONE

2005-02-28 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6513

Removed Files:
pil-py23.info pil-py22.info pil-py22.patch pil-py23.patch 
Log Message:
obsolete


--- pil-py23.info DELETED ---

--- pil-py22.info DELETED ---

--- pil-py23.patch DELETED ---

--- pil-py22.patch DELETED ---



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/graphics pil-py.info,NONE,1.1 pil-py.patch,NONE,1.1

2005-02-28 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6277

Added Files:
pil-py.info pil-py.patch 
Log Message:
New info file format.


--- NEW FILE: pil-py.info ---
Info2: 

Package: pil-py%type_pkg[python]
Type: python (2.2 2.3 2.4)

Version: 1.1.4
Revision: 25
Description: Python Imaging Library
DescDetail: 
The Python Imaging Library (PIL) adds image processing capabilities to
your Python interpreter. This library supports many file formats, and
provides powerful image processing and graphics capabilities.

DescPort: 
 tk 8.4 not supported, needs a patch to tkImaging.c to compile.
 lots of patches to help it find fink installed libs and headers.

Source: http://effbot.org/downloads/Imaging-%v.tar.gz
Source-MD5: d2c03c25a9a0128832137dd536da88da
BuildDepends: tcltk-dev (= 8.4.1-1) , libpng3, libjpeg
Depends: python%type_pkg[python], tcltk (= 8.4.1-1), libpng3-shlibs, 
libjpeg-shlibs
Replaces: pil
Provides: pil
GCC: 3.3
PatchScript: sed 's|@PREFIX@|%p|g'  %a/pil-py.patch | patch -p1
CompileScript: 
 (cd libImaging; ./configure %c; make)
 (export CPPFLAGS=; %p/bin/python%type_raw[python] setup.py build)

InstallScript: 
 #!/bin/sh
 %p/bin/python%type_raw[python] setup.py install --root=%d
 mkdir -p %i/share/doc/%n
 cp -R Doc/ %i/share/doc/%n/html
 cp -R Scripts %i/share/doc/%n
 cd libImaging
 mkdir -p %i/include/python%type_raw[python]/PIL
 cp -f ImConfig.h ImPlatform.h Imaging.h %i/include/python%type_raw[python]/PIL

DocFiles: CHANGES-114 BUILDME CONTENTS README
License: OSI-Approved
Homepage: http://www.pythonware.com/products/pil
Maintainer: Jeffrey Whitaker [EMAIL PROTECTED]

# Info2


--- NEW FILE: pil-py.patch ---
--- Imaging-1.1.4/libImaging/Makefile.in.orig   Fri Dec 13 05:50:30 2002
+++ Imaging-1.1.4/libImaging/Makefile.inFri Dec 13 05:51:31 2002
@@ -24,7 +24,7 @@
 
 DEFS=  @DEFS@
 
-LIBS=  @LIBS@ @LIBM@
+LIBS=  $(LDFLAGS) @LIBS@ @LIBM@
 
 # 
 # Other things that are customizable but not by configure
--- Imaging/PIL/Image.py.orig   Wed May  7 06:59:10 2003
+++ Imaging/PIL/Image.pyWed May  7 07:00:16 2003
@@ -1716,7 +1716,7 @@
 format = BMP
 if not command:
 command = start
-elif os.environ.get(OSTYPE) == darwin:
+elif sys.platform == darwin:
 format = JPEG
 if not command:
 command = open -a /Applications/Preview.app
@@ -1742,7 +1742,7 @@
 if os.name == nt:
 os.system(%s %s % (command, file))
 # FIXME: this leaves temporary files around...
-elif os.environ.get(OSTYPE) == darwin:
+elif sys.platform == darwin:
 # on darwin open returns immediately resulting in the temp
 # file removal while app is opening
 os.system((%s %s; sleep 20; rm -f %s) % (command, file, file))
--- Imaging-1.1.4/setup.py.orig Fri Dec 13 06:06:28 2002
+++ Imaging-1.1.4/setup.py  Fri Dec 13 06:09:38 2002
@@ -30,7 +30,7 @@
 # on Windows, the following is used to control how and where to search
 # for Tcl/Tk files.  None enables automatic searching; to override, set
 # this to a directory name.
-TCLROOT = None
+TCLROOT = @PREFIX@
 
 from PIL.Image import VERSION
 
@@ -46,10 +46,10 @@
 LIBRARIES = [Imaging]
 
 # Add some standard search spots for MacOSX/darwin
-if os.path.exists('/sw/include'):
-INCLUDE_DIRS.append('/sw/include')
-if os.path.exists('/sw/lib'):
-LIBRARY_DIRS.append('/sw/lib')
+if os.path.exists('@PREFIX@/include'):
+INCLUDE_DIRS.append('@PREFIX@/include')
+if os.path.exists('@PREFIX@/lib'):
+LIBRARY_DIRS.append('@PREFIX@/lib')
 
 HAVE_LIBJPEG = 0
 HAVE_LIBTIFF = 0
@@ -63,6 +63,8 @@
 lib = m.group(1)
 if lib == JPEG:
 HAVE_LIBJPEG = 1
+INCLUDE_DIRS.append(@PREFIX@/include)
+LIBRARY_DIRS.append(@PREFIX@/lib)
 if sys.platform == win32:
 LIBRARIES.append(jpeg)
 INCLUDE_DIRS.append(JPEGDIR)
@@ -71,6 +73,8 @@
 LIBRARIES.append(jpeg)
 elif lib == TIFF:
 HAVE_LIBTIFF = 1
+INCLUDE_DIRS.append(@PREFIX@/include)
+LIBRARY_DIRS.append(@PREFIX@/lib)
 LIBRARIES.append(tiff)
 elif lib == Z:
 HAVE_LIBZ = 1
@@ -204,10 +208,15 @@
 EXTRA_LINK_ARGS = frameworks
 HAVE_TCLTK = 1
 
+tk_framework_found = 0
 if not tk_framework_found:
 # assume the libraries are installed in the default location
 LIBRARIES.extend([tk + TCL_VERSION, tcl + TCL_VERSION])
 HAVE_TCLTK = 1
+INCLUDE_DIRS.append(os.path.join(TCLROOT, include))
+LIBRARY_DIRS.append(os.path.join(TCLROOT, lib))
+INCLUDE_DIRS.append(/usr/X11R6/include)
+LIBRARY_DIRS.append(/usr/X11R6/lib)
 
 if HAVE_TCLTK:
 MODULES.append(
@@ -266,13 +275,13 @@
 

dists/10.3/unstable/main/finkinfo/graphics freetype219-hinting.info,NONE,1.1 freetype219.info,NONE,1.1 freetype219.patch,NONE,1.1 freetype2-hinting.info,1.6,1.7 freetype2.info,1.4,1.5 freetype2.patch,1.3,1.4 freetype2-hinting.patch,1.4,NONE

2005-02-28 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29052

Modified Files:
freetype2-hinting.info freetype2.info freetype2.patch 
Added Files:
freetype219-hinting.info freetype219.info freetype219.patch 
Removed Files:
freetype2-hinting.patch 
Log Message:
New peaceful coexistence between freetype versions 2.1.4 and 2.1.9
(fingers crossed)



Index: freetype2.patch
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics/freetype2.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- freetype2.patch 1 Nov 2004 23:59:06 -   1.3
+++ freetype2.patch 28 Feb 2005 14:49:53 -  1.4
@@ -1,5 +1,19 @@
 freetype-2.1.3/builds/unix/freetype-config.in~ Tue Dec 16 18:58:35 2003
-+++ freetype-2.1.3/builds/unix/freetype-config.in  Tue Dec 16 19:00:47 2003
+diff -aur freetype-2.1.4_ori/builds/unix/detect.mk 
freetype-2.1.4/builds/unix/detect.mk
+--- freetype-2.1.4_ori/builds/unix/detect.mk   2002-06-14 10:09:25.0 
+0200
 freetype-2.1.4/builds/unix/detect.mk   2005-02-27 23:38:15.0 
+0100
+@@ -18,7 +18,7 @@
+ 
+   # Note: this test is duplicated in builds/toplevel.mk.
+   #
+-  is_unix := $(strip $(wildcard /sbin/init) $(wildcard /usr/sbin/init) 
$(wildcard /hurd/auth))
++  is_unix := $(strip $(wildcard /sbin/init) $(wildcard /usr/sbin/init) 
$(wildcard /hurd/auth) $(wildcard /sbin/launchd))
+   ifneq ($(is_unix),)
+ 
+ PLATFORM := unix
+Only in freetype-2.1.4/builds/unix: detect.mk~
+diff -aur freetype-2.1.4_ori/builds/unix/freetype-config.in 
freetype-2.1.4/builds/unix/freetype-config.in
+--- freetype-2.1.4_ori/builds/unix/freetype-config.in  2002-12-16 
22:51:23.0 +0100
 freetype-2.1.4/builds/unix/freetype-config.in  2005-02-27 
23:32:32.0 +0100
 @@ -1,6 +1,6 @@
  #! /bin/sh
  
@@ -8,25 +22,11 @@
  [EMAIL PROTECTED]@
  
  usage()
-diff -Naur freetype-2.1.3.old/builds/unix/freetype-config.in 
freetype-2.1.3.new/builds/unix/freetype-config.in
-diff -Naur freetype-2.1.3.old/builds/unix/ltmain.sh 
freetype-2.1.3.new/builds/unix/ltmain.sh
 freetype-2.1.3.old/builds/unix/ltmain.sh   Tue Mar  5 10:09:59 2002
-+++ freetype-2.1.3.new/builds/unix/ltmain.sh   Fri Mar 28 13:26:18 2003
-@@ -2894,6 +2894,11 @@
-   if test -n $export_symbols  test -n $archive_expsym_cmds; then
- eval cmds=\$archive_expsym_cmds\
-   else
-+if test x$verstring = x0.0; then
-+  tmp_verstring=
-+else
-+  tmp_verstring=$verstring
-+fi
- eval cmds=\$archive_cmds\
-   fi
-   IFS=${IFS= }; save_ifs=$IFS; IFS='~'
 freetype-2.1.3/src/base/ftobjs.c.orig  Mon Feb 17 07:10:01 2003
-+++ freetype-2.1.3/src/base/ftobjs.c   Mon Feb 17 07:10:39 2003
-@@ -798,7 +798,7 @@
+Only in freetype-2.1.4/builds/unix: freetype-config.in~
+diff -aur freetype-2.1.4_ori/src/base/ftobjs.c freetype-2.1.4/src/base/ftobjs.c
+--- freetype-2.1.4_ori/src/base/ftobjs.c   2003-03-27 22:35:43.0 
+0100
 freetype-2.1.4/src/base/ftobjs.c   2005-02-27 23:37:16.0 +0100
+@@ -926,7 +926,7 @@
/* there's a Mac-specific extended implementation of FT_New_Face() */
/* in src/base/ftmac.c */
  
@@ -35,23 +35,13 @@
  
/* documentation is in freetype.h */
  
-@@ -821,7 +821,7 @@
+@@ -949,7 +949,7 @@
  return FT_Open_Face( library, args, face_index, aface );
}
  
 -#endif  /* !FT_MACINTOSH */
-+/*#endif  !FT_MACINTOSH */
++/*#endif   !FT_MACINTOSH */
  
  
/* documentation is in freetype.h */
 freetype-2.1.3/builds/unix/detect.mk.bak   2002-06-14 10:09:25.0 
+0200
-+++ freetype-2.1.3/builds/unix/detect.mk   2004-11-02 00:41:47.0 
+0100
-@@ -18,7 +18,7 @@
- 
-   # Note: this test is duplicated in builds/toplevel.mk.
-   #
--  is_unix := $(strip $(wildcard /sbin/init) $(wildcard /usr/sbin/init) 
$(wildcard /hurd/auth))
-+  is_unix := $(strip $(wildcard /sbin/init) $(wildcard /usr/sbin/init) 
$(wildcard /hurd/auth) $(wildcard /sbin/launchd))
-   ifneq ($(is_unix),)
- 
- PLATFORM := unix
+Only in freetype-2.1.4/src/base: ftobjs.c~

Index: freetype2.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics/freetype2.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- freetype2.info  28 Jan 2005 14:54:56 -  1.4
+++ freetype2.info  28 Feb 2005 14:49:53 -  1.5
@@ -1,12 +1,12 @@
 Package: freetype2
-Version: 2.1.3
-Revision: 23
-Depends: %N-shlibs (= %v-%r)
+Version: 2.1.4
+Revision: 11
+# Depends: %N-shlibs (= %v-%r)
 Conflicts: freetype2-hinting
 Replaces: freetype2-hinting
 BuildDependsOnly: True
 Source: mirror:sourceforge:freetype/freetype-%v.tar.gz
-Source-MD5: 

dists/10.3/unstable/main/finkinfo/graphics freetype219-hinting.info,1.1,NONE

2005-02-28 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30828

Removed Files:
freetype219-hinting.info 
Log Message:
Oops, didn't want to commit this one

--- freetype219-hinting.info DELETED ---



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/text tetex.info,1.12,1.13

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7213

Modified Files:
tetex.info 
Log Message:
add missing builddepends (needed for libgd.la)


Index: tetex.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/text/tetex.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- tetex.info  27 Feb 2005 15:47:11 -  1.12
+++ tetex.info  28 Feb 2005 15:28:38 -  1.13
@@ -8,6 +8,7 @@
 Depends: %N-base (= %v-%r), texinfo, debianutils, texi2html
 BuildDepends: 
  libkpathsea4, t1lib5, libpng3 (= 1:1.2.8-1), libwww, libncurses5, 
+ libjpeg, libiconv-dev,
  (%type_raw[-nox] = .)  gd2 (= 2.0.33-1), 
  (%type_raw[-nox] = .) x11, 
  (%type_raw[-nox] = .) openmotif3



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.2-gcc3.3/unstable/main/finkinfo/text tetex.info,1.1,1.2

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7678

Modified Files:
tetex.info 
Log Message:
add missing builddepends (needed for libgd.la)


Index: tetex.info
===
RCS file: 
/cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/text/tetex.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- tetex.info  27 Feb 2005 16:05:41 -  1.1
+++ tetex.info  28 Feb 2005 15:29:30 -  1.2
@@ -8,6 +8,7 @@
 Depends: %N-base (= %v-%r), texinfo, debianutils, texi2html
 BuildDepends: 
  libkpathsea4, t1lib5, libpng3 (= 1:1.2.8-1), libwww, libncurses5, 
+ libjpeg, libiconv-dev,
  (%type_raw[-nox] = .)  gd2 (= 2.0.33-1), 
  (%type_raw[-nox] = .) x11, 
  (%type_raw[-nox] = .) openmotif3



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.893,1.894 VirtPackage.pm,1.72,1.73

2005-02-28 Thread Justin F. Hallett
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13924/perlmod/Fink

Modified Files:
ChangeLog VirtPackage.pm 
Log Message:
Detect new growl 0.6

Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -d -r1.72 -r1.73
--- VirtPackage.pm  28 Feb 2005 02:36:09 -  1.72
+++ VirtPackage.pm  28 Feb 2005 15:49:13 -  1.73
@@ -991,7 +991,15 @@
if (-x 
'/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/Contents/MacOS/GrowlHelperApp')
 {
print STDERR found, Growl\n if ($options{debug});
print STDERR - checking for Growl version...  if 
($options{debug});
-   if (-f /Library/Receipts/Growl.pkg/Contents/Info.plist) {
+   if (-f 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist) {
+   if (open(FILEIN, 
'/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist')) {
+   local $/ = undef;
+   if (FILEIN =~ 
/keyCFBundleVersion\/key[\r\n\s]*string([\d\.]+)\/string/) {
+   $growl_version = $1;
+   }
+   close(FILEIN);
+   }
+   } elsif (-f /Library/Receipts/Growl.pkg/Contents/Info.plist) {
if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
local $/ = undef;
if (FILEIN =~ 
/keyCFBundleShortVersionString\/key[\r\n\s]*string([\d\.]+)\/string/) {
@@ -1000,6 +1008,7 @@
close(FILEIN);
} 
} else {
+   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
$growl_version = 0;
}

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.893
retrieving revision 1.894
diff -u -d -r1.893 -r1.894
--- ChangeLog   28 Feb 2005 05:14:57 -  1.893
+++ ChangeLog   28 Feb 2005 15:49:13 -  1.894
@@ -1,3 +1,7 @@
+2005-02-28  Justin F. Hallett  [EMAIL PROTECTED]
+
+   * VirtPackage.pm: Added 0.6 detection
+
 2005-02-27  Dave Morrison  [EMAIL PROTECTED]
 
* Engine.pm: Enable BuildConflicts when running fink install (not



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink VirtPackage.pm,1.73,1.74

2005-02-28 Thread Justin F. Hallett
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17272/perlmod/Fink

Modified Files:
VirtPackage.pm 
Log Message:
This will be better

Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -d -r1.73 -r1.74
--- VirtPackage.pm  28 Feb 2005 15:49:13 -  1.73
+++ VirtPackage.pm  28 Feb 2005 15:59:41 -  1.74
@@ -999,18 +999,25 @@
}
close(FILEIN);
}
-   } elsif (-f /Library/Receipts/Growl.pkg/Contents/Info.plist) {
-   if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
-   local $/ = undef;
-   if (FILEIN =~ 
/keyCFBundleShortVersionString\/key[\r\n\s]*string([\d\.]+)\/string/) {
-   $growl_version = $1;
-   }
-   close(FILEIN);
-   } 
-   } else {
-   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
+} else {
print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
$growl_version = 0;
+}
+
+   ### This check is for growl's less then 0.6
+   if ($growl_version eq 1.0) {
+   if (-f 
/Library/Receipts/Growl.pkg/Contents/Info.plist) {
+   if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
+   local $/ = undef;
+   if (FILEIN =~ 
/keyCFBundleShortVersionString\/key[\r\n\s]*string([\d\.]+)\/string/) {
+   $growl_version = $1;
+   }
+   close(FILEIN);
+   } 
+   } else {
+   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
+   $growl_version = 0;
+   }
}
} else {
print STDERR missing\n if ($options{debug});



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.894,1.895 Services.pm,1.152,1.153

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

Modified Files:
ChangeLog Services.pm 
Log Message:
Repair dumpinfo under perl 5.6 (thanks to Martin Costabel for the fix)


Index: Services.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Services.pm,v
retrieving revision 1.152
retrieving revision 1.153
diff -u -d -r1.152 -r1.153
--- Services.pm 9 Feb 2005 15:56:04 -   1.152
+++ Services.pm 28 Feb 2005 16:35:25 -  1.153
@@ -870,9 +870,14 @@
 
 =cut
 
+sub my_version_cmp {
+version_cmp($a,=,$b)
+   }
+
 sub sort_versions {
-   sort { version_cmp($a,=,$b) } @_;
-}  
+   sort my_version_cmp @_;
+}
+
 
 =item parse_fullversion
 

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.894
retrieving revision 1.895
diff -u -d -r1.894 -r1.895
--- ChangeLog   28 Feb 2005 15:49:13 -  1.894
+++ ChangeLog   28 Feb 2005 16:35:24 -  1.895
@@ -1,3 +1,8 @@
+2005-02-28  Dave Morrison  [EMAIL PROTECTED]
+
+   * Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 
+   Costabel for the fix)
+
 2005-02-28  Justin F. Hallett  [EMAIL PROTECTED]
 
* VirtPackage.pm: Added 0.6 detection



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.873.2.5,1.873.2.6 Services.pm,1.152,1.152.2.1

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

Modified Files:
  Tag: branch_0_24
ChangeLog Services.pm 
Log Message:
Repair dumpinfo under perl 5.6 (thanks to Martin Costabel for the fix)


Index: Services.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Services.pm,v
retrieving revision 1.152
retrieving revision 1.152.2.1
diff -u -d -r1.152 -r1.152.2.1
--- Services.pm 9 Feb 2005 15:56:04 -   1.152
+++ Services.pm 28 Feb 2005 16:35:52 -  1.152.2.1
@@ -870,9 +870,14 @@
 
 =cut
 
+sub my_version_cmp {
+version_cmp($a,=,$b)
+   }
+
 sub sort_versions {
-   sort { version_cmp($a,=,$b) } @_;
-}  
+   sort my_version_cmp @_;
+}
+
 
 =item parse_fullversion
 

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.873.2.5
retrieving revision 1.873.2.6
diff -u -d -r1.873.2.5 -r1.873.2.6
--- ChangeLog   28 Feb 2005 04:15:50 -  1.873.2.5
+++ ChangeLog   28 Feb 2005 16:35:52 -  1.873.2.6
@@ -1,3 +1,8 @@
+2005-02-28  Dave Morrison  [EMAIL PROTECTED]
+
+   * Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 
+   Costabel for the fix)
+
 2005-02-27  Dave Morrison  [EMAIL PROTECTED]
 
* Engine.pm: Enable BuildConflicts when running fink install (not



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/thesin/finkinfo/test mac-growl-pm.info,1.2,1.3

2005-02-28 Thread Justin F. Hallett
Update of /cvsroot/fink/experimental/thesin/finkinfo/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30512

Added Files:
mac-growl-pm.info 
Log Message:
Update to growl 0.6 and support perl images yay

--- NEW FILE: mac-growl-pm.info ---
Info2: 
Package: mac-growl-pm%type_pkg[perl]
Version: 0.6
Revision: 10
###
Depends: macosx, perl%type_pkg[perl]-core, growl (= 0.6-1)
BuildDepends: fink (= 0.24.0)
AddShlibDeps: true
###
Source: mirror:sourceforge:fink/Mac-Growl-%v.tar.gz
Source-MD5: 7a12da6cd3808ee083f94454a62fd06c
###
# Only tested on 5.8.1 ATM sorry others, need reports for me to add em.
Type: perl (5.8.1)
UpdatePOD: true
###
DocFiles: Changes README
Description: Perl module for GROWL notification system
DescDetail: 
  Mac::Growl provides an interface for perl scripts to connect to Growl,
  allowing them to register with it, and send it notifications to be
  displayed.

###
License: Artistic
Maintainer: Justin F. Hallett [EMAIL PROTECTED]
Homepage: http://growl.info/




---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.895,1.896 PkgVersion.pm,1.370,1.371

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

Modified Files:
ChangeLog PkgVersion.pm 
Log Message:
Improved error message for buildlock failure


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.370
retrieving revision 1.371
diff -u -d -r1.370 -r1.371
--- PkgVersion.pm   28 Feb 2005 03:19:49 -  1.370
+++ PkgVersion.pm   28 Feb 2005 16:52:56 -  1.371
@@ -3128,11 +3128,12 @@
print_breaking(EOMSG);
 Can't set build lock for $pkgname ($pkgvers)
 
-If any of the above dpkg error messages mention problems with
-dependencies, fink has probably gotten confused by trying to build
-many packages at once. Try building just this current package. When
-that has completed successfully, you could retry whatever you did that
-led to the present error.
+If any of the above dpkg error messages mention conflicting packages --
+for example, telling you that fink-buildlock-$pkgname-$pkgvers
+conflicts with something else -- fink has probably gotten confused by trying 
+to build many packages at once. Try building just this current package
+$pkgname (i.e, fink build $pkgname). When that has completed successfully, 
+you could retry whatever you did that led to the present error.
 
 Regardless of the cause of the lock failure, don't worry: you have not
 wasted compiling time! Packages that had been completely built before

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.895
retrieving revision 1.896
diff -u -d -r1.895 -r1.896
--- ChangeLog   28 Feb 2005 16:35:24 -  1.895
+++ ChangeLog   28 Feb 2005 16:52:55 -  1.896
@@ -2,6 +2,7 @@
 
* Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 
Costabel for the fix)
+   * PkgVersion.pm: Improved error message for buildlock failure.
 
 2005-02-28  Justin F. Hallett  [EMAIL PROTECTED]
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.873.2.6,1.873.2.7 PkgVersion.pm,1.362.2.1,1.362.2.2

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

Modified Files:
  Tag: branch_0_24
ChangeLog PkgVersion.pm 
Log Message:
Improved error message for buildlock failure


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.362.2.1
retrieving revision 1.362.2.2
diff -u -d -r1.362.2.1 -r1.362.2.2
--- PkgVersion.pm   25 Feb 2005 01:56:34 -  1.362.2.1
+++ PkgVersion.pm   28 Feb 2005 16:53:19 -  1.362.2.2
@@ -3056,11 +3056,12 @@
print_breaking(EOMSG);
 Can't set build lock for $pkgname ($pkgvers)
 
-If any of the above dpkg error messages mention problems with
-dependencies, fink has probably gotten confused by trying to build
-many packages at once. Try building just this current package. When
-that has completed successfully, you could retry whatever you did that
-led to the present error.
+If any of the above dpkg error messages mention conflicting packages --
+for example, telling you that fink-buildlock-$pkgname-$pkgvers
+conflicts with something else -- fink has probably gotten confused by trying 
+to build many packages at once. Try building just this current package
+$pkgname (i.e, fink build $pkgname). When that has completed successfully, 
+you could retry whatever you did that led to the present error.
 
 Regardless of the cause of the lock failure, don't worry: you have not
 wasted compiling time! Packages that had been completely built before

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.873.2.6
retrieving revision 1.873.2.7
diff -u -d -r1.873.2.6 -r1.873.2.7
--- ChangeLog   28 Feb 2005 16:35:52 -  1.873.2.6
+++ ChangeLog   28 Feb 2005 16:53:18 -  1.873.2.7
@@ -2,6 +2,7 @@
 
* Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 
Costabel for the fix)
+   * PkgVersion.pm: Improved error message for buildlock failure.
 
 2005-02-27  Dave Morrison  [EMAIL PROTECTED]
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink ChangeLog,1.304,1.304.2.1 VERSION,1.79,1.79.2.1

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32648

Modified Files:
  Tag: branch_0_24
ChangeLog VERSION 
Log Message:
releasing 0.24.1


Index: VERSION
===
RCS file: /cvsroot/fink/fink/VERSION,v
retrieving revision 1.79
retrieving revision 1.79.2.1
diff -u -d -r1.79 -r1.79.2.1
--- VERSION 24 Feb 2005 00:15:20 -  1.79
+++ VERSION 28 Feb 2005 16:54:44 -  1.79.2.1
@@ -1 +1 @@
-0.24.0.cvs
+0.24.1.cvs

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.304
retrieving revision 1.304.2.1
diff -u -d -r1.304 -r1.304.2.1
--- ChangeLog   24 Feb 2005 00:15:19 -  1.304
+++ ChangeLog   28 Feb 2005 16:54:44 -  1.304.2.1
@@ -1,3 +1,8 @@
+2005-02-28  Dave Morrison  [EMAIL PROTECTED]
+
+   * VERSION: Bumped package manager version to 0.24.1, a bugfix
+   release on branch_0_24
+
 2005-02-23  Dave Morrison  [EMAIL PROTECTED]
 
* VERSION: Bumped package manager version to 0.24.0, a new release



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink ChangeLog,1.306,1.307 VERSION,1.79,1.80

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv801

Modified Files:
ChangeLog VERSION 
Log Message:
releasing 0.24.1


Index: VERSION
===
RCS file: /cvsroot/fink/fink/VERSION,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- VERSION 24 Feb 2005 00:15:20 -  1.79
+++ VERSION 28 Feb 2005 16:56:18 -  1.80
@@ -1 +1 @@
-0.24.0.cvs
+0.24.1.cvs

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.306
retrieving revision 1.307
diff -u -d -r1.306 -r1.307
--- ChangeLog   25 Feb 2005 20:27:17 -  1.306
+++ ChangeLog   28 Feb 2005 16:56:17 -  1.307
@@ -1,3 +1,8 @@
+2005-02-28  Dave Morrison  [EMAIL PROTECTED]
+
+   * VERSION: Bumped package manager version to 0.24.1, a bugfix
+   release on branch_0_24
+
 2005-02-25  Justin F. Hallett  [EMAIL PROTECTED]
 
* fink.in: Adding maintainer mode, -m|--maintainer



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink ChangeLog,1.307,1.308 fink.8.in,1.37,1.38

2005-02-28 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17615

Modified Files:
ChangeLog fink.8.in 
Log Message:
Fix syntax for one-char cmdline flag args in fink.8 manpage.


Index: fink.8.in
===
RCS file: /cvsroot/fink/fink/fink.8.in,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- fink.8.in   23 Feb 2005 22:35:57 -  1.37
+++ fink.8.in   28 Feb 2005 17:56:30 -  1.38
@@ -172,13 +172,13 @@
 Show only packages which are up to date.
 .It Cm -n,--notinstalled
 Show packages which are not currently installed.
-.It Cm -s=expr,--section=expr
+.It Cm -s expr,--section=expr
 Show only packages in the sections matching the regular expression expr.
-.It Cm -m=expr,--maintainer=expr
+.It Cm -m expr,--maintainer=expr
 Show only packages with the maintainer  matching the regular expression expr.
-.It Cm -t=expr,--tree=expr
+.It Cm -t expr,--tree=expr
 Show only packages in the trees matching the regular expression expr.
-.It Cm -w=xyz,--width=xyz
+.It Cm -w xyz,--width=xyz
 Sets the width of the display you would like the output
 formatted for. xyz is either a numeric value or auto.
 auto will set the width based on the terminal width.

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -u -d -r1.307 -r1.308
--- ChangeLog   28 Feb 2005 16:56:17 -  1.307
+++ ChangeLog   28 Feb 2005 17:56:30 -  1.308
@@ -1,3 +1,7 @@
+2005-02-28  Daniel Macks  [EMAIL PROTECTED]
+
+   * fink.8.in: fix syntax for one-char flag args.
+
 2005-02-28  Dave Morrison  [EMAIL PROTECTED]
 
* VERSION: Bumped package manager version to 0.24.1, a bugfix



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.873.2.7,1.873.2.8 VirtPackage.pm,1.68.2.2,1.68.2.3

2005-02-28 Thread Justin F. Hallett
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23605

Modified Files:
  Tag: branch_0_24
ChangeLog VirtPackage.pm 
Log Message:
Dave please add this to the 0.24.1 releasevi ChangeLog 

Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.68.2.2
retrieving revision 1.68.2.3
diff -u -d -r1.68.2.2 -r1.68.2.3
--- VirtPackage.pm  28 Feb 2005 04:12:55 -  1.68.2.2
+++ VirtPackage.pm  28 Feb 2005 18:16:39 -  1.68.2.3
@@ -992,17 +992,34 @@
if (-x 
'/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app/Contents/MacOS/GrowlHelperApp')
 {
print STDERR found, Growl\n if ($options{debug});
print STDERR - checking for Growl version...  if 
($options{debug});
-   if (-f /Library/Receipts/Growl.pkg/Contents/Info.plist) {
-   if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
+   if (-f 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist) {
+   if (open(FILEIN, 
'/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist')) {
local $/ = undef;
-   if (FILEIN =~ 
/keyCFBundleShortVersionString\/key[\r\n\s]*string([\d\.]+)\/string/) {
+   if (FILEIN =~ 
/keyCFBundleVersion\/key[\r\n\s]*string([\d\.]+)\/string/) {
$growl_version = $1;
}
close(FILEIN);
-   } 
+   }
} else {
-   print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
-   $growl_version = 0;
+   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
+   $growl_version = 0;
+}
+
+   ### This check is for growl's less then 0.6
+   ### Growl team told me 1.0 would be versioned 1.00
+   if ($growl_version eq 1.0) {
+   if (-f 
/Library/Receipts/Growl.pkg/Contents/Info.plist) {
+   if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
+   local $/ = undef;
+   if (FILEIN =~ 
/keyCFBundleShortVersionString\/key[\r\n\s]*string([\d\.]+)\/string/) {
+   $growl_version = $1;
+   }
+   close(FILEIN);
+   } 
+   } else {
+   print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
+   $growl_version = 0;
+   }
}
} else {
print STDERR missing\n if ($options{debug});

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.873.2.7
retrieving revision 1.873.2.8
diff -u -d -r1.873.2.7 -r1.873.2.8
--- ChangeLog   28 Feb 2005 16:53:18 -  1.873.2.7
+++ ChangeLog   28 Feb 2005 18:16:38 -  1.873.2.8
@@ -1,3 +1,7 @@
+2005-02-28  Justin F. Hallett  [EMAIL PROTECTED]
+
+   * VirtPackage.pm: Added Growl 0.6 detection
+
 2005-02-28  Dave Morrison  [EMAIL PROTECTED]
 
* Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.896,1.897 VirtPackage.pm,1.74,1.75

2005-02-28 Thread Justin F. Hallett
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24671

Modified Files:
ChangeLog VirtPackage.pm 
Log Message:
docu and output fixes

Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- VirtPackage.pm  28 Feb 2005 15:59:41 -  1.74
+++ VirtPackage.pm  28 Feb 2005 18:19:57 -  1.75
@@ -1000,11 +1000,12 @@
close(FILEIN);
}
 } else {
-   print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
+   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
$growl_version = 0;
 }
 
### This check is for growl's less then 0.6
+   ### Growl team told me 1.0 would be versioned 1.00
if ($growl_version eq 1.0) {
if (-f 
/Library/Receipts/Growl.pkg/Contents/Info.plist) {
if (open(FILEIN, 
'/Library/Receipts/Growl.pkg/Contents/Info.plist')) {
@@ -1015,7 +1016,7 @@
close(FILEIN);
} 
} else {
-   print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
+   print STDERR 
/Library/Receipts/Growl.pkg/Contents/Info.plist not found...  if 
($options{debug});
$growl_version = 0;
}
}

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.896
retrieving revision 1.897
diff -u -d -r1.896 -r1.897
--- ChangeLog   28 Feb 2005 16:52:55 -  1.896
+++ ChangeLog   28 Feb 2005 18:19:56 -  1.897
@@ -6,7 +6,7 @@
 
 2005-02-28  Justin F. Hallett  [EMAIL PROTECTED]
 
-   * VirtPackage.pm: Added 0.6 detection
+   * VirtPackage.pm: Added Growl 0.6 detection
 
 2005-02-27  Dave Morrison  [EMAIL PROTECTED]
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.873.2.8,1.873.2.9 VirtPackage.pm,1.68.2.3,1.68.2.4

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

Modified Files:
  Tag: branch_0_24
ChangeLog VirtPackage.pm 
Log Message:
backport mroe virtpackage changes


Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.68.2.3
retrieving revision 1.68.2.4
diff -u -d -r1.68.2.3 -r1.68.2.4
--- VirtPackage.pm  28 Feb 2005 18:16:39 -  1.68.2.3
+++ VirtPackage.pm  28 Feb 2005 18:39:50 -  1.68.2.4
@@ -125,7 +125,7 @@
 which is a core part of the operating system.
 END
$hash-{homepage} = 
http://fink.sourceforge.net/faq/usage-general.php#virtpackage;;
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
$self-{$hash-{package}} = $hash;

 =item macosx
@@ -156,7 +156,7 @@
 This package represents the Mac OS X software release.
 It will not show as installed on pure Darwin systems.
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
$self-{$hash-{package}} = $hash;
 
 =item system-perl
@@ -179,7 +179,7 @@
 This package represents the version of perl installed on the
 system in /usr/bin/perl.
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
if (defined Fink::Services::get_system_perl_version()) {
$hash-{version} = 
Fink::Services::get_system_perl_version().-1;
@@ -236,7 +236,7 @@
 This package represents the currently installed version
 of Java $dir.
 END
-   $hash-{compilescript} = 
gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
if ($dir =~ /^\d[\d\.]*$/ and -d $javadir . '/' . $dir 
. '/Commands') {
print STDERR $dir/Commands  if 
($options{debug});
@@ -268,7 +268,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = 
gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = 
gen_compile_script($hash);
 
if (-d $javadir . '/' . $dir . '/Headers') {
print STDERR $dir/Headers  if 
($options{debug});
@@ -342,7 +342,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
print STDERR - searching for java3d...  if ($options{debug});
if (-f '/System/Library/Java/Extensions/j3dcore.jar') {
@@ -384,7 +384,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
print STDERR - searching for javaai...  if ($options{debug});
if (-f '/System/Library/Java/Extensions/jai_core.jar') {
@@ -443,7 +443,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
if (defined ($cctools_version)) {
$hash-{version} = $cctools_version.-1;
@@ -498,7 +498,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
if ($cctools_single_module) {
$hash-{status} = STATUS_PRESENT;
@@ -592,7 +592,7 @@
 
 (free registration required)
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);

{
my $cc1plus = '/usr/libexec/gcc/darwin/ppc/3.3/cc1plus';
@@ -641,7 +641,7 @@
 installed, you must install the GimpPrintPrinterDrivers
 package that came with your Mac OS X CDs.
 END
-   $hash-{compilescript} = gen_compile_script($hash-{descdetail});
+   $hash-{compilescript} = gen_compile_script($hash);
 
if ( has_lib('libgimpprint.1.1.0.dylib') ) {
print STDERR - found gimp-print-shlibs 4.2.5-1\n if 
($options{debug});
@@ -685,7 +685,6 @@
   http://fink.sourceforge.net/faq/usage-packages.php#apple-x11-wants-xfree86
 
 END
-   my $compile_script = gen_compile_script($descdetail);
 
$hash = {};
$hash-{package} = system-xfree86-shlibs;
@@ -693,8 +692,8 @@
$hash-{status} = STATUS_ABSENT;
$hash-{description} = [virtual package representing 
Apple's install of X11];
$hash-{homepage} = 
http://fink.sourceforge.net/faq/usage-general.php#virtpackage;;
- 

dists/10.3/unstable/main/finkinfo/devel darcs.info,1.14,1.15

2005-02-28 Thread Lars Rosengreen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29617

Modified Files:
darcs.info 
Log Message:
orphaning.  hopefully someone else can take it over.  i don't have the 
time to keep on maintaining this.



Index: darcs.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel/darcs.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- darcs.info  20 Jan 2005 22:18:44 -  1.14
+++ darcs.info  28 Feb 2005 18:41:00 -  1.15
@@ -3,7 +3,7 @@
 Revision: 4
 Description: Advanced distributed revision control system
 License: GPL
-Maintainer: Lars Rosengreen [EMAIL PROTECTED]
+Maintainer: None fink-devel@lists.sourceforge.net
 
 Depends: libncurses5-shlibs, readline-shlibs (= 4.3-28), curl-shlibs | 
curl-ssl-shlibs, gmp-shlibs
 BuildDepends: autoconf2.5, libncurses5, readline (= 4.3-28), curl | curl-ssl, 
curl-dev | curl-ssl-dev, ghc-dev (= 6.2), tetex | system-tetex, latex2html
@@ -34,5 +34,5 @@
 Homepage: http://abridgegame.org/darcs/
 
 DescPort: 
-Previous versions by Vadim Zaliva
+Previous versions by Vadim Zaliva and Lars Rosengreen
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink ChangeLog,1.304.2.1,1.304.2.2 fink.8.in,1.37,1.37.2.1

2005-02-28 Thread Daniel Macks
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32543

Modified Files:
  Tag: branch_0_24
ChangeLog fink.8.in 
Log Message:
backport fink.8.in one-char flag fix.


Index: fink.8.in
===
RCS file: /cvsroot/fink/fink/fink.8.in,v
retrieving revision 1.37
retrieving revision 1.37.2.1
diff -u -d -r1.37 -r1.37.2.1
--- fink.8.in   23 Feb 2005 22:35:57 -  1.37
+++ fink.8.in   28 Feb 2005 18:44:40 -  1.37.2.1
@@ -172,13 +172,13 @@
 Show only packages which are up to date.
 .It Cm -n,--notinstalled
 Show packages which are not currently installed.
-.It Cm -s=expr,--section=expr
+.It Cm -s expr,--section=expr
 Show only packages in the sections matching the regular expression expr.
-.It Cm -m=expr,--maintainer=expr
+.It Cm -m expr,--maintainer=expr
 Show only packages with the maintainer  matching the regular expression expr.
-.It Cm -t=expr,--tree=expr
+.It Cm -t expr,--tree=expr
 Show only packages in the trees matching the regular expression expr.
-.It Cm -w=xyz,--width=xyz
+.It Cm -w xyz,--width=xyz
 Sets the width of the display you would like the output
 formatted for. xyz is either a numeric value or auto.
 auto will set the width based on the terminal width.

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.304.2.1
retrieving revision 1.304.2.2
diff -u -d -r1.304.2.1 -r1.304.2.2
--- ChangeLog   28 Feb 2005 16:54:44 -  1.304.2.1
+++ ChangeLog   28 Feb 2005 18:44:40 -  1.304.2.2
@@ -1,3 +1,7 @@
+2005-02-28  Daniel Macks  [EMAIL PROTECTED]
+
+   * fink.8.in: fix syntax for one-char flag args (backport from head).
+
 2005-02-28  Dave Morrison  [EMAIL PROTECTED]
 
* VERSION: Bumped package manager version to 0.24.1, a bugfix



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/crypto/finkinfo gaim-ssl.info,1.20,1.21

2005-02-28 Thread Max Horn
Update of /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3195/unstable/crypto/finkinfo

Modified Files:
gaim-ssl.info 
Log Message:
New upstream version

Index: gaim-ssl.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo/gaim-ssl.info,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- gaim-ssl.info   19 Feb 2005 14:14:26 -  1.20
+++ gaim-ssl.info   28 Feb 2005 18:55:23 -  1.21
@@ -1,5 +1,5 @@
 Package: gaim-ssl
-Version: 1.1.3
+Version: 1.1.4
 Revision: 11
 BuildDependsOnly: False
 Maintainer: Max Horn [EMAIL PROTECTED]
@@ -8,7 +8,7 @@
 Conflicts: gaim
 Replaces: gaim
 Source: mirror:sourceforge:gaim/gaim-%v.tar.bz2
-Source-MD5: 4934cf3e45c763a6f71d03f59db935e2
+Source-MD5: bef100062823ae1a10d041b022e05d9c
 Patch: %n.patch
 ConfigureParams: --mandir=%p/share/man --disable-perl --enable-gnutls=no 
--enable-nss=yes
 InstallScript: make install DESTDIR=%d



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/net gaim.info,1.22,1.23

2005-02-28 Thread Max Horn
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/net
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3195/unstable/main/finkinfo/net

Modified Files:
gaim.info 
Log Message:
New upstream version

Index: gaim.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/net/gaim.info,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- gaim.info   19 Feb 2005 14:14:25 -  1.22
+++ gaim.info   28 Feb 2005 18:55:23 -  1.23
@@ -1,5 +1,5 @@
 Package: gaim
-Version: 1.1.3
+Version: 1.1.4
 Revision: 11
 BuildDependsOnly: False
 Maintainer: Max Horn [EMAIL PROTECTED]
@@ -8,7 +8,7 @@
 Conflicts: gaim-ssl
 Replaces: gaim-ssl
 Source: mirror:sourceforge:gaim/gaim-%v.tar.bz2
-Source-MD5: 4934cf3e45c763a6f71d03f59db935e2
+Source-MD5: bef100062823ae1a10d041b022e05d9c
 Patch: %n.patch
 ConfigureParams: --mandir=%p/share/man --disable-perl --enable-gnutls=no 
--enable-nss=no
 InstallScript: make install DESTDIR=%d



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink VirtPackage.pm,1.75,1.76

2005-02-28 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3464

Modified Files:
VirtPackage.pm 
Log Message:
Whitespace fix. Something is breaking auto-indent...


Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- VirtPackage.pm  28 Feb 2005 18:19:57 -  1.75
+++ VirtPackage.pm  28 Feb 2005 18:57:44 -  1.76
@@ -999,10 +999,10 @@
}
close(FILEIN);
}
-} else {
+   } else {
print STDERR 
/Library/PreferencePanes/Growl.prefPane/Contents/Info.plist not found...  if 
($options{debug});
-   $growl_version = 0;
-}
+   $growl_version = 0;
+   }
 
### This check is for growl's less then 0.6
### Growl team told me 1.0 would be versioned 1.00



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.897,1.898 Validation.pm,1.174,1.175

2005-02-28 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5995

Modified Files:
ChangeLog Validation.pm 
Log Message:
Improved wording for scrollkeeper misuse validator warnings.


Index: Validation.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Validation.pm,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -d -r1.174 -r1.175
--- Validation.pm   27 Feb 2005 02:06:40 -  1.174
+++ Validation.pm   28 Feb 2005 19:05:07 -  1.175
@@ -971,7 +971,7 @@
foreach (qw/ postinst postrm /) {
next if $_ eq postrm  
$deb_control-{package} eq scrollkeeper; # circular dep
if (not grep { 
/^\s*scrollkeeper-update/ } @{$deb_control-{$_}}) {
-   print Warning: scrollkeeper 
source file found, but scrollkeeper-update not called\nin $_. See scrollkeeper 
package docs for information. Offending file:\n  $filename\n;
+   print Warning: scrollkeeper 
source file found, but scrollkeeper-update not called\nin $_. See scrollkeeper 
package docs, starting with 'fink info scrollkeeper', for information. 
Offending file:\n  $filename\n;
$looks_good = 0;
}
}
@@ -1011,7 +1011,7 @@
close(DAEMONIC_FILE) or die Error on close: , 
$?8,  $!\n;
} elsif ( $filename =~ /^$basepath\/var\/scrollkeeper/ 
) {
if (not $scrollkeeper_misuse_warned++) {
-   print Warning: Found 
$basepath/var/scrollkeeper, which usually results from 
calling\nscrollkeeper-update during CompileScript or InstallScript. See 
the\nscrollkeeper package docs for information on the correct use of that 
utility.\n;
+   print Warning: Found 
$basepath/var/scrollkeeper, which usually results from 
calling\nscrollkeeper-update during CompileScript or InstallScript. See 
the\nscrollkeeper package docs, starting with 'fink info scrollkeeper', for 
information on the correct use of that utility.\n;
$looks_good = 0;
}
}
@@ -1064,7 +1064,7 @@
# scrollkeeper-update should be called from PostInstScript and 
PostRmScript
foreach (qw/ preinst prerm /) {
if (grep { /^\s*scrollkeeper-update/ } @{$deb_control-{$_}}) {
-   print Warning: scrollkeeper-update in $_ is a 
no-op\nSee scrollkeeper package docs for information.\n;
+   print Warning: scrollkeeper-update in $_ is a 
no-op\nSee scrollkeeper package docs, starting with 'fink info scrollkeeper', 
for information.\n;
$looks_good = 0;
}
}

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.897
retrieving revision 1.898
diff -u -d -r1.897 -r1.898
--- ChangeLog   28 Feb 2005 18:19:56 -  1.897
+++ ChangeLog   28 Feb 2005 19:05:07 -  1.898
@@ -1,3 +1,7 @@
+2005-02-28  Daniel Macks  [EMAIL PROTECTED]
+
+   * Validation.pm: Improved wording for scorllkeeper misuse warnings.
+
 2005-02-28  Dave Morrison  [EMAIL PROTECTED]
 
* Services.pm: Repair dumpinfo under perl 5.6 (thanks to Martin 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/rangerrick/common/main/finkinfo/graphics freetype2-hinting.info,1.2,NONE freetype2-hinting.patch,1.1,NONE freetype2.info,1.1,NONE freetype2.patch,1.1,NONE

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/common/main/finkinfo/graphics
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/common/main/finkinfo/graphics

Removed Files:
freetype2-hinting.info freetype2-hinting.patch freetype2.info 
freetype2.patch 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

--- freetype2-hinting.info DELETED ---

--- freetype2.patch DELETED ---

--- freetype2.info DELETED ---

--- freetype2-hinting.patch DELETED ---



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/rangerrick/common/main/finkinfo/x11 qt3.info,1.22,1.23

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/common/main/finkinfo/x11
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/common/main/finkinfo/x11

Modified Files:
qt3.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: qt3.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/common/main/finkinfo/x11/qt3.info,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- qt3.info28 Jan 2005 04:29:35 -  1.22
+++ qt3.info28 Feb 2005 19:40:50 -  1.23
@@ -19,7 +19,7 @@
 Description: Cross-Platform GUI application framework
 Depends: %N-shlibs (= %v-%r), %N-designer (= %v-%r), %N-linguist (= %v-%r), 
%N-doc (= %v-%r), pkgconfig
 Suggests: libpng3, libjpeg, %N-mysql (= %v-%r), %N-postgresql (= %v-%r)
-BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, dlcompat-dev 
(= 20030629-5), fink (= 0.17.3-1), freetype2-dev (= 2.1.3-23) | 
freetype2-hinting-dev (= 2.1.3-23), freetype2 (= 2.1.3-23) | 
freetype2-hinting (= 2.1.3-23), gcc3.3, libgl-dev, libpng3 (= 1.2.5-4), 
libjpeg, x11-dev
+BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, dlcompat-dev 
(= 20030629-5), fink (= 0.17.3-1), freetype219, gcc3.3, libgl-dev, libpng3 
(= 1.2.5-4), libjpeg, x11-dev
 Replaces: qt, qt2, %N-doc, %N-bin, %N-dev
 Conflicts: qt, qt2
 Provides: %N-bin
@@ -66,8 +66,8 @@
  fi
 
  export QTDIR=`pwd`
- export DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype2/lib:$DYLD_LIBRARY_PATH
- export PATH=$QTDIR/bin:%p/lib/freetype2/bin:$PATH
+ export 
DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype219/lib:$DYLD_LIBRARY_PATH
+ export PATH=$QTDIR/bin:%p/lib/freetype219/bin:$PATH
  export INSTALL_ROOT=
  if [ -f /usr/lib/libresolv.dylib ]; then
LIBRESOLV=-lresolv
@@ -78,8 +78,8 @@
  # we have to force header/lib ordering or things get really wiggy
  # looks ugly, but it's better than patching the source
  echo yes | ./configure \
-   '-I$(QTDIR)/include' '-I%p/lib/freetype2/include/freetype2' 
'-I%p/include/freetype2' \
-   '-L%p/lib/freetype2/lib' '-I/usr/X11R6/include' '-I%p/include' \
+   '-I$(QTDIR)/include' '-I%p/lib/freetype219/include/freetype2' \
+   '-L%p/lib/freetype219/lib' '-I/usr/X11R6/include' '-I%p/include' \
'-L$(QTDIR)/lib' '-L%p/lib' '-L/usr/X11R6/lib' $LIBRESOLV \
-buildkey qt3-jaguar -platform darwin-g++ -xplatform darwin-g++ \
-translationdir '%p/share/qt3/translations' \
@@ -225,7 +225,7 @@
   Suggests: %N-designer, %N-linguist, %N-doc
   Replaces: qt-shlibs, qt, qt3
   Conflicts: qt-shlibs, qt
-  Depends: dlcompat-shlibs (= 20030629-5), fink (= 0.17.1-1), 
freetype2-shlibs (= 2.1.3-23) | freetype2-hinting-shlibs (= 2.1.3-23), 
libgl-shlibs, libpng3-shlibs (= 1.2.5-4), libjpeg-shlibs, x11-shlibs
+  Depends: dlcompat-shlibs (= 20030629-5), fink (= 0.17.1-1), 
freetype219-shlibs, libgl-shlibs, libpng3-shlibs (= 1.2.5-4), libjpeg-shlibs, 
x11-shlibs
   Shlibs: 
 %p/lib/libeditor.1*.dylib 1.0.0 %n (= 3.3.2-1)
 %p/lib/libqt-mt.3*.dylib 3.0.0 %n (= 3.3.2-1)



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/rangerrick/common/main/finkinfo/libs xmlunit.info,NONE,1.1 mx4j.info,1.11,1.12 mx4j.patch,1.3,1.4

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/common/main/finkinfo/libs
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/common/main/finkinfo/libs

Modified Files:
mx4j.info mx4j.patch 
Added Files:
xmlunit.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: mx4j.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/common/main/finkinfo/libs/mx4j.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- mx4j.info   26 Feb 2005 23:03:04 -  1.11
+++ mx4j.info   28 Feb 2005 19:40:50 -  1.12
@@ -5,8 +5,8 @@
 Source: mirror:sourceforge:%n/%n-%v-src.tar.gz
 Source-MD5: 59ae019c5e2cf6825dc35b2886ca1bdc
 SourceDirectory: %n-%v
-#Patch: %n.patch
-BuildDepends: ant (= 1.6.1-2), ant-junit (= 1.6.1-2), axis, bcel, fink (= 
0.22.2-1), javamail, jython, system-java14-dev
+Patch: %n.patch
+BuildDepends: ant (= 1.6.1-2), ant-junit (= 1.6.1-2), axis, bcel, fink (= 
0.22.2-1), javamail, junit, jython, system-java14-dev, xmlunit
 Depends: axis, bcel, javamail, jython, system-java14 | system-java15
 CompileScript: 
 #!/bin/sh -ex

Index: mx4j.patch
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/common/main/finkinfo/libs/mx4j.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- mx4j.patch  26 Feb 2005 23:03:04 -  1.3
+++ mx4j.patch  28 Feb 2005 19:40:50 -  1.4
@@ -1,6 +1,6 @@
 diff -uNr mx4j-2.1.1/build/build.xml mx4j-2.1.1-new/build/build.xml
 --- mx4j-2.1.1/build/build.xml Sun Jan 16 15:58:23 2005
-+++ mx4j-2.1.1-new/build/build.xml Thu Feb 24 11:14:55 2005
 mx4j-2.1.1-new/build/build.xml Sat Feb 26 18:53:21 2005
 @@ -170,12 +170,6 @@
 /target
  
@@ -29,3 +29,24 @@
 /target
  
 target name=releasing
+diff -uNr mx4j-2.1.1/src/docs/index.xml mx4j-2.1.1-new/src/docs/index.xml
+--- mx4j-2.1.1/src/docs/index.xml  Sun Jan 16 15:58:22 2005
 mx4j-2.1.1-new/src/docs/index.xml  Sat Feb 26 18:54:08 2005
+@@ -1,5 +1,5 @@
+ ?xml version=1.0 encoding=ISO-8859-1?
+-!DOCTYPE book PUBLIC -//OASIS//DTD DocBook XML V4.1.2//EN 
docbook/docbookx.dtd [
++!DOCTYPE book PUBLIC -//OASIS//DTD DocBook XML V4.1.2//EN 
http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl; [
+   !ENTITY english SYSTEM english/index.xml
+ 
+   !ENTITY license_en SYSTEM english/license.xml
+diff -uNr mx4j-2.1.1/src/docs/xsl/mx4j-chunk.xsl 
mx4j-2.1.1-new/src/docs/xsl/mx4j-chunk.xsl
+--- mx4j-2.1.1/src/docs/xsl/mx4j-chunk.xsl Sun Jan 16 15:58:23 2005
 mx4j-2.1.1-new/src/docs/xsl/mx4j-chunk.xsl Sat Feb 26 18:54:37 2005
+@@ -1,6 +1,6 @@
+ xsl:stylesheet xmlns:xsl=http://www.w3.org/1999/XSL/Transform; 
version='1.0'
+ 
+-  xsl:import href=../docbookx/html/chunk.xsl/
++  xsl:import 
href=http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl/
+   xsl:import href=autotoc.xsl/
+ 
+   xsl:param name=html.stylesheetstyles.css/xsl:param

--- NEW FILE: xmlunit.info ---
Package: xmlunit
Version: 1.0
Revision: 1
Type: java(1.3)
Maintainer: Benjamin Reed [EMAIL PROTECTED]
#
Depends: junit, xalan-j, xerces-j
BuildDepends: ant, fink (= 0.22.2-1), junit, xalan-j, xerces-j
Source: mirror:sourceforge:%n/%n%v.zip
Source-MD5: 4f03206acc9ed18bc6cc23fd38b4fc82
SourceDirectory: %n
CompileScript: 
  mkdir src/site
  mkdir reports
  ant dist -Dtest.report.dir=reports

InstallScript: 
#!/bin/sh -ex
 mkdir -p %i/share/doc/%n/javadoc
 cp -r doc/* %i/share/doc/%n/javadoc

JarFiles: lib/%n%v.jar
DocFiles: LICENSE.txt README.txt XMLUnit.pdf example.html
Description: Unit testing for XML
Homepage: http://xmlunit.sourceforge.net/
License: BSD



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/rangerrick/10.3/crypto/finkinfo bundle-kde-ssl.info,1.19,1.20 kdebase3-ssl.info,1.52,1.53 kdelibs3-ssl.info,1.57,1.58 kdenetwork3.info,1.43,1.44 kgpg.info,1.7,1.8

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/10.3/crypto/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/10.3/crypto/finkinfo

Modified Files:
bundle-kde-ssl.info kdebase3-ssl.info kdelibs3-ssl.info 
kdenetwork3.info kgpg.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: bundle-kde-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.3/crypto/finkinfo/bundle-kde-ssl.info,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- bundle-kde-ssl.info 28 Jan 2005 04:29:28 -  1.19
+++ bundle-kde-ssl.info 28 Feb 2005 19:40:43 -  1.20
@@ -1,12 +1,12 @@
 Package: bundle-kde-ssl
-Version: 3.3.91
+Version: 3.4.0
 Revision: 11
 Description: KDE - convenience package: KDE 3.4 (SSL support)
 Type: bundle
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-Depends: arts (= 1.3.2-11), kdelibs3-ssl (= %v-11), kdebase3-ssl (= %v-11), 
kdeaccessibility3 (= %v-11), kdeartwork3 (= %v-11), kdeedu3 (= %v-11), 
kdegames3 (= %v-11), kdegraphics3 (= %v-11), kdenetwork3 (= %v-11), kdepim3 
(= %v-11), kdesdk3 (= %v-11), kdetoys3 (= %v-11), kdeutils3 (= %v-11), 
kdewebdev3 (= %v-11), koffice (= 1.3.5-2), kgpg (= %v-1)
-BuildDepends: arts-dev (= 1.3.2-11), kdelibs3-ssl-dev (= %v-11), 
kdebase3-ssl-dev (= %v-11)
+Depends: arts (= 1.4.0-11), kdelibs3-ssl (= %v-11), kdebase3-ssl (= %v-11), 
kdeaccessibility3 (= %v-11), kdeartwork3 (= %v-11), kdeedu3 (= %v-11), 
kdegames3 (= %v-11), kdegraphics3 (= %v-11), kdenetwork3 (= %v-11), kdepim3 
(= %v-11), kdesdk3 (= %v-11), kdetoys3 (= %v-11), kdeutils3 (= %v-11), 
kdewebdev3 (= %v-11), koffice (= 1.3.5-2), kgpg (= %v-1)
+BuildDepends: arts-dev (= 1.4.0-11), kdelibs3-ssl-dev (= %v-11), 
kdebase3-ssl-dev (= %v-11)
 Conflicts: bundle-kde, kdelibs3, kdelibs3-dev, kdebase3, kdebase3-dev
 
 Homepage: http://fink.sourceforge.net/news/kde.php

Index: kgpg.info
===
RCS file: /cvsroot/fink/experimental/rangerrick/10.3/crypto/finkinfo/kgpg.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- kgpg.info   26 Feb 2005 23:02:56 -  1.7
+++ kgpg.info   28 Feb 2005 19:40:43 -  1.8
@@ -1,5 +1,5 @@
 Package: kgpg
-Version: 3.3.92
+Version: 3.4.0
 Revision: 11
 Description: KDE - GnuPG tool
 License: GPL/LGPL
@@ -15,10 +15,11 @@
   nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
   nam-CA: http://www.southofheaven.net/befunk
 
-Source: mirror:kde:unstable/%v/src/kdeutils-%v.tar.bz2
-Source-MD5: 4638a8f5bac946148b636540dc3199b3
-Source2: mirror:custom:kde-admindir-3.4.0-1.tar.bz2
-Source2-MD5: ac6efed46b8236be1ebba54d2ec36d7d
+Source: mirror:kde:unstable/%v/src/kdeutils-%v-rc1.tar.bz2
+Source-MD5: 6730a3777c91a5c42ac968177fed42b2
+SourceDirectory: kdeutils-%v
+Source2: mirror:custom:kde-admindir-3.4.0-2.tar.bz2
+Source2-MD5: 5a2412d931e204b88d18173d043ada9a
 Source2ExtractDir: kdeutils-%v
 
 PatchScript: 

Index: kdenetwork3.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.3/crypto/finkinfo/kdenetwork3.info,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- kdenetwork3.info26 Feb 2005 23:02:56 -  1.43
+++ kdenetwork3.info28 Feb 2005 19:40:43 -  1.44
@@ -1,5 +1,5 @@
 Package: kdenetwork3
-Version: 3.3.92
+Version: 3.4.0
 Revision: 11
 Description: KDE - networking
 License: GPL/LGPL
@@ -15,10 +15,11 @@
   nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
   nam-CA: http://www.southofheaven.net/befunk
 
-Source: mirror:kde:unstable/%v/src/kdenetwork-%v.tar.bz2
-Source-MD5: 11128438407210ca58687ba183e0ab30
-Source2: mirror:custom:kde-admindir-3.4.0-1.tar.bz2
-Source2-MD5: ac6efed46b8236be1ebba54d2ec36d7d
+Source: mirror:kde:unstable/%v/src/kdenetwork-%v-rc1.tar.bz2
+Source-MD5: 6730a3777c91a5c42ac968177fed42b2
+SourceDirectory: kdenetwork-%v
+Source2: mirror:custom:kde-admindir-3.4.0-2.tar.bz2
+Source2-MD5: 5a2412d931e204b88d18173d043ada9a
 Source2ExtractDir: kdenetwork-%v
 
 PatchScript: 

Index: kdebase3-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.3/crypto/finkinfo/kdebase3-ssl.info,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- kdebase3-ssl.info   26 Feb 2005 23:02:55 -  1.52
+++ kdebase3-ssl.info   28 Feb 2005 19:40:43 -  1.53
@@ -5,9 +5,8 @@
 License: GPL/LGPL
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-AddShlibDeps: true
-Depends: %N-shlibs (= %v-%r), x11, xfontpath
-BuildDepends: arts-dev (= 1.3.92-11), audiofile, autoconf2.5, automake1.9, 
cctools (= 446-1) | cctools-single-module, cups-dev, esound, fink (= 
0.20.2.1-1), freetype2 (= 2.1.3-23) | freetype2-hinting (= 2.1.3-23), 
kdelibs3-ssl-dev (= %v-11), gettext-dev, glib2 (= 2.2.1-4), 

experimental/rangerrick/10.4/main/finkinfo/x11 qt3.info,1.1,1.2

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/10.4/main/finkinfo/x11
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/10.4/main/finkinfo/x11

Modified Files:
qt3.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: qt3.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.4/main/finkinfo/x11/qt3.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- qt3.info28 Jan 2005 04:29:33 -  1.1
+++ qt3.info28 Feb 2005 19:40:47 -  1.2
@@ -19,7 +19,7 @@
 Description: Cross-Platform GUI application framework
 Depends: %N-shlibs (= %v-%r), %N-designer (= %v-%r), %N-linguist (= %v-%r), 
%N-doc (= %v-%r), pkgconfig
 Suggests: libpng3, libjpeg, %N-mysql (= %v-%r), %N-postgresql (= %v-%r)
-BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, fink (= 
0.17.3-1), freetype2-dev (= 2.1.3-23) | freetype2-hinting-dev (= 2.1.3-23), 
freetype2 (= 2.1.3-23) | freetype2-hinting (= 2.1.3-23), gcc3.3, libgl-dev, 
libpng3 (= 1.2.5-4), libjpeg, x11-dev
+BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, fink (= 
0.17.3-1), freetype219, gcc3.3, libgl-dev, libpng3 (= 1.2.5-4), libjpeg, 
x11-dev
 Replaces: qt, qt2, %N-doc, %N-bin, %N-dev
 Conflicts: qt, qt2
 Provides: %N-bin
@@ -66,8 +66,8 @@
  fi
 
  export QTDIR=`pwd`
- export DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype2/lib:$DYLD_LIBRARY_PATH
- export PATH=$QTDIR/bin:%p/lib/freetype2/bin:$PATH
+ export 
DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype219/lib:$DYLD_LIBRARY_PATH
+ export PATH=$QTDIR/bin:%p/lib/freetype219/bin:$PATH
  export INSTALL_ROOT=
  if [ -f /usr/lib/libresolv.dylib ]; then
LIBRESOLV=-lresolv
@@ -78,8 +78,8 @@
  # we have to force header/lib ordering or things get really wiggy
  # looks ugly, but it's better than patching the source
  echo yes | ./configure \
-   '-I$(QTDIR)/include' '-I%p/lib/freetype2/include/freetype2' 
'-I%p/include/freetype2' \
-   '-L%p/lib/freetype2/lib' '-I/usr/X11R6/include' '-I%p/include' \
+   '-I$(QTDIR)/include' '-I%p/lib/freetype219/include/freetype2' \
+   '-L%p/lib/freetype219/lib' '-I/usr/X11R6/include' '-I%p/include' \
'-L$(QTDIR)/lib' '-L%p/lib' '-L/usr/X11R6/lib' $LIBRESOLV \
-buildkey qt3-jaguar -platform darwin-g++ -xplatform darwin-g++ \
-translationdir '%p/share/qt3/translations' \
@@ -225,7 +225,7 @@
   Suggests: %N-designer, %N-linguist, %N-doc
   Replaces: qt-shlibs, qt, qt3
   Conflicts: qt-shlibs, qt
-  Depends: fink (= 0.17.1-1), freetype2-shlibs (= 2.1.3-23) | 
freetype2-hinting-shlibs (= 2.1.3-23), libgl-shlibs, libpng3-shlibs (= 
1.2.5-4), libjpeg-shlibs, x11-shlibs
+  Depends: fink (= 0.17.1-1), freetype219-shlibs, libgl-shlibs, 
libpng3-shlibs (= 1.2.5-4), libjpeg-shlibs, x11-shlibs
   Shlibs: 
 %p/lib/libeditor.1*.dylib 1.0.0 %n (= 3.3.2-1)
 %p/lib/libqt-mt.3*.dylib 3.0.0 %n (= 3.3.2-1)



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/rangerrick/10.4/crypto/finkinfo bundle-kde-ssl.info,1.1,1.2 kdebase3-ssl.info,1.4,1.5 kdelibs3-ssl.info,1.5,1.6 kdenetwork3.info,1.4,1.5 kgpg.info,1.4,1.5

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/10.4/crypto/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/10.4/crypto/finkinfo

Modified Files:
bundle-kde-ssl.info kdebase3-ssl.info kdelibs3-ssl.info 
kdenetwork3.info kgpg.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: bundle-kde-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.4/crypto/finkinfo/bundle-kde-ssl.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- bundle-kde-ssl.info 28 Jan 2005 04:29:31 -  1.1
+++ bundle-kde-ssl.info 28 Feb 2005 19:40:46 -  1.2
@@ -1,12 +1,12 @@
 Package: bundle-kde-ssl
-Version: 3.3.91
+Version: 3.4.0
 Revision: 21
 Description: KDE - convenience package: KDE 3.4 (SSL support)
 Type: bundle
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-Depends: arts (= 1.3.2-21), kdelibs3-ssl (= %v-21), kdebase3-ssl (= %v-21), 
kdeaccessibility3 (= %v-21), kdeartwork3 (= %v-21), kdeedu3 (= %v-21), 
kdegames3 (= %v-21), kdegraphics3 (= %v-21), kdenetwork3 (= %v-21), kdepim3 
(= %v-21), kdesdk3 (= %v-21), kdetoys3 (= %v-21), kdeutils3 (= %v-21), 
kdewebdev3 (= %v-21), koffice (= 1.3.5-2), kgpg (= %v-1)
-BuildDepends: arts-dev (= 1.3.2-21), kdelibs3-ssl-dev (= %v-21), 
kdebase3-ssl-dev (= %v-21)
+Depends: arts (= 1.4.0-21), kdelibs3-ssl (= %v-21), kdebase3-ssl (= %v-21), 
kdeaccessibility3 (= %v-21), kdeartwork3 (= %v-21), kdeedu3 (= %v-21), 
kdegames3 (= %v-21), kdegraphics3 (= %v-21), kdenetwork3 (= %v-21), kdepim3 
(= %v-21), kdesdk3 (= %v-21), kdetoys3 (= %v-21), kdeutils3 (= %v-21), 
kdewebdev3 (= %v-21), koffice (= 1.3.5-2), kgpg (= %v-1)
+BuildDepends: arts-dev (= 1.4.0-21), kdelibs3-ssl-dev (= %v-21), 
kdebase3-ssl-dev (= %v-21)
 Conflicts: bundle-kde, kdelibs3, kdelibs3-dev, kdebase3, kdebase3-dev
 
 Homepage: http://fink.sourceforge.net/news/kde.php

Index: kgpg.info
===
RCS file: /cvsroot/fink/experimental/rangerrick/10.4/crypto/finkinfo/kgpg.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- kgpg.info   26 Feb 2005 23:02:59 -  1.4
+++ kgpg.info   28 Feb 2005 19:40:46 -  1.5
@@ -1,5 +1,5 @@
 Package: kgpg
-Version: 3.3.92
+Version: 3.4.0
 Revision: 21
 Description: KDE - GnuPG tool
 License: GPL/LGPL
@@ -15,10 +15,11 @@
   nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
   nam-CA: http://www.southofheaven.net/befunk
 
-Source: mirror:kde:unstable/%v/src/kdeutils-%v.tar.bz2
-Source-MD5: 4638a8f5bac946148b636540dc3199b3
-Source2: mirror:custom:kde-admindir-3.4.0-1.tar.bz2
-Source2-MD5: ac6efed46b8236be1ebba54d2ec36d7d
+Source: mirror:kde:unstable/%v/src/kdeutils-%v-rc1.tar.bz2
+Source-MD5: 6730a3777c91a5c42ac968177fed42b2
+SourceDirectory: kdeutils-%v
+Source2: mirror:custom:kde-admindir-3.4.0-2.tar.bz2
+Source2-MD5: 5a2412d931e204b88d18173d043ada9a
 Source2ExtractDir: kdeutils-%v
 
 PatchScript: 

Index: kdenetwork3.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.4/crypto/finkinfo/kdenetwork3.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- kdenetwork3.info26 Feb 2005 23:02:59 -  1.4
+++ kdenetwork3.info28 Feb 2005 19:40:46 -  1.5
@@ -1,5 +1,5 @@
 Package: kdenetwork3
-Version: 3.3.92
+Version: 3.4.0
 Revision: 21
 Description: KDE - networking
 License: GPL/LGPL
@@ -15,10 +15,11 @@
   nam-US: http://astrange.ithinksw.net/~astrange/ranger-fink
   nam-CA: http://www.southofheaven.net/befunk
 
-Source: mirror:kde:unstable/%v/src/kdenetwork-%v.tar.bz2
-Source-MD5: 11128438407210ca58687ba183e0ab30
-Source2: mirror:custom:kde-admindir-3.4.0-1.tar.bz2
-Source2-MD5: ac6efed46b8236be1ebba54d2ec36d7d
+Source: mirror:kde:unstable/%v/src/kdenetwork-%v-rc1.tar.bz2
+Source-MD5: 6730a3777c91a5c42ac968177fed42b2
+SourceDirectory: kdenetwork-%v
+Source2: mirror:custom:kde-admindir-3.4.0-2.tar.bz2
+Source2-MD5: 5a2412d931e204b88d18173d043ada9a
 Source2ExtractDir: kdenetwork-%v
 
 PatchScript: 

Index: kdebase3-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.4/crypto/finkinfo/kdebase3-ssl.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- kdebase3-ssl.info   26 Feb 2005 23:02:59 -  1.4
+++ kdebase3-ssl.info   28 Feb 2005 19:40:46 -  1.5
@@ -5,9 +5,8 @@
 License: GPL/LGPL
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-AddShlibDeps: true
-Depends: %N-shlibs (= %v-%r), x11, xfontpath
-BuildDepends: arts-dev (= 1.3.92-21), audiofile, autoconf2.5, automake1.9, 
cctools (= 446-1) | cctools-single-module, cups-dev, esound, fink (= 
0.20.2.1-1), freetype2 (= 2.1.3-23) | freetype2-hinting (= 2.1.3-23), 
kdelibs3-ssl-dev (= %v-21), gettext-dev, glib2 (= 2.2.1-4), glib2-dev (= 
2.2.1-4), 

experimental/rangerrick/common/crypto/finkinfo bundle-kde-ssl.info,1.21,1.22 kdebase3-ssl.info,1.71,1.72 kdelibs3-ssl.info,1.82,1.83 kdenetwork3.info,1.46,1.47 kgpg.info,1.7,1.8 kgpg.patch,1.1,NONE

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/common/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/common/crypto/finkinfo

Modified Files:
bundle-kde-ssl.info kdebase3-ssl.info kdelibs3-ssl.info 
kdenetwork3.info kgpg.info 
Removed Files:
kgpg.patch 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: kdelibs3-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/common/crypto/finkinfo/kdelibs3-ssl.info,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- kdelibs3-ssl.info   26 Feb 2005 23:03:00 -  1.82
+++ kdelibs3-ssl.info   28 Feb 2005 19:40:47 -  1.83
@@ -5,9 +5,8 @@
 License: GPL/LGPL
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-AddShlibDeps: true
-Depends: %N-shlibs (= %v-%r), aspell, default-icon-theme (= 0.5-2), x11
-BuildDepends: arts-dev (= 1.3.92-1), aspell-dev, audiofile, autoconf2.5, 
automake1.9, bzip2-dev, cctools (= 446-1) | cctools-single-module, cups-dev, 
dlcompat-dev (= 20030629-5), doxygen (= 1.3.4-1), esound, fink (= 
0.20.2.1-1), flex-devel, freetype2 (= 2.1.3-23) | freetype2-hinting (= 
2.1.3-23), gettext-dev, glib2 (= 2.2.1-4), glib2-dev (= 2.2.1-4), libart2, 
libiconv-dev, libidn (= 0.5.1-1), libjpeg, libogg, libpng3 (= 1.2.5-4), 
libpoll (= 1.1-1), libtiff, libvorbis0, libxml2, libxslt, libmad, 
mdnsresponder-dev, openexr-dev, openslp-ssl-dev | openslp-dev, openssl097-dev, 
pcre, pcre-bin, qt3 (= 3.3.3-7), qt3-doc, x11-dev
+Depends: %N-shlibs (= %v-%r), aspell, default-icon-theme (= 0.5-2), 
dlcompat-shlibs (= 20030629-5), libart2-shlibs, libjpeg-shlibs, libpng3-shlibs 
(= 1.2.5-4), pcre-shlibs, qt3-shlibs (= 3.3.3-7), x11
+BuildDepends: arts-dev (= 1.3.92-1), aspell-dev, audiofile, autoconf2.5, 
automake1.9, bzip2-dev, cctools (= 446-1) | cctools-single-module, cups-dev, 
dlcompat-dev (= 20030629-5), doxygen (= 1.3.4-1), esound, fink (= 
0.20.2.1-1), flex-devel, freetype219, gettext-dev, glib2 (= 2.2.1-4), 
glib2-dev (= 2.2.1-4), libart2, libiconv-dev, libidn (= 0.5.1-1), libjpeg, 
libogg, libpng3 (= 1.2.5-4), libpoll (= 1.1-1), libtiff, libvorbis0, libxml2, 
libxslt, libmad, mdnsresponder-dev, openexr-dev, openslp-ssl-dev | openslp-dev, 
openssl097-dev, pcre, pcre-bin, qt3 (= 3.3.3-7), qt3-doc, x11-dev
 Conflicts: bundle-kde, kdelibs3, kdelibs3-shlibs, kdelibs3-dev, kdebase3, 
kdebase3-shlibs, kdebase3-dev
 BuildConflicts: freetype, freetype-hinting
 Replaces: kdelibs3, kdelibs3-ssl-dev, kdelibs3-dev, keramik, 
kde-icons-crystal, conectiva-crystal, kdeartwork3, kdebase3, kdebase3-ssl, 
kbabel ( 3.1.90-1), korganizer ( 3.3.1-1), kdepim3-common ( %v-1), 
kdepim3 ( %v-1)
@@ -21,8 +20,8 @@
 Source: mirror:kde:unstable/%v/src/kdelibs-%v-rc1.tar.bz2
 Source-MD5: 87c394ea9da775d2be7be7d3f7fd56ec
 SourceDirectory: kdelibs-%v
-Source2: mirror:custom:kde-admindir-3.4.0-1.tar.bz2
-Source2-MD5: ac6efed46b8236be1ebba54d2ec36d7d
+Source2: mirror:custom:kde-admindir-3.4.0-2.tar.bz2
+Source2-MD5: 5a2412d931e204b88d18173d043ada9a
 Source2ExtractDir: kdelibs-%v
 
 PatchScript: 
@@ -78,8 +77,7 @@
 SplitOff: 
   Package: %N-shlibs
   Description: KDE - essential shared libraries
-  AddShlibDeps: true
-  Depends: x11
+  Depends: arts-shlibs (= 1.3.92-1), aspell-shlibs, audiofile-shlibs, 
bzip2-shlibs, dlcompat-shlibs (= 20030629-5), esound-shlibs, 
freetype219-shlibs, gettext, glib2-shlibs (= 2.2.1-4), libart2-shlibs, 
libiconv, libidn-shlibs (= 0.5.1-1), libjpeg-shlibs, libmad-shlibs, 
libogg-shlibs, libpng3-shlibs (= 1.2.5-4), libpoll-shlibs (= 1.1-1), 
libtiff-shlibs, libvorbis0-shlibs, libxml2-shlibs (= 2.5.2-1), libxslt-shlibs 
(= 1.0.27-1), mdnsresponder-shlibs, openssl097-shlibs, pcre-shlibs, qt3-shlibs 
(= 3.3.3-7), x11
   Conflicts: bundle-kde, kdelibs3, kdelibs-shlibs, kdelibs3-dev, kdebase3, 
kdebase3-shlibs, kdebase3-dev
   Replaces: kdelibs3, kdelibs3-ssl, kdelibs3-shlibs, kdepim3-common ( 
3.3.1-1)
   Recommends: %N (= %v-%r)
@@ -190,7 +188,6 @@
 SplitOff2: 
   Package: %N-dev
   Description: KDE - essential development libraries and headers
-  AddShlibDeps: true
   Depends: %N-shlibs (= %v-%r), %N (= %v-%r)
   Conflicts: bundle-kde, kdelibs3, kdelibs-shlibs, kdelibs3-dev, kdebase3, 
kdebase3-shlibs, kdebase3-dev
   Replaces: kdelibs3, kdelibs3-dev, kdelibs3-ssl, kde-icons-crystal, keramik, 
kdeartwork3, kdebase3-dev, kdebase3-ssl-dev, kdepim3-dev ( 3.3.1-1)

--- kgpg.patch DELETED ---

Index: kdebase3-ssl.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/common/crypto/finkinfo/kdebase3-ssl.info,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -d -r1.71 -r1.72
--- kdebase3-ssl.info   26 Feb 2005 23:03:00 -  1.71
+++ kdebase3-ssl.info   28 Feb 2005 19:40:47 -  1.72
@@ -5,9 +5,8 @@
 License: GPL/LGPL
 Maintainer: Benjamin Reed [EMAIL PROTECTED]
 
-AddShlibDeps: true
-Depends: %N-shlibs (= %v-%r), 

experimental/rangerrick/10.3/main/finkinfo/x11 qt3.info,1.27,1.28

2005-02-28 Thread Benjamin Reed
Update of /cvsroot/fink/experimental/rangerrick/10.3/main/finkinfo/x11
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15758/10.3/main/finkinfo/x11

Modified Files:
qt3.info 
Log Message:
kde 3.4.0 rc1, updated for freetype 2.1.9 package

Index: qt3.info
===
RCS file: 
/cvsroot/fink/experimental/rangerrick/10.3/main/finkinfo/x11/qt3.info,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- qt3.info28 Jan 2005 04:29:31 -  1.27
+++ qt3.info28 Feb 2005 19:40:46 -  1.28
@@ -19,7 +19,7 @@
 Description: Cross-Platform GUI application framework
 Depends: %N-shlibs (= %v-%r), %N-designer (= %v-%r), %N-linguist (= %v-%r), 
%N-doc (= %v-%r), pkgconfig
 Suggests: libpng3, libjpeg, %N-mysql (= %v-%r), %N-postgresql (= %v-%r)
-BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, fink (= 
0.17.3-1), freetype2-dev (= 2.1.3-23) | freetype2-hinting-dev (= 2.1.3-23), 
freetype2 (= 2.1.3-23) | freetype2-hinting (= 2.1.3-23), gcc3.3, libgl-dev, 
libpng3 (= 1.2.5-4), libjpeg, x11-dev
+BuildDepends: cctools (= 446) | cctools-single-module, cups-dev, fink (= 
0.17.3-1), freetype219, gcc3.3, libgl-dev, libpng3 (= 1.2.5-4), libjpeg, 
x11-dev
 Replaces: qt, qt2, %N-doc, %N-bin, %N-dev
 Conflicts: qt, qt2
 Provides: %N-bin
@@ -66,8 +66,8 @@
  fi
 
  export QTDIR=`pwd`
- export DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype2/lib:$DYLD_LIBRARY_PATH
- export PATH=$QTDIR/bin:%p/lib/freetype2/bin:$PATH
+ export 
DYLD_LIBRARY_PATH=$QTDIR/lib:%p/lib/freetype219/lib:$DYLD_LIBRARY_PATH
+ export PATH=$QTDIR/bin:%p/lib/freetype219/bin:$PATH
  export INSTALL_ROOT=
  if [ -f /usr/lib/libresolv.dylib ]; then
LIBRESOLV=-lresolv
@@ -78,8 +78,8 @@
  # we have to force header/lib ordering or things get really wiggy
  # looks ugly, but it's better than patching the source
  echo yes | ./configure \
-   '-I$(QTDIR)/include' '-I%p/lib/freetype2/include/freetype2' 
'-I%p/include/freetype2' \
-   '-L%p/lib/freetype2/lib' '-I/usr/X11R6/include' '-I%p/include' \
+   '-I$(QTDIR)/include' '-I%p/lib/freetype219/include/freetype2' \
+   '-L%p/lib/freetype219/lib' '-I/usr/X11R6/include' '-I%p/include' \
'-L$(QTDIR)/lib' '-L%p/lib' '-L/usr/X11R6/lib' $LIBRESOLV \
-buildkey qt3-jaguar -platform darwin-g++ -xplatform darwin-g++ \
-translationdir '%p/share/qt3/translations' \
@@ -225,7 +225,7 @@
   Suggests: %N-designer, %N-linguist, %N-doc
   Replaces: qt-shlibs, qt, qt3
   Conflicts: qt-shlibs, qt
-  Depends: fink (= 0.17.1-1), freetype2-shlibs (= 2.1.3-23) | 
freetype2-hinting-shlibs (= 2.1.3-23), libgl-shlibs, libpng3-shlibs (= 
1.2.5-4), libjpeg-shlibs, x11-shlibs
+  Depends: fink (= 0.17.1-1), freetype219-shlibs, libgl-shlibs, 
libpng3-shlibs (= 1.2.5-4), libjpeg-shlibs, x11-shlibs
   Shlibs: 
 %p/lib/libeditor.1*.dylib 1.0.0 %n (= 3.3.2-1)
 %p/lib/libqt-mt.3*.dylib 3.0.0 %n (= 3.3.2-1)



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/libs gc.info,1.6,1.7

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1680

Modified Files:
gc.info 
Log Message:
new upstream version


Index: gc.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/gc.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- gc.info 7 Jan 2005 23:15:52 -   1.6
+++ gc.info 28 Feb 2005 22:15:32 -  1.7
@@ -1,10 +1,9 @@
 Package: gc
-Version: 6.3
-Revision: 0.alpha6.2-3
+Version: 6.4
+Revision: 1
 BuildDependsOnly: true
-Source: 
http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc%valpha6.tar.gz
-Source-MD5: e77ff95a156bd3313a0e5226580997d0
-BuildDepends: gcc3.3
+Source: http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc%v.tar.gz
+Source-MD5: ef03495e980b834a99c0e27eedaa546e
 Depends: %N-shlibs (= %v-%r)
 Conflicts: gc-static
 Replaces: gc-static
@@ -12,10 +11,6 @@
 ConfigureParams: --enable-cplusplus
 NoSetCPPFLAGS: true
 SetCFLAGS: -fno-common -DGC_DARWIN_THREADS -DLARGE_CONFIG -g -UNO_DEBUGGING 
-I%p/include
-CompileScript: 
- export CC=gcc-3.3; export CXX=g++-3.3; ./configure %c
- make CC=gcc-3.3 CXX=g++-3.3
-
 InstallScript: 
  make install DESTDIR=%d
  mkdir -p %i/share/doc



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/libs/perlmods cgi-compress-gzip-pm.info,1.1,1.2

2005-02-28 Thread Chris Dolan
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11192

Modified Files:
cgi-compress-gzip-pm.info 
Log Message:
CGI::Compress::Gzip
 * Update for upstream v0.19
 * Remove 5.8.0 from the variant list since I can no longer test that version


Index: cgi-compress-gzip-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/perlmods/cgi-compress-gzip-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cgi-compress-gzip-pm.info   20 Dec 2004 05:15:36 -  1.1
+++ cgi-compress-gzip-pm.info   28 Feb 2005 22:51:05 -  1.2
@@ -1,20 +1,18 @@
 Info2: 
 Package: cgi-compress-gzip-pm%type_pkg[perl]
-Version: 0.17
+Version: 0.19
 Revision: 1
-Type: perl (5.8.0 5.8.1 5.8.4)
+# Can't do 5.8.6 until io-zlib-pm supports it
+Type: perl (5.8.1 5.8.4)
 Description: CGI with automatically compressed output
 License: GPL
 Maintainer: Chris Dolan [EMAIL PROTECTED]
 Homepage: http://search.cpan.org/dist/CGI-Compress-Gzip
-
 Depends: perl%type_pkg[perl]-core, io-zlib-pm%type_pkg[perl]
-
 Source: mirror:cpan:authors/id/C/CL/CLOTHO/CGI-Compress-Gzip-%v.tgz
-Source-MD5: 6bea0617aa8ea5e0040817fe0bcc28d5
-
+Source-MD5: b34cace77a59fbb85a24ce6c7c40596f
 UpdatePOD: true
-DocFiles: ChangeLog MANIFEST README LICENSE
+DocFiles: ChangeLog MANIFEST META.yml README LICENSE
 DescDetail: 
  CGI::Compress::Gzip extends the CGI infrastructure to compresses
  output, whenever possible.  It uses IO::Zlib (a filehandle wrapper
@@ -28,15 +26,15 @@
  implementation offered by the Apache::Compress or Apache::GzipChain
  modules, although those offer less control to the programmer.
 
-
-
+DescPackaging: 
+ Chris Dolan is both the maintainer and the upstream author.
+
 Splitoff: 
  Package: %N-man
  Depends: %N (= %v-%r)
- Conflicts: %{Ni}580-man, %{Ni}581-man, %{Ni}584-man
- Replaces: %{Ni}580-man, %{Ni}581-man, %{Ni}584-man
+ Conflicts: %{Ni}581-man, %{Ni}584-man
+ Replaces: %{Ni}581-man, %{Ni}584-man
  Files: share/man
- DocFiles: ChangeLog MANIFEST README LICENSE
+ DocFiles: ChangeLog MANIFEST META.yml README LICENSE
 
-
 



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.2-gcc3.3/unstable/main/finkinfo/base fink.info,1.23,1.24

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19358

Modified Files:
fink.info 
Log Message:
new version


Index: fink.info
===
RCS file: 
/cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/base/fink.info,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- fink.info   24 Feb 2005 02:27:32 -  1.23
+++ fink.info   28 Feb 2005 23:18:16 -  1.24
@@ -1,5 +1,5 @@
 Package: fink
-Version: 0.24.0
+Version: 0.24.1
 Revision: 1
 Depends: base-files
 Suggests: 
@@ -11,7 +11,7 @@
 
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 558d575df9e9d112f617928bbe8e905e
+Source-MD5: f63ca1421b2c3b25e38730a33262765b
 CompileScript: 
  make test
  ./setup.sh %p



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/base fink.info,1.25,1.26

2005-02-28 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19430

Modified Files:
fink.info 
Log Message:
new version


Index: fink.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/base/fink.info,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- fink.info   24 Feb 2005 02:27:58 -  1.25
+++ fink.info   28 Feb 2005 23:18:41 -  1.26
@@ -1,5 +1,5 @@
 Package: fink
-Version: 0.24.0
+Version: 0.24.1
 Revision: 11
 Depends: base-files
 Suggests: 
@@ -10,7 +10,7 @@
 
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 558d575df9e9d112f617928bbe8e905e
+Source-MD5: f63ca1421b2c3b25e38730a33262765b
 CompileScript: 
  make test
  ./setup.sh %p



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci ccp4.info,1.24,1.25 ccp4.patch,1.14,1.15

2005-02-28 Thread William Scott
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6023

Modified Files:
ccp4.info ccp4.patch 
Log Message:
ccp4 update to current patch release 10.3 unstable sci

Index: ccp4.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/ccp4.info,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- ccp4.info   18 Jan 2005 05:51:32 -  1.24
+++ ccp4.info   1 Mar 2005 00:20:35 -   1.25
@@ -1,8 +1,8 @@
 Package: ccp4
 Version: 5.0.2
-Revision: 12
+Revision: 13
 #
-#  Revision 12 includes these post-release patches obtained from CCP4 web site 
Jan. 17, 2005.
+#  Revision 13 includes these post-release patches obtained from CCP4 web site 
Feb 27, 2005.
 #
 #  CCP4_utils-25Aug2004.tcl.diff  cmtzlib_f-10Aug2004.c.diff  
lsqkab-9Aug2004.f.diff
 #  abs.f-18Aug2004.f  dmmulti-12Aug2004.f.diff
refmac5-13Aug2004.tcl.diff
@@ -10,6 +10,7 @@
 #  pdb_utils-17Sep2004.tclmaprot-20Sep2004.f  
mapmask-20Sep2004.f
 #  ccp4i/templates/mapmask.comccp4i mail interface fixed to work with OSX 
Mail.app
 #  autosnd-15Nov2004.fcmtzlib_f-24Dec2004.c.diff  
cmtzlib_f-14Jan2005.c
+#  ncsref-26Jan2005.script.diff
 # 
 #
 Source: ftp://ftp.%n.ac.uk/%n/current/packed/%n-%v.tar.gz
@@ -81,13 +82,14 @@
 perl -pi.bak -e 's|\$TEMPXTAL|%p/share/xtal|g' include/%n.setup-sh  # 
install prefix
 perl -pi.bak -e 's|\$TEMPXTAL|%p/share/xtal|g' include/%n.setup # 
install prefix
 #
- mkdir -p %i/share/xtal/%n-%v
+ mkdir -p %i/share/xtal/%n-%v/help
  mkdir -p %i/share/man/man1
 # set up man pages in a fink-compliant manner
 cd $PWD/doc
 mv rasmol.doc eightbit_rasmol.doc
 foreach docfilepage ( *.doc )
  cp ${docfilepage}  %i/share/man/man1/${docfilepage:r}.1
+ cp ${docfilepage}  %i/share/xtal/%n-%v/help/${docfilepage:r}
 end
 # back to build directory
  cd ..
@@ -128,7 +130,7 @@
 License agreement is part of configure file -- print out form and mail in,
 additional comments at http://chemistry.ucsc.edu/~wgscott/xtal/page5.html
 CCP4 files will be installed under /sw/share/xtal/ccp4-5.0.2
-This revision includes all available CCP4 patches as of Jan. 17, 2005,
+This revision includes all available CCP4 patches as of Feb. 27, 2005,
 and new bash and zsh command completions specific to ccp4.
 
 DocFiles: README CHANGES COPYING PROBLEMS INSTALL INSTALL.html INSTALL.ps 
ccp4i_installation.html academic_software_licence.pdf  
academic_software_licence.ps.gz  academic_software_licence.rtf

Index: ccp4.patch
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/ccp4.patch,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- ccp4.patch  18 Jan 2005 05:51:32 -  1.14
+++ ccp4.patch  1 Mar 2005 00:20:35 -   1.15
@@ -180,6 +180,18 @@
  O_MAPMAN  _text mapman
  MAPMAN_MAXSIZE  _positiveint  4194304
  QUANTA_MBKALL _text mbkall
+diff -ruN ccp4-5.0.2-orig/ccp4i/scripts/ncsref.script 
ccp4-5.0.2/ccp4i/scripts/ncsref.script
+--- ccp4-5.0.2-orig/ccp4i/scripts/ncsref.script2004-01-26 
03:18:50.0 -0800
 ccp4-5.0.2/ccp4i/scripts/ncsref.script 2005-02-14 13:15:05.0 
-0800
+@@ -135,7 +135,7 @@
+ DeleteFile $HKLTMP
+ 
+   }  else {
+-
++set TMPPDB $XYZIN
+ set status [Execute [BinPath cad] HKLIN1 $HKLIN HKLOUT $CURRENT_MTZ  \
+ $cad0_com program_status report ]
+ 
 diff -ruN ccp4-5.0.2-orig/ccp4i/src/CCP4_utils.tcl 
ccp4-5.0.2/ccp4i/src/CCP4_utils.tcl
 --- ccp4-5.0.2-orig/ccp4i/src/CCP4_utils.tcl   2004-05-26 07:43:11.0 
-0700
 +++ ccp4-5.0.2/ccp4i/src/CCP4_utils.tcl2004-09-14 13:53:40.0 
-0700



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci coot.info,1.24,1.25

2005-02-28 Thread William Scott
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6647

Modified Files:
coot.info 
Log Message:
coot version update 10.3 unstable sci

Index: coot.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/coot.info,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- coot.info   21 Jan 2005 04:01:05 -  1.24
+++ coot.info   1 Mar 2005 00:22:06 -   1.25
@@ -1,12 +1,12 @@
 Package:coot
-Version: 0.0.27
-Revision: 1
+Version: 0.0.29
+Revision: 2
 BuildDepends: clipper (= cvs-14-nov-2003-8), glib, gtk+2, glut, gtkglarea, 
guile16, guile16-dev, gsl, libglade2,  gtk-canvas (= 0.1.1-20), libart2 (= 
2.3.16-2), libart2-shlibs (= 2.3.16-2)
 Depends: clipper(= cvs-14-nov-2003-8), guile16-shlibs, gtk-canvas (= 
0.1.1-20), gsl-shlibs, libglade2-shlibs, guile16-gtk, guile16-www, guile16-gui, 
guile16-goosh (= 1.3-2), ssmlib, guile16
 BuildDependsOnly: false
 NoSetLDFLAGS: true
 Source: http://www.ysbl.york.ac.uk/~emsley/software/%n-%v.tar.gz
-Source-MD5: 415492e1ff02710849b6ffd2201a4a3c 
+Source-MD5: fda7faa3bf2ee1ae7d6f3c65a2c7999e 
 Source2: 
http://www.ysbl.york.ac.uk/~emsley/software/extras/refmac-lib-data-monomers.tar.gz
 Source2-MD5: c7aa4ee8861d7e82df985fe2eb39c289
 Source3: 
http://www.ysbl.york.ac.uk/~emsley/software/extras/reference-structures.tar.gz



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/languages cmucl.info,1.4,1.5

2005-02-28 Thread Lars Rosengreen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14793

Modified Files:
cmucl.info 
Log Message:
new upstream version (200502); lesstif -- openmotif3


Index: cmucl.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/languages/cmucl.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cmucl.info  24 Jan 2005 04:47:46 -  1.4
+++ cmucl.info  1 Mar 2005 00:55:08 -   1.5
@@ -1,18 +1,18 @@
 Package: cmucl
-Version: 19a+200501
+Version: 19a+200502
 Revision: 1
 Description: ANSI Common Lisp implementation
 License: BSD
 Maintainer: Lars Rosengreen [EMAIL PROTECTED]
 
-Depends: x11,  lesstif-shlibs
-BuildDepends: gcc3.1, x11-dev, lesstif
+Depends: x11,  openmotif3-shlibs, openmotif3-bin
+BuildDepends: gcc3.1, x11-dev, openmotif3
 
-Source: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/01/%n-src-2005-01.tar.bz2
-Source2: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/01/%n-2005-01-ppc-darwin.tar.bz2
+Source: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/02/%n-src-2005-02.tar.bz2
+Source2: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/02/%n-2005-02-ppc-darwin.tar.bz2
 
-Source-MD5: e934f263abbef4bdf2b705a1bc5776da
-Source2-MD5: 14a813d17eb16d205128fc73193a2fce 
+Source-MD5: 401e9a52ff0b8337caab5fe990c75f50
+Source2-MD5: 2ab6e15458f482ccc553959645530551 
 
 SourceDirectory: .
 
@@ -43,6 +43,7 @@
   echo 'CMUCLLIB=%p/lib/%n/lib exec %p/lib/%n/lisp.bin $@'  
release/bin/lisp
   chmod 755 release/bin/lisp
   cp -Rp release/* %i
+  ln -s %p/bin/lisp %i/bin/cmucl
 
 
 DocFiles: LICENSE



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/devel slime.info,1.5,1.6 slime.patch,1.2,1.3

2005-02-28 Thread Lars Rosengreen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19788

Modified Files:
slime.info slime.patch 
Log Message:
switch to a cvs snapshot.  recent sbcl no longer works with 1.0



Index: slime.patch
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel/slime.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- slime.patch 10 Sep 2004 05:42:25 -  1.2
+++ slime.patch 1 Mar 2005 01:14:24 -   1.3
@@ -1,13 +1,13 @@
 diff -Naur slime.orig/fink/50slime-start.el slime/fink/50slime-start.el
 --- slime.orig/fink/50slime-start.el   1969-12-31 16:00:00.0 -0800
-+++ slime/fink/50slime-start.el2004-07-26 15:45:55.0 -0700
 slime/fink/50slime-start.el2005-02-28 17:00:10.0 -0800
 @@ -0,0 +1,3 @@
 +(require 'slime)
 +(add-hook 'lisp-mode-hook (lambda () (slime-mode t)))
 +(add-hook 'inferior-lisp-mode-hook (lambda () (inferior-slime-mode t)))
 diff -Naur slime.orig/fink/emacsen-install slime/fink/emacsen-install
 --- slime.orig/fink/emacsen-install1969-12-31 16:00:00.0 -0800
-+++ slime/fink/emacsen-install 2004-08-03 12:10:25.0 -0700
 slime/fink/emacsen-install 2005-02-28 17:00:10.0 -0800
 @@ -0,0 +1,44 @@
 +#! /bin/sh
 +# @PREFIX@/lib/emacsen-common/packages/install/slime
@@ -55,7 +55,7 @@
 +
 diff -Naur slime.orig/fink/emacsen-remove slime/fink/emacsen-remove
 --- slime.orig/fink/emacsen-remove 1969-12-31 16:00:00.0 -0800
-+++ slime/fink/emacsen-remove  2004-07-18 12:28:00.0 -0700
 slime/fink/emacsen-remove  2005-02-28 17:00:10.0 -0800
 @@ -0,0 +1,18 @@
 +#! /bin/sh
 +# @PREFIX@/lib/emacsen-common/packages/remove/slime
@@ -75,32 +75,3 @@
 +  echo remove/${PACKAGE}: Skipping unsupported flavor ${FLAVOR}
 +  ;;
 +esac
-diff -Naur slime.orig/swank-cmucl.lisp slime/swank-cmucl.lisp
 slime.orig/swank-cmucl.lisp2004-09-09 15:37:50.0 -0700
-+++ slime/swank-cmucl.lisp 2004-09-09 15:41:55.0 -0700
-@@ -68,8 +68,10 @@
- ;;; know for sure what you'll be interrupting. Both `:FD-HANDLER' and
- ;;; `:SPAWN' are reasonable alternatives.
- 
-+;;; lrosengreen fink: in any case use :FD-HANDER because CMUCL is
-+;;; not interrupt safe rtoy on #lisp
- (defimplementation preferred-communication-style ()
--  :sigio)
-+  :fd-handler)
- 
- (defimplementation create-socket (host port)
-   (ext:create-inet-listener port :stream
-diff -Naur slime.orig/swank.lisp slime/swank.lisp
 slime.orig/swank.lisp  2004-09-09 15:25:17.0 -0700
-+++ slime/swank.lisp   2004-09-09 15:35:45.0 -0700
-@@ -269,7 +269,9 @@
-   When non-nil redirect Lisp standard I/O to Emacs.
- Redirection is done while Lisp is processing a request for Emacs.)
- 
--(defvar *use-dedicated-output-stream* t)
-+;;; lrosengreen fink: needs to be nil for cmucl ppc/darwin --
-+;;; otherwise throws errors binding to port 0 on startup.
-+(defvar *use-dedicated-output-stream* #+(and cmu ppc) nil #-(and cmu ppc) t)
- (defvar *communication-style* (preferred-communication-style))
- (defvar *log-events* nil)
- 

Index: slime.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel/slime.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- slime.info  19 Sep 2004 05:03:44 -  1.5
+++ slime.info  1 Mar 2005 01:14:24 -   1.6
@@ -1,18 +1,17 @@
 Package: slime
-Version: 1.0
-Revision: 3
+Version: 1.0+20050228
+Revision: 1
 Description: Extends Emacs support for Common Lisp
 License: GPL
 Maintainer: Lars Rosengreen [EMAIL PROTECTED]
 
-
-Depends: emacsen,  sbcl (= 0.8.12) | openmcl (= 0.14.2-p1) | cmucl (= 
19a+200409) |  clisp (= 2.32)
-
+Depends: emacsen,  sbcl (= 0.8.19) | openmcl (= 0.14.2-p1) | cmucl (= 
19a+200501) |  clisp (= 2.33.2)
 
 BuildDepends: texinfo
 
-Source: http://www.common-lisp.net/project/%n/%n-%v.tar.gz
-Source-MD5: 90666e8860d8d26e3cfa36365544ffcf
+Source: http://www.margay.org/files/%n/%n-%v.tar.bz2
+Source-MD5: d3ace03fa3b5297b9a1ee36551b84756
+SourceDirectory: %n
 
 PatchScript: sed 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1
 
@@ -61,12 +60,13 @@
 
 
 DescUsage: 
-Make sure Emacs' `inferior-lisp-program' is set to a compatible version of
-lisp by including something like this in your .emacs file:
+
+Make sure Emacs' `inferior-lisp-program' is set to a compatible lisp
+implementation lisp by including something like this in your .emacs file: 
 
   (setq inferior-lisp-program sbcl)
 
-Currently, SBCL, OpenMCL, CMUCL, CLISP, Lispworks, Allegro CL, and ABCL
+Currently, sbcl, openmcl, cmucl, clisp, lispworks, allegro cl, and abcl
 are supported to varying degrees.
 
 Use `M-x slime' in Emacs to start slime and connect to a supported Common Lisp
@@ -83,10 +83,10 @@
 
 
 DescPackaging: 
-slime reads

dists/10.3/unstable/main/finkinfo/languages sbcl.info,1.16,1.17

2005-02-28 Thread Lars Rosengreen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11963

Modified Files:
sbcl.info 
Log Message:
new upstream (0.8.20).  gcc 3.1 no longer required.



Index: sbcl.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/languages/sbcl.info,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- sbcl.info   26 Jan 2005 22:22:43 -  1.16
+++ sbcl.info   1 Mar 2005 04:27:59 -   1.17
@@ -1,5 +1,5 @@
 Package: sbcl
-Version: 0.8.19
+Version: 0.8.20
 Revision: 1
 Description: ANSI Common Lisp implementation
 License: BSD
@@ -10,13 +10,13 @@
 # need to be updated by hand when moving to a new version of the
 # bootstap binary
 
-BuildDepends: gcc3.1, texinfo (= 4.6)
+BuildDepends: texinfo (= 4.6)
 
 Recommends: gnupg | gnupg-idea | gnupg-testing
 
 Source: mirror:sourceforge:%n/%n-%v-source.tar.bz2
 Source2: mirror:sourceforge:%n/%n-0.8.17-powerpc-darwin-binary.tar.bz2
-Source-MD5: 5f1fad48bc9136e3225f55097dd3d306
+Source-MD5: 7107b31b2408673c56729825ee92a8e6
 Source2-MD5: 8e2eadf069bd14be6d8391e67938f192
 
 SourceDirectory: %n-%v



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/graphics dia.info,1.13,1.14

2005-02-28 Thread Hisashi Todd Fujinaka
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26838

Modified Files:
dia.info 
Log Message:
Fix depends for libxml2.

Index: dia.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/graphics/dia.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- dia.info28 Feb 2005 03:21:11 -  1.13
+++ dia.info1 Mar 2005 05:25:40 -   1.14
@@ -1,9 +1,9 @@
 Package: dia
 Version: 0.94
-Revision: 1
+Revision: 2
 GCC: 3.3
-Depends: orbit2-shlibs, libart2-shlibs, atk1-shlibs, audiofile-shlibs, 
libbonobo2-shlibs, bonobo-activation2-shlibs, libbonoboui2-shlibs, 
esound-shlibs, gconf2-shlibs, gtk+2-shlibs, gdk-pixbuf-shlibs, glib2-shlibs, 
libgnome2-shlibs, libgnomecanvas2-shlibs, libgnomeui2-shlibs, gnome-vfs2-shlibs 
| gnome-vfs2-ssl-shlibs, libiconv, gettext, libjpeg-shlibs, pango1-xft2-shlibs, 
libpng3-shlibs, popt-shlibs, libxml2-shlibs, scrollkeeper, gnome-keyring-shlibs
-BuildDepends: orbit2-dev, libart2, atk1, audiofile, libbonobo2-dev, 
bonobo-activation2, libbonoboui2, esound, gconf2-dev, glib2-dev, gtk+2-dev, 
gdk-pixbuf, libgnome2-dev, libgnomecanvas2-dev, libgnomeui2-dev, gnome-vfs2-dev 
| gnome-vfs2-ssl-dev, libjpeg, pango1-xft2-dev, libpng3, popt, libxml2-bin, 
gnome-keyring-dev
+Depends: orbit2-shlibs, libart2-shlibs, atk1-shlibs, audiofile-shlibs, 
libbonobo2-shlibs, bonobo-activation2-shlibs, libbonoboui2-shlibs, 
esound-shlibs, gconf2-shlibs, gtk+2-shlibs, gdk-pixbuf-shlibs, glib2-shlibs, 
libgnome2-shlibs, libgnomecanvas2-shlibs, libgnomeui2-shlibs, gnome-vfs2-shlibs 
| gnome-vfs2-ssl-shlibs, libiconv, gettext, libjpeg-shlibs, pango1-xft2-shlibs, 
libpng3-shlibs, popt-shlibs, libxml2-bin, libxml2-shlibs, scrollkeeper, 
gnome-keyring-shlibs
+BuildDepends: orbit2-dev, libart2, atk1, audiofile, libbonobo2-dev, 
bonobo-activation2, libbonoboui2, esound, gconf2-dev, glib2-dev, gtk+2-dev, 
gdk-pixbuf, libgnome2-dev, libgnomecanvas2-dev, libgnomeui2-dev, gnome-vfs2-dev 
| gnome-vfs2-ssl-dev, libjpeg, pango1-xft2-dev, libpng3, popt, libxml2, 
gnome-keyring-dev
 Source: gnome
 Source-MD5: d2afdc10f55df29314250d98dbfd7a79
 NoSetCPPFLAGS: true



---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595alloc_id=14396op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits