[cvs] dists/10.4/unstable/crypto/finkinfo ldid.patch, NONE, 1.1 ldid.info, 1.1, 1.2

2009-06-03 Thread Matthias Ringwald
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14608

Modified Files:
ldid.info 
Added Files:
ldid.patch 
Log Message:
fix ldid for ppc

Index: ldid.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/ldid.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ldid.info   2 Jun 2009 20:34:23 -   1.1
+++ ldid.info   3 Jun 2009 06:13:42 -   1.2
@@ -1,10 +1,11 @@
 Package: ldid
 Version: 1.0.476
-Revision: 1
+Revision: 2
 
 Maintainer: Matthias Ringwald frec...@users.sf.net
 Source: http://www.telesphoreo.org/export/613/trunk/data/ldid/ldid-%v.tgz
 Source-MD5: 734bdf1ba4ddead9077e845436948df1
+Patch: %n.patch
 
 CompileScript: 
 g++ -I . -o util/ldid{,.cpp} -x c util/{lookup2,sha1}.c
@@ -17,5 +18,9 @@
 head -n 36 util/ldid.cpp  %i/share/doc/ldid/COPYING
 
 
+DescPort: 
+The patch fixes the PPC version - http://www.telesphoreo.org/ticket/158
+
+
 Description: pseudo-codesign Mach-O files
 License: BSD

--- NEW FILE: ldid.patch ---
Only in ldid-1.0.476-patched/util/: ldid
diff -u ldid-1.0.476/util/ldid.cpp ldid-1.0.476-patched/util/ldid.cpp
--- ldid-1.0.476/util/ldid.cpp  2008-09-15 11:12:42.0 +0200
+++ ldid-1.0.476-patched/util/ldid.cpp  2009-06-03 07:50:59.0 +0200
@@ -184,6 +184,22 @@
 return Swap(static_castuint32_t(value));
 }
 
+   uint16_t SwapToBig(uint16_t value) const {
+return swapped_ ? value : Swap_(value);
+}
+   
+uint32_t SwapToBig(uint32_t value) const {
+return swapped_ ? value : Swap_(value);
+}
+   
+int16_t SwapToBig(int16_t value) const {
+return SwapToBig(static_castuint16_t(value));
+}
+   
+int32_t SwapToBig(int32_t value) const {
+return SwapToBig(static_castuint32_t(value));
+}
+   
 Framework(const char *framework_path) :
 swapped_(false)
 {
@@ -404,8 +420,8 @@
 if (size == _not(size_t))
 size = framework.GetSize();
 
-switch (framework-cputype) {
-case 12: switch (framework-cpusubtype) {
+switch (framework.Swap(framework-cputype)) {
+case 12: switch (framework.Swap(framework-cpusubtype)) {
 case 0: arch = arm; break;
 case 6: arch = armv6; break;
 default: arch = NULL; break;
@@ -488,11 +504,11 @@
 uint8_t *blob = top + data;
 struct SuperBlob *super = reinterpret_caststruct SuperBlob 
*(blob);
 
-for (size_t index(0); index != Swap(super-count); ++index)
+for (size_t index(0); index != framework.SwapToBig(super-count); 
++index)
 if (Swap(super-index[index].type) == CSSLOT_ENTITLEMENTS) {
-uint32_t begin = Swap(super-index[index].offset);
+uint32_t begin = 
framework.SwapToBig(super-index[index].offset);
 struct Blob *entitlements = reinterpret_caststruct Blob 
*(blob + begin);
-fwrite(entitlements + 1, 1, Swap(entitlements-length) - 
sizeof(struct Blob), stdout);
+fwrite(entitlements + 1, 1, 
framework.SwapToBig(entitlements-length) - sizeof(struct Blob), stdout);
 }
 }
 
@@ -506,13 +522,13 @@
 uint8_t *blob = top + data;
 struct SuperBlob *super = reinterpret_caststruct SuperBlob 
*(blob);
 
-for (size_t index(0); index != Swap(super-count); ++index)
+for (size_t index(0); index != framework.SwapToBig(super-count); 
++index)
 if (Swap(super-index[index].type) == CSSLOT_CODEDIRECTORY) {
-uint32_t begin = Swap(super-index[index].offset);
+uint32_t begin = 
framework.SwapToBig(super-index[index].offset);
 struct CodeDirectory *directory = reinterpret_caststruct 
CodeDirectory *(blob + begin);
 
-uint8_t (*hashes)[20] = reinterpret_castuint8_t 
(*)[20](blob + begin + Swap(directory-hashOffset));
-uint32_t pages = Swap(directory-nCodeSlots);
+uint8_t (*hashes)[20] = reinterpret_castuint8_t 
(*)[20](blob + begin + framework.SwapToBig(directory-hashOffset));
+uint32_t pages = 
framework.SwapToBig(directory-nCodeSlots);
 
 if (pages != 1)
 for (size_t i = 0; i != pages - 1; ++i)
@@ -531,34 +547,34 @@
 uint8_t *top = reinterpret_castuint8_t *(framework.GetBase());
 uint8_t *blob = top + data;
 struct SuperBlob *super = reinterpret_caststruct SuperBlob 
*(blob);
-super-blob.magic = Swap(CSMAGIC_EMBEDDED_SIGNATURE);
+super-blob.magic = 
framework.SwapToBig(CSMAGIC_EMBEDDED_SIGNATURE);
 
 

[cvs] dists/10.4/stable/crypto/finkinfo gtk-sharp-monodoc.info, 1.3, 1.4

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/crypto/finkinfo
In directory 
fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19075/stable/crypto/finkinfo

Modified Files:
gtk-sharp-monodoc.info 
Log Message:
fix long-obsolete (and version-confusing) BDep on libgsf


Index: gtk-sharp-monodoc.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/crypto/finkinfo/gtk-sharp-monodoc.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gtk-sharp-monodoc.info  19 Mar 2009 16:25:29 -  1.3
+++ gtk-sharp-monodoc.info  3 Jun 2009 06:45:01 -   1.4
@@ -33,8 +33,8 @@
libgnomedb4-dev (= 3.1.2-2),
libgnomeprint2.2-dev (= 2.18.2-1),
libgnomeprintui2.2-dev (= 2.18.1-1),
-   libgsf,
-   libgsf1.114-dev,
+   libgsf-bin (= 1.14.14-1),
+   libgsf1.114-dev (= 1.14.14-1),
libidl2 (= 0.8.9-1),
libjpeg, 
librsvg2 (= 2.18.2-1),


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 libgsf.info, NONE, 1.1 librsvg2.info, NONE, 1.1

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory 
fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv2/experimental/dmacks/finkinfo/gnome-2.26

Added Files:
libgsf.info librsvg2.info 
Log Message:
checkpoint


--- NEW FILE: libgsf.info ---
Package: libgsf
Version: 1.14.14
Revision: 1

Depends: 
%N1.114-shlibs (= %v-%r),
%N-bin (= %v-%r),
fink-obsolete-packages

BuildDepends: 
avahi-dev,
bzip2-dev,
dbus-dev (= 1.2.1-1),
gconf2-dev (= 2.26.0-1),
gettext-tools,
glib2-dev (= 2.20.0-1),
gnome-vfs2-unified-dev (= 1:2.24.1-1),
gtk-doc (= 1.8-1),
intltool40,
libavahi-glib1-dev,
libbonobo2-dev (= 2.24.1-1),
libgettext3-dev,
libiconv-dev,
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pkgconfig (= 0.23),
popt


Source: mirror:gnome:sources/libgsf/1.14/libgsf-%v.tar.bz2
Source-MD5: 69e9c57d48539782f72c55824a3c6859

PatchScript: perl -pi -e 's/^(GETTEXT_PACKAGE=.*)/\1-1.114/' configure
SetCFLAGS: -Os
ConfigureParams: --mandir=%p/share/man --disable-gtk-doc --without-python 
--with-bz2 --with-gio --with-gnome-vfs --with-bonobo --disable-schemas-install 
--disable-dependency-tracking --disable-static
InstallScript: 
make install DESTDIR=%d
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%N


SplitOff: 
Package: libgsf-bin
Depends: 
%N1.114-shlibs (= %v-%r),
bzip2-shlibs,
glib2-shlibs (= 2.20.0-1),
libgettext3-shlibs,
libiconv,
libxml2-shlibs (= 2.6.30-1)

Replaces: %N
Files: bin share/man


SplitOff2: 
Package: %N1.114-gnome-shlibs
Depends: 
%N1.114-shlibs (= %v-%r),
bzip2-shlibs,
dbus-shlibs (= 1.2.1-1),
gconf2-shlibs (= 2.26.0-1),
glib2-shlibs (= 2.20.0-1),
gnome-vfs2-unified-shlibs (= 1:2.24.1-1),
libavahi-client3-shlibs,  
libavahi-common3-shlibs,
libavahi-glib1-shlibs,
libbonobo2-shlibs (= 2.24.1-1),
libgettext3-shlibs,
libiconv,
libxml2-shlibs (= 2.6.30-1),
orbit2-shlibs (= 2.14.17-1)

Files: lib/libgsf-gnome-1.*.dylib
Shlibs: %p/lib/libgsf-gnome-1.114.dylib 115.0.0 %n (= 1.14.1-1)
DocFiles: AUTHORS BUGS COPYING COPYING.LIB ChangeLog HACKING NEWS 
README TODO

SplitOff3: 
Package: %N1.114-shlibs
Depends: 
bzip2-shlibs,
glib2-shlibs (= 2.20.0-1),
libgettext3-shlibs,
libiconv,
libxml2-shlibs (= 2.6.30-1)

Replaces: %N ( 1.14.1-1)
Files: lib/libgsf-1.*.dylib share/locale
Shlibs: %p/lib/libgsf-1.114.dylib 115.0.0 %n (= 1.14.1-1)
DocFiles: AUTHORS BUGS COPYING COPYING.LIB ChangeLog HACKING NEWS 
README TODO


SplitOff12: 
Package: %N1.114-gnome-dev
Depends: %N1.114-gnome-shlibs (= %v-%r)
Replaces: %N-gnome ( 1.9.1-1), %N-gnome-dev
Conflicts: %N-gnome-dev
BuildDependsOnly: true
Files: lib/libgsf-gnome-1* lib/pkgconfig/libgsf-gnome* 
include/libgsf-1/gsf-gnome
DocFiles: AUTHORS BUGS COPYING COPYING.LIB ChangeLog HACKING NEWS 
README TODO

SplitOff13: 
Package: %N1.114-dev
Depends: %N1.114-shlibs (= %v-%r)
Replaces: %N-shlibs ( 1.9.1-1), %N, %N-dev, %N-doc
Conflicts: %N-dev, %N-doc
BuildDependsOnly: true
Files: lib/libgsf-1* lib/pkgconfig/libgsf* include/libgsf-1/gsf 
share/gtk-doc
DocFiles: AUTHORS BUGS COPYING COPYING.LIB ChangeLog HACKING NEWS 
README TODO


Description: GNOME Structured File library
DescDetail: 
A library for reading and writing structured files (eg MS OLE and Zip)

DescPackaging: 
  gtk-doc moved %N-doc - %N as of 1.14.1-1 then - %N1.114-dev later
  in 1.14 series.

  libgsf itself is what uses gettext, so the catalogs are there and
  are renamed to include the install_name versioning.

  Cannot build python bindings because files are missing from the
  tarball. See: http://bugzilla.gnome.org/show_bug.cgi?id=349049
  Spawn a -pyXX package collection in separate .info when fixed.

  --disable-schemas-install disables installing the datafile, not just
  running the gconftool cache update. Not going to fix it now.

Gnome component has gnomevfs-based API even if libgsf back-end
is built with gio instead.

License: LGPL
Maintainer: The Gnome Core Team fink-gnome-c...@lists.sourceforge.net
Homepage: http://www.gnumeric.org

--- NEW FILE: librsvg2.info ---
Package: librsvg2
Version: 2.26.0
Revision: 1

License: GPL/LGPL
Maintainer: Dave Vasilevsky v...@users.sourceforge.net
Description: SAX-based render 

[cvs] dists/10.4/unstable/main/finkinfo/sci mathomatic.info, 1.15, 1.16

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25574

Modified Files:
mathomatic.info 
Log Message:
new version


Index: mathomatic.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/mathomatic.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- mathomatic.info 6 Feb 2009 06:22:34 -   1.15
+++ mathomatic.info 3 Jun 2009 07:48:17 -   1.16
@@ -1,5 +1,5 @@
 Package: mathomatic
-Version: 14.3.1
+Version: 14.4.3
 Revision: 1
 Description: Symbolic algebra program
 DescDetail: 
@@ -20,7 +20,7 @@
 BuildDepends: readline5 (= 5.0-1004), libncurses5 (= 5.4-20041023-1006)
 Depends: readline5-shlibs (= 5.0-1004), libncurses5-shlibs (= 
5.4-20041023-1006)
 Source: http://www.panix.com/~gesslein/%n-%v.tar.bz2
-Source-MD5: 12d9b195cc6d92d65f26d407120cda8b
+Source-MD5: 03039fcfa54fe76c4b991fa06282e679
 CompileScript: 
   make prefix=%p READLINE=1
   make test


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 cairo-pm.info, NONE, 1.1 glib-pm.info, NONE, 1.1

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1104

Added Files:
cairo-pm.info glib-pm.info 
Log Message:
checkpoint


--- NEW FILE: glib-pm.info ---
Info2: 
Package: glib-pm%type_pkg[perl]
Version: 1.221
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4
###
Depends: 
perl%type_pkg[perl]-core,
glib2-shlibs (= 2.20.0-1),
libgettext3-shlibs,
xml-parser-pm%type_pkg[perl],
xml-writer-pm

BuildDepends: 
extutils-depends-pm (= 0.301-1),
extutils-makemaker-pm%type_pkg[perl] (= 6.46-1),
extutils-pkgconfig-pm (= 1.12-1),
fink (= 0.24.12-1),
glib2-dev (= 2.20.0-1),
libgettext3-dev,
libiconv-dev

Replaces: glib-pm
###
Source: mirror:cpan:authors/id/T/TS/TSCH/Glib-%v.tar.gz
Source-MD5: 9fbfa385f40e4c977d3426f187f86bcb
###
Type: perl (5.8.1 5.8.6 5.8.8)
UpdatePOD: true
###
InstallScript: 
  %{default_script}
  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: AUTHORS ChangeLog LICENSE NEWS README TODO
###
ConfigureParams: --without-guessing
###
Description: Glib:: perl module (bindings for glib2)
###
License: Artistic
Maintainer: The Gnome Core Team fink-gnome-c...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Glib


--- NEW FILE: cairo-pm.info ---
Info2: 
Package: cairo-pm%type_pkg[perl]
Version: 1.061
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc
Distribution:  (%type_pkg[perl] = 581) 10.4
###
Depends: 
font-freetype-pm%type_pkg[perl],
freetype219-shlibs (= 2.3.8-2),
cairo-shlibs (= 1.8-1),
glib-pm%type_pkg[perl] (= 1.221-1),
perl%type_pkg[perl]-core,
x11

BuildDepends: 
cairo (= 1.8-1),
expat1,
extutils-depends-pm (= 0.301-1),
extutils-pkgconfig-pm (= 1.12-1),
fink (= 0.24.12-1),
fontconfig2-dev (= 2.4.1-1),
freetype219 (= 2.3.8-2),
glib2-dev (= 2.20.0-1),
glitz,
libgettext3-dev,
libiconv-dev,
libpng3,
pango1-xft2-ft219-dev (= 1.22.4-3),
pixman (= 0.12.0-1),
pkgconfig (= 0.23),
test-number-delta-pm%type_pkg[perl],
x11-dev,
xft2-dev

###
Source: mirror:cpan:authors/id/T/TS/TSCH/Cairo-%v.tar.gz
Source-MD5: 08cd5e847f61858651fc4de769066e88
###
Type: perl (5.8.1 5.8.6 5.8.8)
UpdatePOD: true
###
CompileScript: 
#!/bin/sh -ev

export 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH
%{default_script}

InstallScript: 
  %{default_script}
  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: ChangeLog LICENSE NEWS README TODO
###
ConfigureParams: --without-guessing
###
DescPackaging: 
Can use Font::FreeType if found at runtime (not required for
operation, not sure what functionality is lost without it),
but that module is badly brooken so it's not in fink.

Description: Cairo:: perl module
###
License: Artistic
Maintainer: The Gnome Core Team fink-gnome-c...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Cairo



--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net btpd.info,NONE,1.1

2009-06-03 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25948/main/finkinfo/net

Added Files:
btpd.info 
Log Message:
new package

--- NEW FILE: btpd.info ---
Package: btpd
Version: 0.15
Revision: 2
Source: http://www.murmeldjur.se/%n/%n-%v.tar.gz
Source-MD5: b64e2e8b9936e99685bc1e7246655561
PatchScript: perl -pi -e 's| 
-Wl,-R,\$\{withval\}/lib||,s,ac_cv_lib_crypto_SHA1_Final=no,ac_cv_lib_crypto_SHA1_Final=yes,'
 configure
ConfigureParams: --mandir=%p/share/man --with-extra-includes=%p/include 
--with-extra-libraries=%p/lib --disable-dependency-tracking --with-openssl=/usr 
--with-evloop-method=kqueue
InstallScript: make install DESTDIR=%d
DocFiles: CHANGES:ChangeLog COPYRIGHT:COPYING README
License: BSD
Homepage: http://www.murmeldjur.se/btpd
Maintainer: Jack Fink jackf...@users.sourceforge.net
Description: Faceless BitTorrent client, includes a CLI frontend


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome2-canvas-pm.info, NONE, 1.1 gnome2-pm.info, NONE, 1.1 gnome2-vfs-pm.info, NONE, 1.1 gnome2-vfs-pm.patch, NONE, 1.1 gtk2-gladexml-pm.info, NONE, 1.1 g

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28016

Added Files:
gnome2-canvas-pm.info gnome2-pm.info gnome2-vfs-pm.info 
gnome2-vfs-pm.patch gtk2-gladexml-pm.info gtk2-pm.info 
gtk2-pm.patch pango-pm.info pango-pm.patch 
Log Message:
checkpoint


--- NEW FILE: gtk2-pm.patch ---
diff -Nurd -x'*~' Gtk2-1.220.orig/Makefile.PL Gtk2-1.220/Makefile.PL
--- Gtk2-1.220.orig/Makefile.PL 2009-03-17 14:44:18.0 -0400
+++ Gtk2-1.220/Makefile.PL  2009-06-03 04:59:57.0 -0400
@@ -249,7 +249,7 @@
 # Glib added -I. for us, but we'll need to add -I./build so we can get to
 # the autogenerated files.  we do this kindof as a public service to client
 # modules, as these will carry through via the depends mechanism.
-$gtk2-set_inc ($pkgcfg_gtk{cflags} . ' -I./build ');
+$gtk2-set_inc ( ' -I./build ' . $pkgcfg_gtk{cflags});
 $gtk2-set_libs ($pkgcfg_gtk{libs});
 $gtk2-add_pm (%pm_files);
 $gtk2-add_xs (@xs_files);

--- NEW FILE: gnome2-vfs-pm.patch ---
diff -Nurd -x'*~' Gnome2-VFS-1.080.orig/Makefile.PL Gnome2-VFS-1.080/Makefile.PL
--- Gnome2-VFS-1.080.orig/Makefile.PL   2006-03-12 17:08:19.0 -0500
+++ Gnome2-VFS-1.080/Makefile.PL2008-02-03 01:21:19.0 -0500
@@ -111,7 +111,7 @@
 ###
 
 my $vfs = ExtUtils::Depends-new ('Gnome2::VFS', 'Glib');
-$vfs-set_inc ($vfs_pkgcfg{cflags} .  -I build);
+$vfs-set_inc (' -Ibuild ' . $vfs_pkgcfg{cflags});
 $vfs-set_libs ($vfs_pkgcfg{libs});
 $vfs-add_xs (@xs_files);
 $vfs-add_c (vfs2perl.c);

--- NEW FILE: pango-pm.info ---
Info2: 
Package: pango-pm%type_pkg[perl]
Version: 1.220
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4
###
Depends: 
cairo-pm%type_pkg[perl] (= 1.061-1),
cairo-shlibs (= 1.8-1),
fontconfig2-shlibs (= 2.4.1-1),
freetype219-shlibs (= 2.3.8-2),
glib-pm%type_pkg[perl] (= 1.221-1),
glib2-shlibs (= 2.20.0-1),
libgettext3-shlibs,
pango1-xft2-ft219-shlibs (= 1.22.4-3),
perl%type_pkg[perl]-core,
x11

BuildDepends: 
cairo (= 1.8-1),
expat1,
extutils-depends-pm (= 0.301-1),
extutils-pkgconfig-pm (= 1.12-1),
fink (= 0.24.12-1),
fontconfig2-dev (= 2.4.1-1),
freetype219 (= 2.3.8-2),
glib2-dev (= 2.20.0-1),
glitz,
libgettext3-dev,
libiconv-dev,
pango1-xft2-ft219-dev (= 1.22.4-3),
pixman (= 0.12.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Replaces: gtk2-perl-pm, gtk2-pm%type_pkg[perl] ( 1.220-1)
###
Source: mirror:cpan:authors/id/T/TS/TSCH/Pango-%v.tar.gz
Source-MD5: ee4884ffe436fb936b4d84ea9c9372e3
PatchFile: %{ni}.patch
PatchFile-MD5: 61e251c6e5bf1aebeaa7926b466f7de0
###
Type: perl (5.8.1 5.8.6 5.8.8)
UpdatePOD: true
###
NoPerlTests: true
###
CompileScript: 
#!/bin/sh -ev

export 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH
%{default_script}

InstallScript: 
  %{default_script}
  /bin/mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: AUTHORS ChangeLog LICENSE MAINTAINERS NEWS README
###
ConfigureParams: --without-guessing
###
Description: Pango perl module
DescPackaging: 
pango-pmXXX externalized from gtk2-pmXXX as of 1.220

DescPort: 
Make sure whitespace between flags.

###
License: Artistic
Maintainer: The Gnome Core Team fink-gnome-c...@lists.sourceforge.net
Homepage: http://search.cpan.org/dist/Pango


--- NEW FILE: gtk2-gladexml-pm.info ---
Info2: 
Package: gtk2-gladexml-pm%type_pkg[perl]
Version: 1.007
Revision: 1
Architecture: (%type_pkg[perl] = 581) powerpc
Distribution: (%type_pkg[perl] = 581) 10.4
Type: perl (5.8.1 5.8.6 5.8.8)

Depends: 
atk1-shlibs (= 1.26.0-1),
cairo-pm%type_pkg[perl] (= 1.061-1),
cairo-shlibs (= 1.8-1),
fontconfig2-shlibs (= 2.4.1-1),
freetype219-shlibs (= 2.3.8-2),
glib-pm%type_pkg[perl] (= 1.221-1),
glib2-shlibs (= 2.20.0-1),
gtk+2-shlibs (= 2.16.0-1),
gtk2-pm%type_pkg[perl] (= 1.220-1),
libgettext3-shlibs,
libglade2-shlibs (= 2.6.4-1),
libxml2-shlibs (= 2.6.30-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
perl%type_pkg[perl]-core,
x11

BuildDepends: 
atk1 (= 1.26.0-1),
cairo (= 1.8-1),
expat1,
extutils-depends-pm (= 0.301-1),
extutils-pkgconfig-pm (= 1.12-1),
fontconfig2-dev (= 2.4.1-1),
freetype219 (= 2.3.8-2),
glib2-dev (= 2.20.0-1),
glitz,
gtk+2-dev (= 2.16.0-1),
libgettext3-dev,
libglade2 (= 2.6.4-1),
libiconv-dev,
libpng3,
libxml2 (= 2.6.30-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
pixman (= 0.12.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev


Source: 

[svn] commit: r1560 - in /trunk/experimental: 10.4/main/finkinfo/kde/ common/main/finkinfo/devel/ common/main/finkinfo/graphics/ common/main/finkinfo/kde/ common/main/finkinfo/net/

2009-06-03 Thread ranger
Author: ranger
Date: Wed Jun  3 17:34:31 2009
New Revision: 1560

URL: 
http://svn.finkproject.org/websvn/listing.php?sc=1rev=1560repname=user%3a+ranger
Log:
pixman update

Modified:
trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.info
trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.patch
trunk/experimental/common/main/finkinfo/devel/kde4-buildenv.info
trunk/experimental/common/main/finkinfo/graphics/pixman.info
trunk/experimental/common/main/finkinfo/kde/kdelibs4.info
trunk/experimental/common/main/finkinfo/kde/kdelibs4.patch
trunk/experimental/common/main/finkinfo/net/net-snmp-unified.info

Modified: trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.info
URL: 
http://svn.finkproject.org/websvn/diff.php?path=/trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.inforev=1560repname=user%3a+ranger
==
--- trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.info (original)
+++ trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.info Wed Jun  3 17:34:31 
2009
@@ -1,7 +1,7 @@
 Info4: 
 Package: kdelibs4-%type_pkg[kde]
 Version: 4.2.3
-Revision: 1
+Revision: 2
 Description: KDE4 - essential libraries
 Type: kde (x11 mac)
 License: GPL/LGPL
@@ -58,7 +58,7 @@
 SourceDirectory: kdelibs-%v
 PatchScript: sed -e 's,@KDEPREFIX@,%p,g' -e 's,@KDETYPE@,%type_pkg[kde],g' 
%{PatchFile} | patch -p1
 PatchFile: kdelibs4.patch
-PatchFile-MD5: 0c6a1883b6c6c1f9291e7ee3ab084185
+PatchFile-MD5: 1a6e036fca5669423ac5bf3f2132c474
 
 CompileScript: 
 #!/bin/sh -ev

Modified: trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.patch
URL: 
http://svn.finkproject.org/websvn/diff.php?path=/trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.patchrev=1560repname=user%3a+ranger
==
--- trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.patch (original)
+++ trunk/experimental/10.4/main/finkinfo/kde/kdelibs4.patch Wed Jun  3 
17:34:31 2009
@@ -46,7 +46,7 @@
 +
 +PREFIX=@KDEPREFIX@
 +TYPE=@KDETYPE@
-+FULLPREFIX=@KDEPREFIX@/lib/@TYPE@
++FULLPREFIX=@KDEPREFIX@/lib/@KDETYPE@
 +TEMPPATH=/tmp/kb$$
 +LOGFILE=$TEMPPATH/kde4-postinst.log
 +

Modified: trunk/experimental/common/main/finkinfo/devel/kde4-buildenv.info
URL: 
http://svn.finkproject.org/websvn/diff.php?path=/trunk/experimental/common/main/finkinfo/devel/kde4-buildenv.inforev=1560repname=user%3a+ranger
==
--- trunk/experimental/common/main/finkinfo/devel/kde4-buildenv.info (original)
+++ trunk/experimental/common/main/finkinfo/devel/kde4-buildenv.info Wed Jun  3 
17:34:31 2009
@@ -1,6 +1,6 @@
 Package: kde4-buildenv
 Version: 4.2.3
-Revision: 1
+Revision: 2
 
 CustomMirror: 
Primary: http://ranger.users.finkproject.org/distfiles
@@ -10,7 +10,7 @@
nam-CA: http://www.southofheaven.net/befunk
 
 Source: mirror:custom:%n/%n-%v-%r.sh
-Source-MD5: 456e2774c7d81660444ee822b2726121
+Source-MD5: 616f98ad239ab64cf458875b90c3cd41
 Source2: mirror:custom:%n/normalize-filenames-%v-%r.sh
 Source2-MD5: aa5d58694004df09f486abc9907f7e0a
 Depends: cmake (= 2.6.3-1)

Modified: trunk/experimental/common/main/finkinfo/graphics/pixman.info
URL: 
http://svn.finkproject.org/websvn/diff.php?path=/trunk/experimental/common/main/finkinfo/graphics/pixman.inforev=1560repname=user%3a+ranger
==
--- trunk/experimental/common/main/finkinfo/graphics/pixman.info (original)
+++ trunk/experimental/common/main/finkinfo/graphics/pixman.info Wed Jun  3 
17:34:31 2009
@@ -1,10 +1,10 @@
 Package: pixman
-Version: 0.12.0
+Version: 0.14.0
 Revision: 1
 Source: http://xorg.freedesktop.org/archive/individual/lib/pixman-%v.tar.bz2
-Source-MD5: 494af78c1c7d825c9ad6815d7b91f17d
-PatchFile: %n.patch
-PatchFile-MD5: 36c4c99ee350acd7cd542605943397d1
+Source-MD5: adbaf2372f69971306b76b300b7f501f
+#PatchFile: %n.patch
+#PatchFile-MD5: 36c4c99ee350acd7cd542605943397d1
 
 Conflicts: libpixman1
 Replaces: libpixman1
@@ -18,7 +18,7 @@
 SplitOff: 
Package: %N-shlibs
Files: lib/libpixman-1.0*.dylib
-   Shlibs: %p/lib/libpixman-1.0.dylib 13.0.0 %N-shlibs (= 0.12.0-1)
+   Shlibs: %p/lib/libpixman-1.0.dylib 15.0.0 %N-shlibs (= 0.14.0-1)
DocFiles: COPYING
 
 DocFiles: AUTHORS COPYING ChangeLog* INSTALL NEWS README TODO

Modified: trunk/experimental/common/main/finkinfo/kde/kdelibs4.info
URL: 
http://svn.finkproject.org/websvn/diff.php?path=/trunk/experimental/common/main/finkinfo/kde/kdelibs4.inforev=1560repname=user%3a+ranger
==
--- trunk/experimental/common/main/finkinfo/kde/kdelibs4.info (original)
+++ trunk/experimental/common/main/finkinfo/kde/kdelibs4.info Wed Jun  3 
17:34:31 2009
@@ -1,7 +1,7 @@
 Info4: 
 Package: kdelibs4-%type_pkg[kde]
 Version: 4.2.3
-Revision: 1
+Revision: 2
 Type: kde (x11 

[cvs] experimental/dmacks/finkinfo/gnome-2.26 vte9-shlibs.info, 1.1, 1.2

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4577

Modified Files:
vte9-shlibs.info 
Log Message:
upgrading note


Index: vte9-shlibs.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/vte9-shlibs.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- vte9-shlibs.info28 May 2009 19:55:57 -  1.1
+++ vte9-shlibs.info3 Jun 2009 15:51:17 -   1.2
@@ -1,4 +1,6 @@
 Package: vte9-shlibs
+# 0.20.4 changes SONAME, not sure they indended to do that, so wait a
+# while before upgrading to see if they change/undo it again.
 Version: 0.20.3
 Revision: 1
 Depends: 


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/graphics pixman.info,1.6,1.7

2009-06-03 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory 
fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6627/main/finkinfo/graphics

Modified Files:
pixman.info 
Log Message:
new upstream

Index: pixman.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/pixman.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- pixman.info 2 Jan 2009 21:25:10 -   1.6
+++ pixman.info 3 Jun 2009 16:09:21 -   1.7
@@ -1,10 +1,10 @@
 Package: pixman
-Version: 0.12.0
+Version: 0.14.0
 Revision: 1
 Source: http://xorg.freedesktop.org/archive/individual/lib/pixman-%v.tar.bz2
-Source-MD5: 494af78c1c7d825c9ad6815d7b91f17d
-PatchFile: %n.patch
-PatchFile-MD5: 36c4c99ee350acd7cd542605943397d1
+Source-MD5: adbaf2372f69971306b76b300b7f501f
+#PatchFile: %n.patch
+#PatchFile-MD5: 36c4c99ee350acd7cd542605943397d1
 
 Conflicts: libpixman1
 Replaces: libpixman1
@@ -18,7 +18,7 @@
 SplitOff: 
Package: %N-shlibs
Files: lib/libpixman-1.0*.dylib
-   Shlibs: %p/lib/libpixman-1.0.dylib 13.0.0 %N-shlibs (= 0.12.0-1)
+   Shlibs: %p/lib/libpixman-1.0.dylib 15.0.0 %N-shlibs (= 0.14.0-1)
DocFiles: COPYING
 
 DocFiles: AUTHORS COPYING ChangeLog* INSTALL NEWS README TODO


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gconf-editor.info, 1.4, 1.5 glade3.info, 1.1, 1.2 gnome-vfs2-unified.info, 1.1, 1.2 libcanberra-gtk0.info, 1.1, 1.2 libcanberra0.info, 1.1, 1.2 metacity.i

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7346

Modified Files:
gconf-editor.info glade3.info gnome-vfs2-unified.info 
libcanberra-gtk0.info libcanberra0.info metacity.info 
zenity.info 
Log Message:
seem fine with am1.11


Index: libcanberra-gtk0.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libcanberra-gtk0.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libcanberra-gtk0.info   2 Jun 2009 02:26:00 -   1.1
+++ libcanberra-gtk0.info   3 Jun 2009 16:16:30 -   1.2
@@ -7,7 +7,7 @@
 BuildDepends: 
atk1 (= 1.26.0-1),
autoconf,
-   automake1.10,
+   automake1.11,
cairo (= 1.8-1),
expat1,
fink (= 0.24.12-1),

Index: gnome-vfs2-unified.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome-vfs2-unified.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-vfs2-unified.info 22 May 2009 06:54:13 -  1.1
+++ gnome-vfs2-unified.info 3 Jun 2009 16:16:30 -   1.2
@@ -10,7 +10,7 @@
 
 BuildDepends: 
autoconf (= 2.60),
-   automake1.10,
+   automake1.11,
avahi-dev,
bzip2-dev, 
dbus-dev (= 1.2.1-1),

Index: glade3.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/glade3.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- glade3.info 28 May 2009 19:55:57 -  1.1
+++ glade3.info 3 Jun 2009 16:16:30 -   1.2
@@ -28,7 +28,7 @@
atk1 (= 1.26.0-1),
audiofile (= 0.2.6-10),
autoconf (= 2.62-1),
-   automake1.10,
+   automake1.11,
avahi-dev,
cairo (= 1.8-1),
dbus-dev (= 1.2.1-1),

Index: zenity.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/zenity.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- zenity.info 1 Jun 2009 19:35:35 -   1.1
+++ zenity.info 3 Jun 2009 16:16:30 -   1.2
@@ -19,7 +19,7 @@
 BuildDepends: 
atk1 (= 1.26.0-1),
autoconf,
-   automake1.10,
+   automake1.11,
cairo (= 1.8-1),
expat1,
fink (= 0.24.12-1),

Index: libcanberra0.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libcanberra0.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libcanberra0.info   2 Jun 2009 02:26:00 -   1.1
+++ libcanberra0.info   3 Jun 2009 16:16:30 -   1.2
@@ -6,7 +6,7 @@
 
 BuildDepends: 
autoconf,
-   automake1.10,
+   automake1.11,
fink (= 0.24.12-1),
gconf2-dev (= 2.26.0-1),
glib2-dev (= 2.20.0-1),

Index: metacity.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/metacity.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- metacity.info   2 Jun 2009 03:22:04 -   1.1
+++ metacity.info   3 Jun 2009 16:16:30 -   1.2
@@ -25,7 +25,7 @@
 BuildDepends: 
atk1 (= 1.26.0-1),
autoconf,
-   automake1.10,
+   automake1.11,
cairo (= 1.8-1),
dbus-dev (= 1.2.1-1),
expat1,

Index: gconf-editor.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gconf-editor.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gconf-editor.info   30 May 2009 15:42:04 -  1.4
+++ gconf-editor.info   3 Jun 2009 16:16:30 -   1.5
@@ -25,7 +25,7 @@
 BuildDepends: 
atk1 (= 1.26.0-1),
autoconf,
-   automake1.10,
+   automake1.11,
cairo (= 1.8-1),
dbus-dev (= 1.2.1-1),
expat1,


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel psyco-py.info,1.3,1.4

2009-06-03 Thread Brendan Cully
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9862

Modified Files:
psyco-py.info 
Log Message:
Add python2.6 to variant list.
NMU oked by maintainer.

Index: psyco-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/psyco-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- psyco-py.info   25 Apr 2009 04:07:50 -  1.3
+++ psyco-py.info   3 Jun 2009 16:40:12 -   1.4
@@ -2,7 +2,7 @@
 Package: psyco-py%type_pkg[python]
 Version: 1.6
 Revision: 1
-Type: python (2.3 2.4 2.5)
+Type: python (2.3 2.4 2.5 2.6)
 Distribution: (%type_pkg[python] = 23) 10.4
 Architecture: i386
 Source: mirror:sourceforge:psyco/psyco-%v-src.tar.gz


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/text tetex-texmf.info,1.3,1.4

2009-06-03 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/text
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11238

Modified Files:
tetex-texmf.info 
Log Message:
make a fake date-change in latex.ltx so that this five-year-old latex will
still compile


Index: tetex-texmf.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/text/tetex-texmf.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- tetex-texmf.info12 Aug 2008 01:23:22 -  1.3
+++ tetex-texmf.info3 Jun 2009 16:55:18 -   1.4
@@ -1,6 +1,6 @@
 Package: tetex-texmf
 Version: 3.0
-Revision: 1
+Revision: 2
 Depends: fink (= 0.9.3)
 Conflicts: tetex (= 1.0-13), carlisle, natbib, revtex, seminar
 Replaces: tetex (= 1.0-13), tetex-base (= 2.0-5), carlisle, context, 
dvipdfm, epstopdf, hyperref, natbib, oberdiek, revtex, seminar
@@ -10,7 +10,9 @@
 NoSourceDirectory: True
 Source2: 
ftp://cam.ctan.org/tex-archive/systems/unix/teTeX/%v/distrib/tetex-texmfsrc-%v.tar.gz
 Source2-MD5: 66c32a11964a49982ba2a32d3bbfe7f5
-CompileScript: echo Nothing to do ...
+CompileScript: 
+ perl -pi -e s|\{2003|{2008| tex/latex/base/latex.ltx 
tex/latex/base/ltpatch.ltx
+
 InstallScript: 
  mkdir -p %i/share/doc/tetex-texmf
  cp ChangeLog LICENSE.texmf %i/share/doc/tetex-texmf
@@ -34,5 +36,12 @@
  Separate packages are no longer needed for carlisle, hyperref, natbib, 
  oberdiek, revtex, and seminar, all of which are now provided by this package.
 
+DescPort: 
+ We have to change the version number in latex.ltx and ltpatch.ltx to enable
+ this five-year-old version of LaTeX to work.
+
+ This is only a workaround, until either tetex-texmf can be thoroughly updated,
+ or fink converts from tetex to texlive.
+
 Maintainer:  Dave Morrison d...@finkproject.org
 Homepage: http://www.tug.org/teTeX


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/gnome gnome-common.info, 1.3, 1.4

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/gnome
In directory 
fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13613/stable/main/finkinfo/gnome

Modified Files:
gnome-common.info 
Log Message:
intltool and libtool aren't related


Index: gnome-common.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/gnome/gnome-common.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gnome-common.info   11 May 2009 18:01:59 -  1.3
+++ gnome-common.info   3 Jun 2009 17:18:38 -   1.4
@@ -1,6 +1,6 @@
 Package: gnome-common
 Version: 2.24.0
-Revision: 2
+Revision: 3
 Source: mirror:gnome:sources/%n/2.24/%n-%v.tar.bz2
 Source-MD5: f72230d19ab9f2fa8923dcb078c69e9a
 License: GPL
@@ -10,7 +10,7 @@
   libtool14 | libtool2,
   libgettext3-dev, gettext-tools, gettext-bin,
   glib2-dev (= 2.18.0-1),
-  intltool40 | libtool,
+  intltool40 | intltool,
   pkgconfig (= 0.23),
   gtk-doc,
   gnome-doc-utils (= 0.14.0-1)


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gnome-common.info, 1.8, 1.9

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory 
fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13613/unstable/main/finkinfo/gnome

Modified Files:
gnome-common.info 
Log Message:
intltool and libtool aren't related


Index: gnome-common.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gnome-common.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- gnome-common.info   18 Oct 2008 16:38:33 -  1.8
+++ gnome-common.info   3 Jun 2009 17:18:38 -   1.9
@@ -1,6 +1,6 @@
 Package: gnome-common
 Version: 2.24.0
-Revision: 2
+Revision: 3
 Source: mirror:gnome:sources/%n/2.24/%n-%v.tar.bz2
 Source-MD5: f72230d19ab9f2fa8923dcb078c69e9a
 License: GPL
@@ -10,7 +10,7 @@
   libtool14 | libtool2,
   libgettext3-dev, gettext-tools, gettext-bin,
   glib2-dev (= 2.18.0-1),
-  intltool40 | libtool,
+  intltool40 | intltool,
   pkgconfig (= 0.23),
   gtk-doc,
   gnome-doc-utils (= 0.14.0-1)


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-common.info, 1.3, 1.4

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14066

Modified Files:
gnome-common.info 
Log Message:
fix intltool/libtool confusion


Index: gnome-common.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome-common.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gnome-common.info   3 Jun 2009 03:01:32 -   1.3
+++ gnome-common.info   3 Jun 2009 17:21:54 -   1.4
@@ -10,7 +10,7 @@
   libtool14 | libtool2,
   libgettext3-dev, gettext-tools, gettext-bin,
   glib2-dev (= 2.20.0-1),
-  intltool40 | libtool,
+  intltool40 | intltool,
   pkgconfig (= 0.23),
   gtk-doc (= 1.11-6),
   gnome-doc-utils (= 0.16.1-1)


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-common.info, 1.4, 1.5

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14131

Modified Files:
gnome-common.info 
Log Message:
prefer libtool2


Index: gnome-common.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome-common.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gnome-common.info   3 Jun 2009 17:21:54 -   1.4
+++ gnome-common.info   3 Jun 2009 17:22:40 -   1.5
@@ -7,7 +7,7 @@
 Suggests: 
   autoconf,
   automake1.11 | automake1.10,
-  libtool14 | libtool2,
+  libtool2 | libtool14,
   libgettext3-dev, gettext-tools, gettext-bin,
   glib2-dev (= 2.20.0-1),
   intltool40 | intltool,


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-common.info, 1.5, 1.6

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14399

Modified Files:
gnome-common.info 
Log Message:
autogen support for am1.11


Index: gnome-common.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome-common.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gnome-common.info   3 Jun 2009 17:22:40 -   1.5
+++ gnome-common.info   3 Jun 2009 17:25:35 -   1.6
@@ -3,7 +3,10 @@
 Revision: 1
 Source: mirror:gnome:sources/%n/2.26/%n-%v.tar.bz2
 Source-MD5: 196daa38cb21d91da1d6ec085f1e158b
+PatchFile: %n.patch
+PatchFile-MD5: fa7f183e46c1ab7f564fa01904aa7642
 License: GPL
+BuildDepends: fink (= 0.24.12)
 Suggests: 
   autoconf,
   automake1.11 | automake1.10,
@@ -16,6 +19,13 @@
   gnome-doc-utils (= 0.16.1-1)
 
 DocFiles: AUTHORS COPYING ChangeLog NEWS README
+DescPackaging: 
+   Add upstream patch to support automake1.11
+
+   gettext-tools-0.17 requires setting PATH (not automatically
+   detectable), so not setting as alternative dependency. It can
+   be installed concurrently, so no deadlock problem.
+
 Description: Useful things for building GNOME packages
 Homepage: http://www.gnome.org
 Maintainer: Daniel Macks dma...@netspace.org


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci xmedcon.info,1.1,1.2

2009-06-03 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv17375/main/finkinfo/sci

Modified Files:
xmedcon.info 
Log Message:
new upstream release

Index: xmedcon.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/xmedcon.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- xmedcon.info18 Nov 2008 12:51:42 -  1.1
+++ xmedcon.info3 Jun 2009 17:50:33 -   1.2
@@ -1,10 +1,10 @@
 Package: xmedcon
-Version: 0.10.4
-Revision: 3
+Version: 0.10.5
+Revision: 2
 Depends: %N-shlibs (= %v-%r), x11, x11-shlibs, atk1-shlibs, cairo-shlibs, 
expat1-shlibs, fontconfig2-shlibs, freetype219-shlibs, glib2-shlibs, 
glitz-shlibs, gtk+2-shlibs, libgettext3-shlibs, libiconv, libpng3-shlibs, 
pango1-xft2-ft219-shlibs, pixman-shlibs
 BuildDepends: pkgconfig, x11-dev, atk1, cairo, expat1, fontconfig2-dev, 
freetype219 (= 2.3.7-7), glib2-dev, glitz, gtk+2-dev, libgettext3-dev, 
libiconv-dev, libpng3, pango1-xft2-ft219-dev, pixman, gzip
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
-Source-MD5: f90c8bd55d6996cd03e3ec106eddd074
+Source-MD5: 68f7fd636b4dd80355df178ef150980d
 SetCFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --with-extra-includes=%p/include 
--with-extra-libs=%p/lib --disable-dependency-tracking --enable-llcheck
 InstallScript: make install DESTDIR=%d


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-common.patch, NONE, 1.1

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21389

Added Files:
gnome-common.patch 
Log Message:
need the patch


--- NEW FILE: gnome-common.patch ---
diff -Nurd -x'*~' gnome-common-2.26.0.orig/macros2/gnome-autogen.sh 
gnome-common-2.26.0/macros2/gnome-autogen.sh
--- gnome-common-2.26.0.orig/macros2/gnome-autogen.sh   2009-03-19 
16:08:16.0 -0400
+++ gnome-common-2.26.0/macros2/gnome-autogen.sh2009-06-03 
13:14:39.0 -0400
@@ -310,12 +310,13 @@
 
 case $REQUIRED_AUTOMAKE_VERSION in
 1.4*) automake_progs=automake-1.4 ;;
-1.5*) automake_progs=automake-1.10 automake-1.9 automake-1.8 automake-1.7 
automake-1.6 automake-1.5 ;;
-1.6*) automake_progs=automake-1.10 automake-1.9 automake-1.8 automake-1.7 
automake-1.6 ;;
-1.7*) automake_progs=automake-1.10 automake-1.9 automake-1.8 
automake-1.7 ;;
-1.8*) automake_progs=automake-1.10 automake-1.9 automake-1.8 ;;
-1.9*) automake_progs=automake-1.10 automake-1.9 ;;
-1.10*) automake_progs=automake-1.10 ;;
+1.5*) automake_progs=automake-1.11 automake-1.10 automake-1.9 
automake-1.8 automake-1.7 automake-1.6 automake-1.5 ;;
+1.6*) automake_progs=automake-1.11 automake-1.10 automake-1.9 
automake-1.8 automake-1.7 automake-1.6 ;;
+1.7*) automake_progs=automake-1.11 automake-1.10 automake-1.9 
automake-1.8 automake-1.7 ;;
+1.8*) automake_progs=automake-1.11 automake-1.10 automake-1.9 
automake-1.8 ;;
+1.9*) automake_progs=automake-1.11 automake-1.10 automake-1.9 ;;
+1.10*) automake_progs=automake-1.11 automake-1.10 ;;
+1.11*) automake_progs=automake-1.11 ;;
 esac
 version_check automake AUTOMAKE $automake_progs $REQUIRED_AUTOMAKE_VERSION \
 
http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz;


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci octave-forge-image.info, 1.4, 1.5

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22621

Modified Files:
octave-forge-image.info 
Log Message:
New upstream.  No more imagemagick!


Index: octave-forge-image.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave-forge-image.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- octave-forge-image.info 1 May 2009 15:39:02 -   1.4
+++ octave-forge-image.info 3 Jun 2009 18:39:39 -   1.5
@@ -1,24 +1,24 @@
 info2: 
 Package: octave-forge-image
-Version: 1.0.7
+Version: 1.0.9
 Type: octave (3.0.5), forge (image)
-Revision: 3
+Revision: 1
 Maintainer: Alexander Hansen a...@finkproject.org
 BuildDepends: 
   gcc44,  hdf5 (= 1.6.5-1012), fftw3,
-  imagemagick10-dev, libjpeg, libpng3, libncurses5,
+  libjpeg, libpng3, libncurses5,
   readline5 (= 5.0-1004)
   
 Depends:  
   fftw3-shlibs, hdf5-shlibs (= 1.6.5-1012), gcc44-shlibs, 
-  imagemagick10-shlibs, libjpeg-shlibs, libpng3-shlibs,
+  libjpeg-shlibs, libpng3-shlibs,
   octave (= %type_raw[octave]-1) | octave-atlas (= %type_raw[octave]-1),
   octave ( %type_raw[octave]-) | octave-atlas ( 
%type_raw[octave]-),
   readline5-shlibs (= 5.0-1004), libncurses5-shlibs
 
 Conflicts: octave-forge
 Source: mirror:sourceforge:octave/%type_raw[forge]-%v.tar.gz
-Source-MD5: 2fd2a0b18029d034c69f37eab5df83db
+Source-MD5: def70462eb0eed4eb842b976504bed87
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetLIBRARY_PATH: /usr/X11R6/lib:%p/lib
@@ -93,7 +93,6 @@
 DescPort: 
 Installation framework intially due to Johnathan Stickel.  I added a few
 tweaks.
-Uses imagemagick10 as additional hacking would be needed to use imagemagick1.
 
 Homepage: http://octave.sourceforge.net/image/index.html 
 License: GPL


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci octave-forge-image-1.0.7-1.info, NONE, 1.1 octave-forge-general.info, 1.3, 1.4

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23401

Modified Files:
octave-forge-general.info 
Added Files:
octave-forge-image-1.0.7-1.info 
Log Message:
legacy function support


Index: octave-forge-general.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave-forge-general.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- octave-forge-general.info   1 May 2009 15:39:02 -   1.3
+++ octave-forge-general.info   3 Jun 2009 18:49:31 -   1.4
@@ -1,8 +1,8 @@
 info2: 
 Package: octave-forge-general
-Version: 1.0.7
+Version: 1.0.8
 Type: octave (3.0.5), forge (general)
-Revision: 3
+Revision: 1
 Maintainer: Alexander Hansen a...@finkproject.org
 BuildDepends: 
   gcc44,  hdf5 (= 1.6.5-1012), fftw3,

--- NEW FILE: octave-forge-image-1.0.7-1.info ---
info2: 
Package: octave-forge-image
Version: 1.0.7
Type: octave (3.0.3), forge (image)
Revision: 1
Maintainer: Alexander Hansen a...@finkproject.org
BuildDepends: 
  gcc43,  hdf5 (= 1.6.5-1012), fftw3,
  imagemagick10-dev, libjpeg, libpng3, libncurses5,
  readline5 (= 5.0-1004)
  
Depends:  
  fftw3-shlibs, hdf5-shlibs (= 1.6.5-1012), gcc43-shlibs, 
  imagemagick10-shlibs, libjpeg-shlibs, libpng3-shlibs,
  octave (= %type_raw[octave]-1) | octave-atlas (= %type_raw[octave]-1),
  octave ( %type_raw[octave]-) | octave-atlas ( %type_raw[octave]-),
  readline5-shlibs (= 5.0-1004), libncurses5-shlibs

Conflicts: octave-forge
Source: mirror:sourceforge:octave/%type_raw[forge]-%v.tar.gz
Source-MD5: 2fd2a0b18029d034c69f37eab5df83db
NoSetCPPFLAGS: true
NoSetLDFLAGS: true
SetLIBRARY_PATH: /usr/X11R6/lib:%p/lib
SetMAKEFLAGS: -j1
CompileScript: echo ''

InstallScript: 
#!/bin/bash -ev
export   CPPFLAGS=-I%p/lib/system-openssl/include
export   LDFLAGS=-L%p/lib/system-openssl/lib
export   PKG_CONFIG_PATH=%p/lib/system-openssl/lib/pkgconfig
export CPATH=/usr/X11R6/include:%p/include
cd ..
m=%i/share/octave/packages
o=%i/lib/octave/packages
mkdir -p $m $o
echo pkg prefix $m $o  tmp
echo pkg global_list %i/share/octave/octave_packages  tmp
echo pkg install -verbose -nodeps %type_raw[forge]-%v  tmp
octave -V tmp
echo load %i/share/octave/octave_packages  tmp
echo striplength = length('%d');  tmp
echo apfx = global_packages {1}.archprefix;  tmp
echo global_packages {1}.archprefix = apfx(striplength+1:end);  tmp
echo dr = global_packages {1}.dir;  tmp
echo global_packages {1}.dir = dr(striplength+1:end);  tmp
echo save -text %i/share/octave/octave_packages global_packages  tmp
octave -q tmp
mv %i/share/octave/octave_packages 
%i/share/octave/packages/%type_raw[forge]-%v/.


PostInstScript: 
if [ -f %p/share/octave/octave_packages ]
then 
  tf=/var/tmp/tmp-inst
  echo load %p/share/octave/packages/%type_raw[forge]-%v/octave_packages  $tf
  echo newpackage = global_packages;  $tf
  echo load %p/share/octave/octave_packages  $tf
  echo global_packages = {global_packages{:},newpackage{:}};  $tf
  echo save -text %p/share/octave/octave_packages global_packages  $tf
  octave -q $tf
  rm %p/share/octave/packages/%type_raw[forge]-%v/octave_packages
  rm $tf
else
  mv %p/share/octave/packages/%type_raw[forge]-%v/octave_packages 
%p/share/octave/octave_packages
fi


PreRmScript: 
tf=/var/tmp/tmp-rem
echo load %p/share/octave/octave_packages  $tf
echo for i = 1:length(global_packages)  $tf
echo   if strcmp(global_packages{i}.name,'%type_raw[forge]')  $tf
echo global_packages(i) = [];  $tf
echo break  $tf
echo   endif  $tf
echo endfor  $tf
echo save -text %p/share/octave/octave_packages global_packages  $tf
octave -q $tf
rm $tf


Description: Image tools for octave
DescDetail: 
The Octave-forge Image package provides functions for reading, writing, and 
and processing images. The package supports almost all image formats through
the use of ImageMagick. The package also provides functions for feature 
extraction, image statistics, spatial and geometric transformations, 
morphological operations, linear filtering, and much more.
This version contains the imread and imwrite functions which are supposedly
now in core Octave, but don't appear to be yet as of 3.0.5.

DescPort: 
Installation framework intially due to Johnathan Stickel.  I added a few
tweaks.
Uses imagemagick10 as additional hacking would be needed to use imagemagick1.

Homepage: http://octave.sourceforge.net/image/index.html 
License: GPL



--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits 

[cvs] dists/10.4/unstable/main/finkinfo/sci octave-forge-image.info, 1.5, 1.6 octave-forge-image-1.0.7-1.info, 1.1, NONE

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24613

Modified Files:
octave-forge-image.info 
Removed Files:
octave-forge-image-1.0.7-1.info 
Log Message:
D'oh!  Needs newer octave.

Index: octave-forge-image.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave-forge-image.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- octave-forge-image.info 3 Jun 2009 18:39:39 -   1.5
+++ octave-forge-image.info 3 Jun 2009 19:00:09 -   1.6
@@ -1,24 +1,24 @@
 info2: 
 Package: octave-forge-image
-Version: 1.0.9
-Type: octave (3.0.5), forge (image)
+Version: 1.0.7
+Type: octave (3.0.3), forge (image)
 Revision: 1
 Maintainer: Alexander Hansen a...@finkproject.org
 BuildDepends: 
-  gcc44,  hdf5 (= 1.6.5-1012), fftw3,
-  libjpeg, libpng3, libncurses5,
+  gcc43,  hdf5 (= 1.6.5-1012), fftw3,
+  imagemagick10-dev, libjpeg, libpng3, libncurses5,
   readline5 (= 5.0-1004)
   
 Depends:  
-  fftw3-shlibs, hdf5-shlibs (= 1.6.5-1012), gcc44-shlibs, 
-  libjpeg-shlibs, libpng3-shlibs,
+  fftw3-shlibs, hdf5-shlibs (= 1.6.5-1012), gcc43-shlibs, 
+  imagemagick10-shlibs, libjpeg-shlibs, libpng3-shlibs,
   octave (= %type_raw[octave]-1) | octave-atlas (= %type_raw[octave]-1),
   octave ( %type_raw[octave]-) | octave-atlas ( 
%type_raw[octave]-),
   readline5-shlibs (= 5.0-1004), libncurses5-shlibs
 
 Conflicts: octave-forge
 Source: mirror:sourceforge:octave/%type_raw[forge]-%v.tar.gz
-Source-MD5: def70462eb0eed4eb842b976504bed87
+Source-MD5: 2fd2a0b18029d034c69f37eab5df83db
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetLIBRARY_PATH: /usr/X11R6/lib:%p/lib
@@ -88,11 +88,13 @@
 the use of ImageMagick. The package also provides functions for feature 
 extraction, image statistics, spatial and geometric transformations, 
 morphological operations, linear filtering, and much more.
-Note:  the current version (1.0.8) doesn't work on OS X.
+This version contains the imread and imwrite functions which are supposedly
+now in core Octave, but don't appear to be yet as of 3.0.5.
 
 DescPort: 
 Installation framework intially due to Johnathan Stickel.  I added a few
 tweaks.
+Uses imagemagick10 as additional hacking would be needed to use imagemagick1.
 
 Homepage: http://octave.sourceforge.net/image/index.html 
 License: GPL

--- octave-forge-image-1.0.7-1.info DELETED ---


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-panel.info, 1.1, 1.2

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv24359

Modified Files:
gnome-panel.info 
Log Message:
defer


Index: gnome-panel.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome-panel.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-panel.info28 May 2009 17:14:23 -  1.1
+++ gnome-panel.info3 Jun 2009 18:58:03 -   1.2
@@ -1,5 +1,4 @@
 Package: gnome-panel
-# blocking on gnome-desktop (blocking on gnome python stuff)
 Version: 2.24.3
 Revision: 1
 Depends: 


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci octave-forge-image.info, 1.6, 1.7

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28700

Modified Files:
octave-forge-image.info 
Log Message:
Fix reversion


Index: octave-forge-image.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave-forge-image.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- octave-forge-image.info 3 Jun 2009 19:00:09 -   1.6
+++ octave-forge-image.info 3 Jun 2009 19:24:02 -   1.7
@@ -1,8 +1,8 @@
 info2: 
 Package: octave-forge-image
 Version: 1.0.7
-Type: octave (3.0.3), forge (image)
-Revision: 1
+Type: octave (3.0.5), forge (image)
+Revision: 3
 Maintainer: Alexander Hansen a...@finkproject.org
 BuildDepends: 
   gcc43,  hdf5 (= 1.6.5-1012), fftw3,


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 cairo-pm.info, 1.1, 1.2 gconf-editor.info, 1.5, 1.6 gnome2-canvas-pm.info, 1.1, 1.2 gnome2-pm.info, 1.1, 1.2 gtk+2.info, 1.4, 1.5 gtk2-gladexml-pm.info, 1

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv31641

Modified Files:
cairo-pm.info gconf-editor.info gnome2-canvas-pm.info 
gnome2-pm.info gtk+2.info gtk2-gladexml-pm.info gtk2-pm.info 
libcanberra-gtk0.info metacity.info pango-pm.info 
pango1-xft2-ft219.info seahorse.info vte9-shlibs.info 
yelp-viewer.info zenity.info 
Log Message:
first pass testing new pixman (update apt deps for c_v of Shlibs)


Index: libcanberra-gtk0.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libcanberra-gtk0.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libcanberra-gtk0.info   3 Jun 2009 16:16:30 -   1.2
+++ libcanberra-gtk0.info   3 Jun 2009 19:51:09 -   1.3
@@ -26,7 +26,7 @@
libtool2,
libvorbis0,
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev
@@ -73,7 +73,7 @@
libtool2-shlibs,
libvorbis0-shlibs,
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11

Files: lib/libcanberra-gtk.*.dylib
@@ -108,7 +108,7 @@
libtool2-shlibs,
libvorbis0-shlibs,
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11

DocFiles: LGPL README

Index: pango1-xft2-ft219.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/pango1-xft2-ft219.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pango1-xft2-ft219.info  22 May 2009 06:54:13 -  1.1
+++ pango1-xft2-ft219.info  3 Jun 2009 19:51:09 -   1.2
@@ -20,7 +20,7 @@
libgettext3-shlibs,
libiconv,
libpng3-shlibs (= 1.2.5-4),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11-shlibs
 
 BuildDepends: 
@@ -37,7 +37,7 @@
libiconv-dev,
libpng3 (= 1.2.5-4),
libthai-dev (= 0.1.9-1),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev (= 2.1.2-5)

Index: gtk+2.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gtk+2.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gtk+2.info  2 Jun 2009 01:52:26 -   1.4
+++ gtk+2.info  3 Jun 2009 19:51:09 -   1.5
@@ -11,7 +11,7 @@
glitz-shlibs,
libiconv,
pango1-xft2-ft219 (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11
 
 BuildDepends: 
@@ -33,7 +33,7 @@
libpng3 (= 1.2.5-4),
libtiff,
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Index: gtk2-gladexml-pm.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gtk2-gladexml-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gtk2-gladexml-pm.info   3 Jun 2009 14:49:30 -   1.1
+++ gtk2-gladexml-pm.info   3 Jun 2009 19:51:09 -   1.2
@@ -40,7 +40,7 @@
libpng3,
libxml2 (= 2.6.30-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Index: pango-pm.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/pango-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pango-pm.info   3 Jun 2009 14:49:30 -   1.1
+++ pango-pm.info   3 Jun 2009 19:51:09 -   1.2
@@ -30,7 +30,7 @@
libgettext3-dev,
libiconv-dev,
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Index: yelp-viewer.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/yelp-viewer.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- yelp-viewer.info2 Jun 2009 05:02:13 -   1.1
+++ yelp-viewer.info3 Jun 2009 19:51:09 -   1.2
@@ -43,7 +43,7 @@
libxslt-shlibs (= 1.1.22-1),
orbit2 (= 2.14.17-1),

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

2009-06-03 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7708/main/finkinfo/net

Modified Files:
varnish.info 
Log Message:
new upstream release

Index: varnish.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/varnish.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- varnish.info14 Feb 2009 06:18:06 -  1.1
+++ varnish.info3 Jun 2009 20:37:57 -   1.2
@@ -1,10 +1,10 @@
 Package: varnish
-Version: 2.0.3
-Revision: 3
+Version: 2.0.4
+Revision: 2
 Depends: %N-shlibs (= %v-%r)
 BuildDepends: libncurses5
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
-Source-MD5: 4233ad2fc3d0c2fcf7bf399f6ccf50b2
+Source-MD5: 8044d59cb6d2ec6d09b7ae6033f06bbf
 SetCFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --with-extra-includes=%p/include 
--with-extra-libs=%p/lib --disable-dependency-tracking
 PatchScript: perl -pi -e 's,\$\{wl\}-flat_namespace \$\{wl\}-undefined 
\$\{wl\}suppress,,g' configure
@@ -15,13 +15,9 @@
   Depends: libncurses5-shlibs
   Files: 
 lib/libvarnish.1.dylib
-lib/libvarnish.1.0.0.dylib
 lib/libvarnishapi.1.dylib
-lib/libvarnishapi.1.0.0.dylib
 lib/libvarnishcompat.1.dylib
-lib/libvarnishcompat.1.0.0.dylib
 lib/libvcl.1.dylib
-lib/libvcl.1.0.0.dylib
   
   Shlibs: 
 %p/lib/libvarnish.1.dylib 2.0.0 %n (= 2.0.3-2)


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome-panel.info, 1.2, NONE

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8149

Removed Files:
gnome-panel.info 
Log Message:
*really* defer


--- gnome-panel.info DELETED ---


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/utils luckybackup-aqua.info, 1.1, 1.2

2009-06-03 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13889/main/finkinfo/utils

Modified Files:
luckybackup-aqua.info 
Log Message:
new upstream release

Index: luckybackup-aqua.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/luckybackup-aqua.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- luckybackup-aqua.info   5 Dec 2008 23:19:06 -   1.1
+++ luckybackup-aqua.info   3 Jun 2009 21:28:20 -   1.2
@@ -1,17 +1,20 @@
 Package: luckybackup-aqua
-Version: 0.1.2
+Version: 0.3.1
 Revision: 1002
 Source: mirror:sourceforge:luckybackup/luckybackup-%v.tar.gz
-Depends: libpng3-shlibs (= 1:1.2.33-1), qt4-mac-core-shlibs (= 4.4.1-1), 
qt4-mac-gui-shlibs (= 4.4.1-1)
-BuildDepends: libpng3 (= 1:1.2.33-1), qt4-mac (= 4.4.1-1)
+Depends: libiconv (= 1.12-3), libpng3-shlibs (= 1:1.2.35-2), 
qt4-mac-core-shlibs (= 4.5.1-1), qt4-mac-gui-shlibs (= 4.5.1-1)
+BuildDepends: libpng3 (= 1:1.2.33-1), qt4-mac (= 4.5.1-1), libiconv-dev
+Conflicts: luckybackup
+Replaces: luckybackup
 Maintainer: Jack Fink jackf...@users.sourceforge.net
 Homepage: http://sourceforge.net/projects/luckybackup
 License: GPL
 Description: Qt4-mac/rsync-based backup utility
 GCC: 4.0
-Source-MD5: 864060909ec87f4fac0f28a67504af56
+Source-MD5: ac3fee1ed72f507e461461854bbc855f
 CompileScript: 
%p/lib/qt4-mac/bin/qmake luckybackup.pro  make
 
+InstallScript: perl -pi -e s,/usr,%p,g Makefile  make install 
INSTALL_ROOT=%d
 AppBundles: luckybackup.app
-DocFiles: licence/gpl.txt:COPYING readme/changelog.txt:ChangeLog 
readme/readme_English.txt:README
+DocFiles: COPYING README


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/utils luckybackup.info, 1.4, 1.5

2009-06-03 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13945/main/finkinfo/utils

Modified Files:
luckybackup.info 
Log Message:
add conflicts/replaces

Index: luckybackup.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/luckybackup.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- luckybackup.info29 May 2009 08:05:53 -  1.4
+++ luckybackup.info3 Jun 2009 21:29:01 -   1.5
@@ -1,9 +1,11 @@
 Package: luckybackup
 Version: 0.3.1
-Revision: 1003
+Revision: 1002
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
 Depends: fontconfig2-shlibs (= 2.4.1-5), freetype219-shlibs (= 2.3.7-7), 
glib2-shlibs (= 2.18.2-1), libgettext3-shlibs (= 0.14.5-2), libiconv (= 
1.12-3), libpng3-shlibs (= 1:1.2.33-1), qt4-x11-core-shlibs (= 4.4.1-1), 
qt4-x11-gui-shlibs (= 4.4.1-1), x11, x11-shlibs
 BuildDepends: fontconfig2-dev (= 2.4.1-5), freetype219 (= 2.3.7-7), 
glib2-dev (= 2.18.2-1), libgettext3-dev (= 0.14.5-2), libiconv-dev (= 
1.12-3), libpng3 (= 1:1.2.33-1), qt4-x11 (= 4.4.1-1), x11-dev
+Conflicts: luckybackup-aqua
+Replaces: luckybackup-aqua
 Maintainer: Jack Fink jackf...@users.sourceforge.net
 Homepage: http://sourceforge.net/projects/luckybackup
 License: GPL


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods extutils-makemaker-pm.info, 1.8, 1.9

2009-06-03 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9089

Modified Files:
extutils-makemaker-pm.info 
Log Message:
New upstream version.

Index: extutils-makemaker-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/extutils-makemaker-pm.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- extutils-makemaker-pm.info  30 May 2009 00:44:23 -  1.8
+++ extutils-makemaker-pm.info  3 Jun 2009 22:29:17 -   1.9
@@ -1,6 +1,6 @@
 Info2: 
 Package: extutils-makemaker-pm%type_pkg[perl]
-Version: 6.50
+Version: 6.52
 Revision: 1
 Architecture: (%type_pkg[perl] = 581) powerpc
 Distribution: (%type_pkg[perl] = 581) 10.4, (%type_pkg[perl] = 5100) 10.5, 
(%type_pkg[perl] = 5100) 10.6
@@ -24,7 +24,7 @@
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/M/MS/MSCHWERN/ExtUtils-MakeMaker-%v.tar.gz
-Source-MD5: b7947235d742412adeb4cb224d0f4c3e
+Source-MD5: 4fe422ca6c19016324b2c50af489ba17
 
 # Install Phase:
 UpdatePOD: True


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/graphics gifsicle.info, 1.3, 1.4 ungifsicle.info, 1.3, 1.4

2009-06-03 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv13794

Modified Files:
gifsicle.info ungifsicle.info 
Log Message:
upstream update

Index: gifsicle.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/gifsicle.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gifsicle.info   14 Dec 2008 20:50:41 -  1.3
+++ gifsicle.info   3 Jun 2009 23:17:16 -   1.4
@@ -1,9 +1,9 @@
 Package: gifsicle
-Version: 1.52
+Version: 1.55
 Revision: 1
 Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de
 Source: http://www.lcdf.org/gifsicle/%n-%v.tar.gz
-Source-MD5: b68d3a08368656b1dfc4066d65c07a05
+Source-MD5: 366e63ac0aa4696397cb46a1384fd65a
 BuildDepends: x11-dev
 Depends: x11
 Conflicts: ungifsicle

Index: ungifsicle.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/ungifsicle.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ungifsicle.info 14 Dec 2008 20:50:41 -  1.3
+++ ungifsicle.info 3 Jun 2009 23:17:16 -   1.4
@@ -1,9 +1,9 @@
 Package: ungifsicle
-Version: 1.52
+Version: 1.55
 Revision: 1
 Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de
 Source: http://www.lcdf.org/gifsicle/%n-%v.tar.gz
-Source-MD5: 1fc49acee2b71b64b202fb4e49a729f7
+Source-MD5: bcc6618559f9bbc5313bf2f80116d1e0
 BuildDepends: x11-dev
 Depends: x11
 Conflicts: gifsicle


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/graphics dcraw.info,1.3,1.4

2009-06-03 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14591/graphics

Modified Files:
dcraw.info 
Log Message:
upstream update

Index: dcraw.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/dcraw.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- dcraw.info  14 Apr 2009 09:54:16 -  1.3
+++ dcraw.info  3 Jun 2009 23:22:14 -   1.4
@@ -1,5 +1,5 @@
 Package: dcraw
-Version: 8.93
+Version: 8.94
 Revision: 1
 Description: Raw digital photo decoder
 Architecture: powerpc, i386
@@ -9,7 +9,7 @@
 
 # Unpack Phase:
 Source: http://www.cybercom.net/~dcoffin/dcraw/archive/dcraw-%v.tar.gz
-Source-MD5: 1ca10ba4be66962f976163c294e58579
+Source-MD5: db75dde82c224128f91b7850b36d263c
 SourceDirectory: dcraw
 
 # Compile Phase (NOTE: there is no configure):
@@ -33,7 +33,7 @@
   for langchar in \
 ca.latin1 cs.latin2 de.latin1 eo.latin3 es.latin1 fr.latin1 \
 hu.latin2 it.latin1 pt.latin1 pl.latin2 ru.koi8-r sv.latin1 \
-zh_TW.big5
+zh_TW.big5 zh_CN.gb2312
   do
 lang=`echo $langchar | cut -d. -f1`
 char=`echo $langchar | cut -d. -f2-`
@@ -58,7 +58,7 @@
 
 DescPort: 
  The compile and install scripts are generated from the commands in the
- file install. The nl and zh_CN files for nl and zh_CN are not 
+ file install. The nl files for nl are not 
  complete and are skipped.
 
 


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel i386-linux-binutils.info, 1.2, 1.3

2009-06-03 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18264

Modified Files:
i386-linux-binutils.info 
Log Message:
upstream update

Index: i386-linux-binutils.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/i386-linux-binutils.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- i386-linux-binutils.info23 Feb 2009 02:40:02 -  1.2
+++ i386-linux-binutils.info3 Jun 2009 23:44:50 -   1.3
@@ -1,5 +1,5 @@
 Package: i386-linux-binutils
-Version: 2.19
+Version: 2.19.1
 Revision: 1
 Architecture: powerpc, i386
 Description: GNU binutils for i386-linux
@@ -7,7 +7,7 @@
 Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de
 
 Source: mirror:gnu:binutils/binutils-%v.tar.bz2
-Source-MD5: 17a52219dee5a76c1a9d9b0bfd337d66
+Source-MD5: 09a8c5821a2dfdbb20665bc0bd680791
 
 SourceDirectory: binutils-%v
 


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 at-spi.info, 1.1, 1.2 bug-buddy.info, 1.1, 1.2 dasher.info, 1.1, 1.2 gcalctool.info, 1.1, 1.2 gconf2.info, 1.1, 1.2 glade3.info, 1.2, 1.3 gnome-terminal.i

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv19361

Modified Files:
at-spi.info bug-buddy.info dasher.info gcalctool.info 
gconf2.info glade3.info gnome-terminal.info libbonoboui2.info 
libglade2.info libgnomecanvas2.info libgnomeprintui2.2.info 
Log Message:
second pass testing new pixman (update apt deps for c_v of Shlibs)


Index: libgnomeprintui2.2.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libgnomeprintui2.2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libgnomeprintui2.2.info 22 May 2009 06:54:13 -  1.1
+++ libgnomeprintui2.2.info 3 Jun 2009 23:53:25 -   1.2
@@ -29,7 +29,7 @@
libpng3,
libxml2 (= 2.6.30-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev
@@ -65,7 +65,7 @@
libpng3-shlibs,
libxml2-shlibs (= 2.6.30-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11-shlibs

Files: 

Index: libglade2.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libglade2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libglade2.info  22 May 2009 06:54:13 -  1.1
+++ libglade2.info  3 Jun 2009 23:53:25 -   1.2
@@ -31,7 +31,7 @@
libpng3,
libxml2 (= 2.6.30-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev
@@ -65,7 +65,7 @@
libxml2-bin (= 2.6.30-1),
libxml2-shlibs (= 2.6.30-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11-shlibs

Replaces: %N ( 2.6.0-1)

Index: glade3.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/glade3.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- glade3.info 3 Jun 2009 16:16:30 -   1.2
+++ glade3.info 3 Jun 2009 23:53:25 -   1.3
@@ -20,7 +20,7 @@
libpng3-shlibs,
libxml2-shlibs (= 2.6.30-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
rarian-compat,
x11
 
@@ -63,7 +63,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
popt,
x11-dev,
@@ -118,7 +118,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2-shlibs (= 2.14.17-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11

Replaces: %N ( 3.4.1-2)

Index: gcalctool.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gcalctool.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gcalctool.info  30 May 2009 15:19:38 -  1.1
+++ gcalctool.info  3 Jun 2009 23:53:25 -   1.2
@@ -45,7 +45,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Index: bug-buddy.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/bug-buddy.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- bug-buddy.info  2 Jun 2009 04:37:42 -   1.1
+++ bug-buddy.info  3 Jun 2009 23:53:25 -   1.2
@@ -26,7 +26,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2-shlibs (= 2.14.17-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
rarian-compat,
x11-shlibs
 
@@ -62,7 +62,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.21-1),
x11-dev,
xft2-dev

Index: at-spi.info
===
RCS file: 

[cvs] experimental/dmacks/finkinfo/gnome-2.26 gok.info, 1.1, 1.2 gthumb.info, 1.1, 1.2 gtk2-engines.info, 1.1, 1.2 gtkhtml3.14-dev.info, 1.1, 1.2 gtksourceview2-dev.info, 1.1, 1.2 gucharmap7-shlibs.in

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28865

Modified Files:
gok.info gthumb.info gtk2-engines.info gtkhtml3.14-dev.info 
gtksourceview2-dev.info gucharmap7-shlibs.info 
libgnomekbd2.info libgnomeui2.info librsvg2.info 
libwnck1.22.info 
Log Message:
finish pixman upgrade (except for gnome-keyring...needs gtk-doc help)


Index: gtk2-engines.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gtk2-engines.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gtk2-engines.info   22 May 2009 06:54:13 -  1.1
+++ gtk2-engines.info   4 Jun 2009 00:46:58 -   1.2
@@ -14,7 +14,7 @@
libiconv,
libpng3-shlibs,
pango1-xft2-ft219 (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11-shlibs
 
 BuildDepends: 
@@ -34,7 +34,7 @@
libiconv-dev,
libpng3,
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev

Index: librsvg2.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/librsvg2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- librsvg2.info   3 Jun 2009 07:38:15 -   1.1
+++ librsvg2.info   4 Jun 2009 00:46:58 -   1.2
@@ -47,7 +47,7 @@
libxml2 (= 2.6.30-1),
pango1-xft2-ft219-dev   (= 1.22.4-3),
pkgconfig   (= 0.23),
-   pixman  (= 0.12.0-1),
+   pixman  (= 0.14.0-1),
x11-dev,
xft2-dev
 
@@ -76,7 +76,7 @@
libpng3-shlibs,
libxml2-shlibs  (= 2.6.30-1),
pango1-xft2-ft219-shlibs(= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs   (= 0.14.0-1),
x11



Index: libgnomeui2.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libgnomeui2.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libgnomeui2.info28 May 2009 16:10:30 -  1.2
+++ libgnomeui2.info4 Jun 2009 00:46:58 -   1.3
@@ -39,7 +39,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
popt,
x11-dev,
@@ -100,7 +100,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2 (= 2.14.17-1),
pango1-xft2-ft219 (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
popt-shlibs,
x11-shlibs


Index: gthumb.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gthumb.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gthumb.info 29 May 2009 15:47:45 -  1.1
+++ gthumb.info 4 Jun 2009 00:46:58 -   1.2
@@ -40,7 +40,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2 (= 2.14.17-1),
pango1-xft2-ft219 (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
popt-shlibs,
rarian-compat,
x11-shlibs
@@ -87,7 +87,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
popt,
x11-dev,

Index: libgnomekbd2.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/libgnomekbd2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libgnomekbd2.info   22 May 2009 06:54:13 -  1.1
+++ libgnomekbd2.info   4 Jun 2009 00:46:58 -   1.2
@@ -21,7 +21,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2-shlibs (= 2.14.17-1),
pango1-xft2-ft219-shlibs (= 1.22.4-3),
-   pixman-shlibs (= 0.12.0-1),
+   pixman-shlibs (= 0.14.0-1),
x11
 
 
@@ -48,7 +48,7 @@
libxml2 (= 2.6.30-1),
orbit2-dev (= 2.14.17-1),
pango1-xft2-ft219-dev (= 1.22.4-3),
-   pixman (= 0.12.0-1),
+   pixman (= 0.14.0-1),
pkgconfig (= 0.23),
x11-dev,
xft2-dev
@@ -90,7 +90,7 @@
libxml2-shlibs (= 2.6.30-1),
orbit2-shlibs (= 2.14.17-1),
pango1-xft2-ft219-shlibs (= 1.22.4-2),
-   pixman-shlibs (= 0.12.0-1),
+

[cvs] dists/10.4/unstable/main/finkinfo/devel global.info, NONE, 1.1 global.patch, NONE, 1.1

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv8581

Added Files:
global.info global.patch 
Log Message:
Resurrected global from -submissions:
https://sourceforge.net/tracker/?func=detailaid=2762975group_id=17203atid=414256
Tested on 10.5/i386

--- NEW FILE: global.patch ---
diff -Nurd global-5.7.5.ori/Makefile.am global-5.7.5/Makefile.am
--- global-5.7.5.ori/Makefile.am2009-03-13 21:30:37.0 -0300
+++ global-5.7.5/Makefile.am2009-04-14 16:31:29.0 -0300
@@ -17,9 +17,7 @@
 SUBDIRS += gtags-parser global gozilla gtags htags htags-refkit gtags-cscope 
doc icons
 
 gtagsdir = ${datadir}/gtags
-gtags_DATA = AUTHORS COPYING ChangeLog FAQ INSTALL LICENSE NEWS README THANKS \
-globash.rc gtags.conf gtags.el gtags.pl gtags.vim \
-   BOKIN_MODEL BOKIN_MODEL_FAQ DONORS
+gtags_DATA = globash.rc gtags.conf gtags.el gtags.pl gtags.vim
 
 EXTRA_DIST = ${gtags_DATA} reconf.sh convert.pl
 

--- NEW FILE: global.info ---
Package: global
Version: 5.7.5
Revision: 1
Description: Source code tag system for C, C++, Java, etc
License: GPL
Homepage: http://www.gnu.org/software/global
Maintainer: Monic Polynomial moni...@users.sourceforge.net

Source: gnu
Source-MD5: fc1abfb42480d80f3e18c6f27de54688

PatchFile: %n.patch
PatchFile-MD5: e287a87993feddc96006462c1dd054f4

BuildDepends: fink (= 0.24.12) 

SetCFLAGS: -Os
ConfigureParams: --prefix=%p --mandir=%p/share/man --infodir=%p/share/info 
--disable-dependency-tracking

InstallScript: make install DESTDIR=%d

DocFiles: AUTHORS BOKIN_MODEL BOKIN_MODEL_FAQ ChangeLog COPYING DONORS FAQ 
INSTALL LICENSE NEWS README THANKS
InfoDocs: global.info

DescDetail: 
GNU GLOBAL is a source code tag system that works the same way across diverse
environments such as Emacs editor, Vi editor, Less viewer, Bash shell, various
web browsers, etc. You can locate specified objects such as functions, macros,
structs, classes in your source files and move there easily. It is useful for
hacking large projects which contain many sub-directories, many #ifdef and many
main() functions. It is similar to ctags or etags, but is different from them
at the point of independence of any editor.


DescUsage: 
Editor-specific GLOBAL files are located under %p/share/gtags.



--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/x11 xspim.info, NONE, 1.1 xspim.patch, NONE, 1.1

2009-06-03 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/x11
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv6536

Added Files:
xspim.info xspim.patch 
Log Message:
Resurrected xspim from -submissions
https://sourceforge.net/tracker/?func=detailaid=2752540group_id=17203atid=414256
Tested on 10.5/i386

--- NEW FILE: xspim.patch ---
diff -Nurd spim-7.4.ori/COPYING spim-7.4/COPYING
--- spim-7.4.ori/COPYING1969-12-31 21:00:00.0 -0300
+++ spim-7.4/COPYING2009-04-08 07:18:25.0 -0300
@@ -0,0 +1,18 @@
+SPIM is copyrighted by James R. Larus and distributed under the
+following conditions:
+
+You may make copies of SPIM for your own use and modify those copies.
+
+All copies of SPIM must retain my name and copyright notice.
+
+You may not sell SPIM or distribute SPIM in conjunction with a
+commercial product or service without the expressed written consent of
+James Larus.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
[...1501 lines suppressed...]
-   @echo install in $(CURRENT_DIR) done
-
-install.man::
-   @echo install.man in $(CURRENT_DIR) done
-
-install.sdk::
-   @echo install.sdk in $(CURRENT_DIR) done
-
-Makefiles::
-
-includes::
-
-depend::
-
-distclean::
-   $(RM) Makefile Makefile.dep
-
-# --
-# dependencies generated by makedepend
-

--- NEW FILE: xspim.info ---
Package: xspim
Version: 7.4
Revision: 1
Description: MIPS simulator
License: Restrictive
Homepage: http://pages.cs.wisc.edu/~larus/spim.html
Maintainer: Monic Polynomial moni...@users.sourceforge.net

Source: http://www.cs.wisc.edu/~larus/SPIM/spim.tar.gz
Source-MD5: 4aae83509d47a5a98d37db5b469cbe9e
SourceDirectory: spim-%v

PatchFile: %n.patch
PatchFile-MD5: 5ed5834886c959a2ba5cba86d49c184c

Depends: x11
BuildDepends: fink (= 0.24.12), x11-dev

CompileScript: 
#!/bin/bash -ev
cd xspim
./Configure
make EXCEPTION_DIR=%p/lib/xspim


InstallScript: 
#!/bin/bash -ev
cd xspim
make BIN_DIR=%i/bin EXCEPTION_DIR=%i/lib/xspim MAN_DIR=%i/share/man/man1 
install install-man
/usr/bin/install -d -m 755 %i/share/xspim
/bin/cp -R ../Tests %i/share/xspim
/bin/chmod -R go=u-w %i/share/xspim


DocFiles: ChangeLog README VERSION COPYING Documentation/BLURB 
Documentation/SPIM.html Documentation/TeX

DescDetail: 
spim is a self-contained simulator that will run MIPS32 assembly language
programs. It reads and executes assembly language programs written for this
processor. spim also provides a simple debugger and minimal set of operating
system services. spim does not execute binary (compiled) programs.

spim implements almost the entire MIPS32 assembler-extended instruction set.
(It omits most floating point comparisons and rounding modes and the memory
system page tables.) The MIPS architecture has several variants that differ in
various ways (e.g., the MIPS64 architecture supports 64-bit integers and
addresses), which means that spim will not run programs compiled for all types
of MIPS processors. MIPS compilers also generate a number of assembler
directives that spim cannot process. These directives usually can be safely
deleted.

Earlier versions of spim (before 7.0) implemented the MIPS-I instruction set
used on the MIPS R2000/R3000 computers. This architecture is obsolete (though,
has never been surpassed for its simplicity and elegance). spim now supports
the more modern MIPS32 architecture, which is the MIPS-I instruction set
augmented with a large number of occasionally useful instructions. MIPS code
from earlier versions of SPIM should run without changes, except code that
handles exceptions and interrupts. This part of the architecture changed over
time (and was poorly implemented in earlier versions of spim). Code of this
sort need to be updated. Examples of the new code are in
%p/lib/spim/exceptions.s and
%p/share/spim/Tests/tt.io.s.

spim implements both a simple, terminal-style interface and a window interface.
The spim program provides a simple terminal interface and the xspim program
provides the windowing interface.


DescPackaging: 
In order to get rid of xmkmf/imake, the patch script was actually based on the
Makefile from ../spim (the console version), adding the appropriate
X11 header/library flags.



--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net

[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods extutils-install-pm.info, NONE, 1.1

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5121

Added Files:
extutils-install-pm.info 
Log Message:
new package, solves a problem with new extutils-makemaker-pmXXX


--- NEW FILE: extutils-install-pm.info ---
Package: extutils-install-pm
Version: 1.52
Revision: 1
Source: mirror:cpan:authors/id/Y/YV/YVES/ExtUtils-Install-%v.tar.gz
Source-MD5: dae7528d24d2aa14204df3a873b77e5a
Type: perl
UpdatePOD: true
DocFiles: Changes README
DescPackaging: 
ExtUtils::Install declares deps on ExtUtils::MakeMaker, which
is part of perl core for all supported versions, therefore
don't need to be perlversioned or specify that dependency.
That's good, because EU::MM uses EU::I and newer versions of
EU::MM require this newer-than-core EU::I, so we can set the
functional dependency EU::I-EU::MM and not be circular. See:
http://rt.cpan.org/Ticket/Display.html?id=46658

DescDetail: 
Back-end/internals for ExtUtils::MakeMaker and Module::Build

Description: Installer for perl modules
License: Artistic/GPL
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://search.cpan.org/dist/ExtUtils::Install


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo/gnome-2.26 gnome2-canvas-pm.info, 1.2, 1.3

2009-06-03 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7490

Modified Files:
gnome2-canvas-pm.info 
Log Message:
bug still exists


Index: gnome2-canvas-pm.info
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.26/gnome2-canvas-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnome2-canvas-pm.info   3 Jun 2009 19:51:09 -   1.2
+++ gnome2-canvas-pm.info   4 Jun 2009 04:34:53 -   1.3
@@ -64,7 +64,7 @@
 
 DescPort: 
ExtUtils::Liblist::Kid can't handle -framework flags even as
-   of ExtUtils-MakeMaker-6.42, but the -framework flags published
+   of ExtUtils-MakeMaker-6.52, but the -framework flags published
by libglade-2.0's dependencies aren't needed directly by
GladeXML.bundle. Ignore the build warning for now. See:
http://rt.cpan.org/Ticket/Display.html?id=32894


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods finance-quote-pm.info, 1.6, 1.7

2009-06-03 Thread Dave Reiser
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv20608

Modified Files:
finance-quote-pm.info 
Log Message:
sync from unstable

Index: finance-quote-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/finance-quote-pm.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- finance-quote-pm.info   16 Jul 2008 17:41:01 -  1.6
+++ finance-quote-pm.info   4 Jun 2009 05:48:45 -   1.7
@@ -1,19 +1,23 @@
 Info2: 
 Package: finance-quote-pm%type_pkg[perl]
-Version: 1.13
-Revision: 3
+Version: 1.15
+Revision: 1
 Depends: 
   perl%type_pkg[perl]-core,
   libwww-pm%type_pkg[perl],
   html-tableextract-pm%type_pkg[perl] (= 2.10-1),
-  crypt-ssleay-pm%type_pkg[perl] (= 0.51-1)
+  crypt-ssleay-pm%type_pkg[perl] (= 0.51-1),
+  html-tree-pm%type_pkg[perl] (=3.23-1)
 
 BuildDepends: fink (= 0.20.1-1)
-Source: mirror:cpan:authors/id/H/HA/HAMPTON/Finance-Quote-%v.tar.gz
-Source-MD5: 3619ccb3fb09ed9eebe1941e6cf361c9
+Source: mirror:cpan:authors/id/E/EC/ECOCODE/Finance-Quote-%v.tar.gz
+Source-MD5: 8d99f7dc5a574477d07aeb219c3f3982
 Type: perl (5.8.6 5.8.8)
 UpdatePOD: True
 DocFiles: MANIFEST Documentation/FAQ Documentation/Hackers-Guide 
Documentation/README Documentation/License INSTALL
+InfoTest: 
+  TestScript: ONLINE_TEST=1 make test || exit 2
+
 InstallScript: 
%{default_script}
mv %i/share/man %i/lib/perl5/%type_raw[perl]
@@ -23,6 +27,9 @@
 Provides access to time-delayed stockquotes from a number of sources.  After 
 you've installed the pacakage, try 'perldoc Finance::Quote'. This version makes
 use of https for several quote sources.
+
+1.14 updates many retrieval modules. European mutual funds identified by ISIN
+don't work 100% with yahoo_europe yet.
 
 License: GPL
 Maintainer: Dave Reiser dbrei...@users.sourceforge.net


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/crypto/finkinfo gnucash2.info,1.24,1.25

2009-06-03 Thread Dave Reiser
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv21155

Modified Files:
gnucash2.info 
Log Message:
add appropriate Distribution: field

Index: gnucash2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/gnucash2.info,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- gnucash2.info   24 Feb 2009 07:22:22 -  1.24
+++ gnucash2.info   4 Jun 2009 05:51:01 -   1.25
@@ -1,6 +1,7 @@
 Package: gnucash2
 Version: 2.2.9
-Revision: 1
+Revision: 2
+Distribution: 10.4
 Description: Financial-accounting software
 License: GPL
 Maintainer: Dave Reiser dbrei...@users.sourceforge.net
@@ -47,6 +48,7 @@
   libavahi-glib1-dev,
   libbonobo2-dev (= 2.24.0-1),
   libbonoboui2-dev (= 2.24.0-1),
+  libgcrypt,
   libgettext3-dev,
   libglade2 (= 2.6.3-2),
   libgnome2-dev (= 2.24.1-1),
@@ -142,6 +144,7 @@
 libavahi-glib1-shlibs,
 libbonobo2-shlibs (= 2.24.0-1),
 libbonoboui2-shlibs (= 2.24.0-1),
+libgcrypt-shlibs,
 libgettext3-shlibs,
 libglade2-shlibs (= 2.6.3-2),
 libgnome2-shlibs (= 2.24.1-1),


--
OpenSolaris 2009.06 is a cutting edge operating system for enterprises 
looking to deploy the next generation of Solaris that includes the latest 
innovations from Sun and the OpenSource community. Download a copy and 
enjoy capabilities such as Networking, Storage and Virtualization. 
Go to: http://p.sf.net/sfu/opensolaris-get
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/crypto/finkinfo aqbanking20.info, NONE, 1.1 gnucash2.info, 1.1, 1.2 gnucash2-10.5.info, 1.1, 1.2 gwenhywfar47.info, 1.1, 1.2

2009-06-03 Thread Dave Reiser
Update of /cvsroot/fink/dists/10.4/stable/crypto/finkinfo
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23226

Modified Files:
gnucash2.info gnucash2-10.5.info gwenhywfar47.info 
Added Files:
aqbanking20.info 
Log Message:
sync from unstable

--- NEW FILE: aqbanking20.info ---
Package: aqbanking20
Version: 3.8.2
Revision: 1
Description: Online banking interface
License: GPL
Maintainer: Dave Reiser dbrei...@users.sourceforge.net
GCC: 4.0
Depends: 
  %N-shlibs (= %v-%r)

BuildDepends: 
  freetype219 (= 2.2.1-5),
  gettext-bin,
  gettext-tools,
  gmp,
  gnutls26,
  gwenhywfar47 (= 3.4.1-1),
  ktoblzcheck (=1.11),
  libgcrypt,
  libgettext3-dev,
  libgpg-error,
  libiconv-dev,
  libtasn1-3,
  qt3,
  x11-dev

BuildDependsOnly: True
Conflicts: aqbanking, aqhbci, aqhbci-qt-tools, aqbanking16
Replaces: aqbanking, aqhbci, aqhbci-qt-tools, aqbanking16
Source: mirror:custom:aqbanking-%v.tar.gz
CustomMirror: 
  aqb: 
http://www2.aquamaniac.de/sites/download/download.php?package=03release=29file=01dummy=

Source-MD5: 195d3835f48cc54d59091e5c14a0eb86
PatchScript: 
  perl -pi -e 's/-L\S+//' src/plugins/bankinfo/generic/Makefile.in
  perl -pi -e 's/-L\S+//' src/libs/aqbanking++/Makefile.in
  perl -pi -e 's/-L\S+//' 
src/plugins/backends/aqhbci/ui/qt3/libs/logmanager/Makefile.in
  perl -pi -e 's/-L\S+//' src/test/Makefile.in

ConfigureParams: --with-qt3-includes=%p/include/qt --with-qt3-libs=%p/lib 
--disable-dependency-tracking --datadir=%p/share/aqbanking20 
PKG_CONFIG_PATH=%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH
 FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config
SetCPPFLAGS: -I%p/lib/system-openssl/include
SetLDFLAGS: -L%p/lib/system-openssl/lib 
-Wl,-dylib_file,/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
NoSetMAKEFLAGS: true
SetMAKEFLAGS: -j1
CompileScript: 
./configure %c
make

InstallScript: 
make install DESTDIR=%d

DocFiles: README COPYING
SplitOff: 
  Package: %N-shlibs
  Depends: 
freetype219-shlibs (= 2.2.1-5),
gmp-shlibs,
gnutls26-shlibs,
gwenhywfar47-shlibs (= 3.4.1-1),
ktoblzcheck-bankdata (=1.11),
ktoblzcheck-shlibs (=1.11),
libgcrypt-shlibs,
libgettext3-shlibs,
libgpg-error-shlibs,
libiconv,
libtasn1-3-shlibs,
qt3-shlibs,
x11-shlibs
  
  Shlibs: 
%p/lib/libaqbanking.20.dylib   29.0.0 %n (= 3.8.0-1)
%p/lib/libaqhbci.13.dylib  15.0.0 %n (= 3.7.2-1)
%p/lib/libaqnone.20.dylib  29.0.0 %n (= 3.8.0-1)
%p/lib/libaqofxconnect.4.dylib  5.0.0 %n (= 3.5.0-1)
%p/lib/libqbanking.6.dylib  7.0.0 %n (= 3.8.0-1)
  
  Files: 
lib/aqbanking
lib/gwenhywfar/plugins
lib/libaqbanking.20.dylib
lib/libaqbanking.20.8.2.dylib
lib/libaqhbci.13.dylib
lib/libaqhbci.13.1.0.dylib
lib/libaqnone.20.dylib
lib/libaqnone.20.8.2.dylib
lib/libaqofxconnect.4.dylib
lib/libaqofxconnect.4.0.0.dylib
lib/libqbanking.6.0.0.dylib
lib/libqbanking.6.dylib
share/aqbanking20/locale
share/aqbanking20/aqbanking
  
  DocFiles: COPYING

DescDetail: 
AqBanking is a generic online banking interface. It allows multiple
backends (currently HBCI and OFX Direct Connect) to be used.

DescPackaging: 
AqGeldKarte backend is disabled because it depends on libchipcard which is not 
packaged yet.

Homepage: http://www.aquamaniac.de

Index: gnucash2.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/crypto/finkinfo/gnucash2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnucash2.info   16 Jul 2008 03:00:25 -  1.1
+++ gnucash2.info   4 Jun 2009 05:58:52 -   1.2
@@ -1,6 +1,7 @@
 Package: gnucash2
-Version: 2.2.5
-Revision: 52
+Version: 2.2.9
+Revision: 2
+Distribution: 10.4
 Description: Financial-accounting software
 License: GPL
 Maintainer: Dave Reiser dbrei...@users.sourceforge.net
@@ -8,66 +9,70 @@
   %N-shlibs (= %v-%r),
   crypt-ssleay-pm586,
   date-manip-pm, 
-  finance-quote-pm586 (= 1.13-3),
+  finance-quote-pm586 (= 1.15-1),
   finance-quotehist-pm586 (= 1.11-1),
   guile18,
-  gconf2 (= 2.20.0-1),
+  gconf2 (= 2.24.0-1),
   system-perl586,
   x11
 
 BuildDepends: 
-  aqbanking16,
-  atk1 (= 1.20.0-1),
+  aqbanking20,
+  atk1 (= 1.24.0-1),
   audiofile,
   avahi-dev,
   bzip2-dev,
-  cairo (= 1.6-1),
-  dbus-dev (= 1.0-1),
+  cairo (= 1.8.0-3),
+  dbus-dev (= 1.2.3-6),
+  enchant1-dev,
   esound (= 0.2.38-1),
   expat1,
   fink (= 0.28-1),
-  fontconfig2-dev (= 2.4.1-1),
-  freetype219 (= 2.3.5-1),
-  gail18-dev (= 1.20.0-1),
-  gconf2-dev (= 2.20.0-1),
+  fontconfig2-dev (= 2.4.1-5),
+  freetype219 (= 2.3.7-7),
+  gconf2-dev (= 2.24.0-1),
   gettext-tools,
-  glib2-dev (= 2.14.0-1),
+  glib2-dev (= 2.18.2-1),
   glitz,
   gmp,
-  gnome-keyring-dev (= 0.8.1-1),
-  gnome-vfs2-unified-dev (=