dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods mail-folder-pm.info,NONE,1.1 mail-folder-pm.patch,NONE,1.1 mail-folder-pm581.info,1.1,NONE mail-folder-pm581.patch,1.1,NONE

2005-05-26 Thread Dave Vasilevsky
Update of 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10285

Added Files:
mail-folder-pm.info mail-folder-pm.patch 
Removed Files:
mail-folder-pm581.info mail-folder-pm581.patch 
Log Message:
tiger ok

--- mail-folder-pm581.patch DELETED ---

--- NEW FILE: mail-folder-pm.patch ---
diff -Naur MailFolder-0.07/Mail/Folder/Emaul.pm 
MailFolder-new/Mail/Folder/Emaul.pm
--- MailFolder-0.07/Mail/Folder/Emaul.pmSun Apr  5 13:22:16 1998
+++ MailFolder-new/Mail/Folder/Emaul.pm Tue Dec 30 23:23:09 2003
@@ -499,7 +499,7 @@
  or carp link return: $!\n;
my @statary = stat($lockfile);
unlink $lockfile;
-   if (!defined(@statary) || $statary[3] != 2) { # failed to link?
+if (([EMAIL PROTECTED]) || $statary[3] != 2) { # failed to link?
  goto RETRY;
}
   }
diff -Naur MailFolder-0.07/Mail/Folder/Maildir.pm 
MailFolder-new/Mail/Folder/Maildir.pm
--- MailFolder-0.07/Mail/Folder/Maildir.pm  Sun Apr  5 13:22:18 1998
+++ MailFolder-new/Mail/Folder/Maildir.pm   Tue Dec 30 23:23:09 2003
@@ -546,7 +546,9 @@
 
   my $dir = new DirHandle $folder_dir/cur
 or croak can't open $folder_dir/cur: $!;
-  my @files = sort map { cur/$_ } grep((!/^\./ 
+  my @files = map { cur/$_-[0] } sort { $a-[1] = $b-[1] }
+ map { /^(\d+)\./; [ $_, $1 ] }
+   grep((!/^\./ 
  !/^RCS$/ 
  -f $folder_dir/cur/$_),
 $dir-read);
@@ -554,7 +556,9 @@
   if (0) {
 $dir = new DirHandle $folder_dir/new
   or croak can't open $folder_dir/new: $!;
-push @files, sort map { new/$_ } grep((!/^\./ 
+push @files, map { cur/$_-[0] } sort { $a-[1] = $b-[1] }
+map { /^(\d+)\./; [ $_, $1 ] }
+   grep((!/^\./ 
 !/^RCS$/ 
 -f $folder_dir/new/$_),
$dir-read);
diff -Naur MailFolder-0.07/Mail/Folder/Mbox.pm 
MailFolder-new/Mail/Folder/Mbox.pm
--- MailFolder-0.07/Mail/Folder/Mbox.pm Sun Apr  5 13:22:32 1998
+++ MailFolder-new/Mail/Folder/Mbox.pm  Tue Dec 30 23:23:09 2003
@@ -544,6 +544,10 @@
 
   my $tmpdir = $ENV{TMPDIR} ? $ENV{TMPDIR} : /tmp;
 
+  if ( defined( $self-{MBOX_WorkingDir})) {
+warn Working dir is already set!\n;
+  }
+
   $self-{MBOX_WorkingDir} = undef;
   $folder_id++;
   for my $i ($folder_id .. ($folder_id + 10)) {
@@ -555,6 +559,7 @@
   }
   croak can't seem to be able to create a working directory\n
 unless (defined($self-{MBOX_WorkingDir}));
+
   $self-set_option('DotLock', 1)
 unless defined($self-get_option('DotLock'));
 
@@ -617,7 +622,7 @@
   # the appropriate methods should have removed them already...
   if ($self-{Creator} == $$) {
 $self-_unlock_folder;
-$self-_clean_working_dir;
+$self-_clean_working_dir if ( -d $self-{MBOX_WorkingDir} );
   }
 }
 ###
@@ -733,7 +738,7 @@
   # unlink(glob($self-{MBOX_WorkingDir}/*));
   # maybe this should filter out directories, just to be safe...
   my $dir = DirHandle-new($self-{MBOX_WorkingDir})
-or croak yeep! can't read $self-{MBOX_WorkingDir} disappeared: $!\n;
+or croak yeep! can't read $self-{MBOX_WorkingDir}: $!\n;
   for my $file ($dir-read) {
 next if (($file eq '.') || ($file eq '..'));
 next if (-d $self-{MBOX_WorkingDir}/$file);
@@ -779,7 +784,7 @@
or carp link return: $!\n;
  my @statary = stat($lockfile);
  unlink $lockfile;
- if (!defined(@statary) || $statary[3] != 2) { # failed to link?
+  if (([EMAIL PROTECTED]) || $statary[3] != 2) { # failed to link?
goto RETRY;
  }
}
diff -Naur MailFolder-0.07/Mail/Folder.pm MailFolder-new/Mail/Folder.pm
--- MailFolder-0.07/Mail/Folder.pm  Sun Apr  5 13:22:22 1998
+++ MailFolder-new/Mail/Folder.pm   Tue Dec 30 23:24:18 2003
@@ -413,7 +413,7 @@
 If Cparserobject is specified it will be used instead of an
 internally created parser object.  The parser object is expected to a
 class instance and a subcless (however far removed) of
-CMIME::ParserBase.
+CMIME::Parser.
 
 Options are specified as hash items using key and value pairs.
 
@@ -441,8 +441,8 @@
   my %options = @_;
   
   $parser ||= new MIME::Parser or return undef;
-  croak $parser isn't a subclass of MIME::ParserBase
-unless $parser-isa('MIME::ParserBase');
+  croak $parser isn't a subclass of MIME::Parser
+unless $parser-isa('MIME::Parser');
   
   my $file = $self-get_message_file($msg) or return undef;
   
@@ -762,7 +762,7 @@
 
 =cut
 
-sub message_list { return(keys %{$_[0]-{Messages}}); }
+sub message_list { return(sort keys 

dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods devel-smallprof-pm.info,NONE,1.1 devel-smallprof-pm581.info,1.1,NONE

2005-05-26 Thread Dave Vasilevsky
Update of 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13514

Added Files:
devel-smallprof-pm.info 
Removed Files:
devel-smallprof-pm581.info 
Log Message:
tiger ok

--- devel-smallprof-pm581.info DELETED ---

--- NEW FILE: devel-smallprof-pm.info ---
Info2: 
Package: devel-smallprof-pm%type_pkg[perl]
Version: 2.00b03
Revision: 11
Source: mirror:cpan:authors/id/S/SA/SALVA/Devel-SmallProf-2.00_03.tar.gz
Source-MD5: 1f49270b64a43d9d5b25ea2f4f982191

Replaces: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 (= 2.00b03-11)
Conflicts: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 (= 2.00b03-11)
BuildDepends: fink (= 0.20.1-1)
Depends: perl%type_pkg[perl]-core, time-hires-pm%type_pkg[perl]

Type: perl (5.8.1 5.8.4 5.8.6)
UpdatePOD: true
DocFiles: Changes MANIFEST README TODO
Description: Per-line Perl profiler
DescDetail: 
The Devel::SmallProf profiler is focused on the time taken for a 
program run on a line-by-line basis. It is intended to be as 
small in terms of impact on the speed and memory usage of the 
profiled program as possible and also in terms of being simple 
to use.

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

License: GPL
Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
Homepage: http://search.cpan.org/dist/Devel-SmallProf-1.15/



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods devel-smallprof-pm.info,1.1,1.2

2005-05-26 Thread Dave Vasilevsky
Update of 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13967

Modified Files:
devel-smallprof-pm.info 
Log Message:
typo, that's 

Index: devel-smallprof-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods/devel-smallprof-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- devel-smallprof-pm.info 26 May 2005 07:37:41 -  1.1
+++ devel-smallprof-pm.info 26 May 2005 07:40:07 -  1.2
@@ -5,8 +5,8 @@
 Source: mirror:cpan:authors/id/S/SA/SALVA/Devel-SmallProf-2.00_03.tar.gz
 Source-MD5: 1f49270b64a43d9d5b25ea2f4f982191
 
-Replaces: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 (= 2.00b03-11)
-Conflicts: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 (= 
2.00b03-11)
+Replaces: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 ( 2.00b03-11)
+Conflicts: devel-smallprof-pm (= 1.15-1), devel-smallprof-pm581 ( 
2.00b03-11)
 BuildDepends: fink (= 0.20.1-1)
 Depends: perl%type_pkg[perl]-core, time-hires-pm%type_pkg[perl]
 



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome pygtk2-py.info,1.5,1.6

2005-05-26 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14433/10.3/unstable/main/finkinfo/gnome

Modified Files:
pygtk2-py.info 
Log Message:
Fix building on Tiger.


Index: pygtk2-py.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/pygtk2-py.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- pygtk2-py.info  12 Mar 2005 17:47:33 -  1.5
+++ pygtk2-py.info  26 May 2005 07:43:10 -  1.6
@@ -57,7 +57,6 @@
 Source: mirror:gnome:sources/pygtk/2.0/pygtk-%v.tar.bz2
 Source-MD5: 14db9cfffe31f6df0351bd5fec69f606
 Type: python (2.2 2.3 2.4)
-SetMACOSX_DEPLOYMENT_TARGET: 10.3
 ConfigureParams: --mandir='${prefix}/share/man'
 CompileScript: 
   PYTHON=%p/bin/python%type_raw[python] ./configure %c



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome pygtk2-py.info,1.1,1.2

2005-05-26 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14433/10.4-transitional/unstable/main/finkinfo/gnome

Modified Files:
pygtk2-py.info 
Log Message:
Fix building on Tiger.


Index: pygtk2-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/pygtk2-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- pygtk2-py.info  27 Apr 2005 03:25:42 -  1.1
+++ pygtk2-py.info  26 May 2005 07:43:10 -  1.2
@@ -57,7 +57,6 @@
 Source: mirror:gnome:sources/pygtk/2.0/pygtk-%v.tar.bz2
 Source-MD5: 14db9cfffe31f6df0351bd5fec69f606
 Type: python (2.2 2.3 2.4)
-SetMACOSX_DEPLOYMENT_TARGET: 10.3
 ConfigureParams: --mandir='${prefix}/share/man'
 CompileScript: 
   PYTHON=%p/bin/python%type_raw[python] ./configure %c



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods set-object-pm.info,1.1,1.2 expect-simple-pm.info,1.1,1.2 dbi-shell-pm.info,1.1,1.2

2005-05-26 Thread Dave Vasilevsky
Update of 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27081

Modified Files:
set-object-pm.info expect-simple-pm.info dbi-shell-pm.info 
Log Message:
tiger ok

Index: set-object-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods/set-object-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- set-object-pm.info  27 Apr 2005 03:09:35 -  1.1
+++ set-object-pm.info  26 May 2005 08:53:48 -  1.2
@@ -1,15 +1,17 @@
 Info2: 
 Package: set-object-pm%type_pkg[perl]
-Version: 1.08
-Revision: 1
+Version: 1.10
+Revision: 11
 ###
 Depends: perl%type_pkg[perl]-core
 BuildDepends: fink (= 0.20.1-1)
+Replaces: %{Ni}581 ( 1.10-11)
+Conflicts: %{Ni}581 ( 1.10-11)
 ###
 Source: mirror:cpan:authors/id/S/SA/SAMV/Set-Object-%v.tar.gz
-Source-MD5: b03625f1dcd7c88139a0784a79fd0db8
+Source-MD5: dbedd46eed915c5883c750c7d3d04ab4
 ###
-Type: perl (5.8.1)
+Type: perl (5.8.1 5.8.4 5.8.6)
 UpdatePOD: true
 ###
 DocFiles: Changes MANIFEST README
@@ -19,4 +21,9 @@
 License: Artistic
 Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
 Homepage: http://search.cpan.org/dist/Set-Object
+###
+InstallScript: 
+  %{default_script}
+  mv %i/share/man %i/lib/perl5/%type_raw[perl]
+
 

Index: dbi-shell-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods/dbi-shell-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dbi-shell-pm.info   27 Apr 2005 03:09:33 -  1.1
+++ dbi-shell-pm.info   26 May 2005 08:53:48 -  1.2
@@ -1,20 +1,41 @@
-Package: dbi-shell-pm
+Info2: 
+Package: dbi-shell-pm%type_pkg[perl]
 Version: 11.93
-Revision: 1
-Type: perl
-Description: Perl module, interactive shell for the DBI
-License: Artistic/GPL
-Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
-
-Depends: io-tee-pm
-
-# Unpack Phase:
+Revision: 12
+###
+Depends: 
+   perl%type_pkg[perl]-core, dbi-pm%type_pkg[perl],
+   io-tee-pm, text-reform-pm
+
+BuildDepends: fink (= 0.20.1-1)
+Replaces: %{Ni}
+Conflicts: %{Ni}
+###
 Source: mirror:cpan:authors/id/T/TL/TLOWERY/DBI-Shell-%v.tar.gz
 Source-MD5: e9bc7baed5d2807a750789f28c7ff45e
-
-# Install Phase:
-UpdatePOD: True
+###
+Type: perl (5.8.1 5.8.4 5.8.6)
+UpdatePOD: true
+###
 DocFiles: Changes MANIFEST README
-
-# Additional Info:
+###
+Description: Perl module, interactive shell for the DBI
+###
+License: Artistic
+Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
 Homepage: http://search.cpan.org/dist/DBI-Shell/
+###
+InstallScript: 
+  %{default_script}
+  mv %i/share/man %i/lib/perl5/%type_raw[perl]
+
+
+SplitOff: 
+   Package: %N-bin
+   DocFiles: Changes MANIFEST README
+   Files: bin
+   Depends: %N (= %v-%r)
+   Conflicts: %{Ni}581-bin, %{Ni}584-bin, %{Ni}586-bin
+   Replaces: %{Ni}581-bin, %{Ni}584-bin, %{Ni}586-bin
+
+

Index: expect-simple-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/perlmods/expect-simple-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- expect-simple-pm.info   27 Apr 2005 03:09:34 -  1.1
+++ expect-simple-pm.info   26 May 2005 08:53:48 -  1.2
@@ -1,17 +1,17 @@
 Info2: 
-
 Package: expect-simple-pm%type_pkg[perl]
 Version: 0.02
-Revision: 2
+Revision: 12
 ###
-Depends: expect-pm%type_pkg[perl]
-BuildDepends: perl%type_pkg[perl]-core
-Replaces: expect-simple-pm (= 0.02-2), expect-simple-pm560, 
expect-simple-pm580, expect-simple-pm581
+Depends: expect-pm%type_pkg[perl], perl%type_pkg[perl]-core
+BuildDepends: fink (= 0.20.1-1)
+Replaces: %{Ni}581 ( 0.02-12)
+Conflicts: %{Ni}581 ( 0.02-12)
 ###
 Source: mirror:cpan:authors/id/D/DJ/DJERIUS/Expect-Simple-%v.tar.gz
 Source-MD5: 23c72fa4461f07522eb8c8511bad5d43
 ###
-Type: perl (5.8.1)
+Type: perl (5.8.1 5.8.4 5.8.6)
 UpdatePOD: true
 ###
 DocFiles: LICENSE MANIFEST README
@@ -21,6 +21,9 @@
 License: Artistic
 Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
 Homepage: http://search.cpan.org/dist/Expect-Simple
-
-# end of Info2 field:
+###
+InstallScript: 
+  %{default_script}
+  mv %i/share/man %i/lib/perl5/%type_raw[perl]
+
 



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/utils findutils.info,1.4,1.5

2005-05-26 Thread Dave Vasilevsky
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4594/utils

Modified Files:
findutils.info 
Log Message:
use new gettext

Index: findutils.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/utils/findutils.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- findutils.info  5 May 2005 22:51:39 -   1.4
+++ findutils.info  26 May 2005 09:37:38 -  1.5
@@ -1,9 +1,9 @@
 Package: findutils
 Version: 4.2.20
-Revision: 2
+Revision: 3
 Maintainer: Dave Vasilevsky [EMAIL PROTECTED]
-Depends: cron-service
-BuildDepends: gettext-dev, gettext-bin, gettext-tools
+Depends: cron-service, libgettext3-shlibs
+BuildDepends: libgettext3-dev, gettext-bin, gettext-tools
 Source: mirror:gnu:%n/%n-%v.tar.gz
 Source-MD5: 7c8e12165b221dd67a19c00d780437a4
 PatchScript: sed 's|@PREFIX@|%p|g'  %a/%n.patch | patch -p1



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/text diction.info,1.1,1.2

2005-05-26 Thread Dave Vasilevsky
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14233/text

Modified Files:
diction.info 
Log Message:
fix desc

Index: diction.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text/diction.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- diction.info27 Apr 2005 03:26:40 -  1.1
+++ diction.info26 May 2005 10:26:29 -  1.2
@@ -9,9 +9,14 @@
 ConfigureParams: mandir=%p/share/man
 Description: Identifies diction and style errors
 DescDetail: 
-Diction and style are two old standard UNIX commands. Diction identifies wordy 
and commonly misused phrases. Style analyses surface characteristics of a 
document, including sentence length and other readability measures. 
+Diction and style are two old standard UNIX commands. Diction identifies
+wordy and commonly misused phrases. Style analyses surface characteristics
+of a document, including sentence length and other readability measures. 
 
-These programs cannot help you structure a document well, but they can help to 
avoid poor wording and compare the readability (not the understandability!) of 
your documents with others. Both commands support English and German documents.
+These programs cannot help you structure a document well, but they can
+help to avoid poor wording and compare the readability (not the
+understandability!) of your documents with others. Both commands support
+English and German documents.
 
 Homepage: http://www.gnu.org/software/diction/diction.html
 License: GPL



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/xml/news news.en.xml,1.17,1.18

2005-05-26 Thread Alexander Hansen
Update of /cvsroot/fink/web/xml/news
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17756

Modified Files:
news.en.xml 
Log Message:
Better sequence (thanks to Martin)


Index: news.en.xml
===
RCS file: /cvsroot/fink/web/xml/news/news.en.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- news.en.xml 25 May 2005 22:17:57 -  1.17
+++ news.en.xml 26 May 2005 10:50:01 -  1.18
@@ -28,7 +28,14 @@
 filenamefink-0.23.9/filename directory,
 you'll need to run codefink selfupdate/code
 /lili
-For users of the unstable tree, you may be able to upgrade just by running 
codefink selfupdate/code if your version of fink is less than 0.24.5.  It 
will install fink-0.24.5 for you.  After upgrading to 10.4, first check that 
you have the right version of fink by issuing codefink --version/code.  If 
your version is less than 0.24.5, run codefink selfupdate/code to get the 
right version of fink.  Then, whether you selfupdated or not, reinstall the 
fink package using codefink reinstall fink/code, followed by codefink 
selfupdate/code.
+For users of the unstable tree, you may be able to upgrade just by running 
+codefink selfupdate/code if your version of fink is less than 0.24.5.  
+It will install fink-0.24.5 for you.  After upgrading to 10.4, first check 
+that you have the right version of fink by issuing codefink --version/code
+.  If your version is less than 0.24.5, run codefink selfupdate/code to 
+get the right version of fink.  Then, whether you selfupdated or not, 
+reinstall the fink package using codefink rebuild fink/code, 
+and follow that with another codefink selfupdate/code.
 /li
 /ul
 pNot all packages are working yet under 10.4, but that situation will



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/xml/news news.en.rdf,1.18,1.19 news.rdf,1.118,1.119

2005-05-26 Thread Alexander Hansen
Update of /cvsroot/fink/web/xml/news
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23751/news

Modified Files:
news.en.rdf news.rdf 
Log Message:
Updated update procedure



Index: news.rdf
===
RCS file: /cvsroot/fink/web/xml/news/news.rdf,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -d -r1.118 -r1.119
--- news.rdf26 May 2005 03:16:13 -  1.118
+++ news.rdf26 May 2005 11:25:48 -  1.119
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languageen/dc:language
-dc:date2005-05-26T05:15:13+02:00/dc:date
+dc:date2005-05-26T07:22:17-04:00/dc:date
 admin:errorReportsTo rdf:resource=mailto:[EMAIL PROTECTED]/
 item 
rdf:about=http://fink.sourceforge.net/news/#2005-04-29%20Fink%20and%20Tiger.;
   titleFink and Tiger./title
@@ -31,7 +31,14 @@
 fink-0.23.9 directory,
 you'll need to run fink selfupdate
 
-For users of the unstable tree, you may be able to upgrade just by running 
fink selfupdate if your version of fink is less than 0.24.5.  It will install 
fink-0.24.5 for you.  After upgrading to 10.4, first check that you have the 
right version of fink by issuing fink --version.  If your version is less than 
0.24.5, run fink selfupdate to get the right version of fink.  Then, whether 
you selfupdated or not, reinstall the fink package using fink reinstall fink, 
followed by fink selfupdate.
+For users of the unstable tree, you may be able to upgrade just by running 
+fink selfupdate if your version of fink is less than 0.24.5.  
+It will install fink-0.24.5 for you.  After upgrading to 10.4, first check 
+that you have the right version of fink by issuing fink --version
+.  If your version is less than 0.24.5, run fink selfupdate to 
+get the right version of fink.  Then, whether you selfupdated or not, 
+reinstall the fink package using fink rebuild fink, 
+and follow that with another fink selfupdate.
 
 
 Not all packages are working yet under 10.4, but that situation will
@@ -64,7 +71,14 @@
 fink-0.23.9 directory,
 you'll need to run fink selfupdate
 
-For users of the unstable tree, you may be able to upgrade just by running 
fink selfupdate if your version of fink is less than 0.24.5.  It will install 
fink-0.24.5 for you.  After upgrading to 10.4, first check that you have the 
right version of fink by issuing fink --version.  If your version is less than 
0.24.5, run fink selfupdate to get the right version of fink.  Then, whether 
you selfupdated or not, reinstall the fink package using fink reinstall fink, 
followed by fink selfupdate.
+For users of the unstable tree, you may be able to upgrade just by running 
+fink selfupdate if your version of fink is less than 0.24.5.  
+It will install fink-0.24.5 for you.  After upgrading to 10.4, first check 
+that you have the right version of fink by issuing fink --version
+.  If your version is less than 0.24.5, run fink selfupdate to 
+get the right version of fink.  Then, whether you selfupdated or not, 
+reinstall the fink package using fink rebuild fink, 
+and follow that with another fink selfupdate.
 
 
 Not all packages are working yet under 10.4, but that situation will

Index: news.en.rdf
===
RCS file: /cvsroot/fink/web/xml/news/news.en.rdf,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- news.en.rdf 26 May 2005 03:16:13 -  1.18
+++ news.en.rdf 26 May 2005 11:25:48 -  1.19
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languageen/dc:language
-dc:date2005-05-26T05:15:13+02:00/dc:date
+dc:date2005-05-26T07:22:17-04:00/dc:date
 admin:errorReportsTo rdf:resource=mailto:[EMAIL PROTECTED]/
 item 
rdf:about=http://fink.sourceforge.net/news/#2005-04-29%20Fink%20and%20Tiger.;
   titleFink and Tiger./title
@@ -31,7 +31,14 @@
 fink-0.23.9 directory,
 you'll need to run fink selfupdate
 
-For users of the unstable tree, you may be able to upgrade just by running 
fink selfupdate if your version of fink is less than 0.24.5.  It will install 
fink-0.24.5 for you.  After upgrading to 10.4, first check that you have the 
right version of fink by issuing fink --version.  If your version is less than 
0.24.5, run fink selfupdate to get the right version of fink.  Then, whether 
you selfupdated or not, reinstall the fink package using fink reinstall fink, 
followed by fink selfupdate.
+For users of the unstable tree, you may be able to upgrade just by running 
+fink selfupdate if your version of fink is less than 0.24.5.  
+It will install fink-0.24.5 for you.  After upgrading to 10.4, first check 
+that you have the right version of fink by issuing fink --version
+.  If your version is less than 0.24.5, run fink selfupdate to 
+get the right version of fink.  Then, 

dists/10.4-transitional/stable/main/finkinfo/text gtypist.info,1.1,1.2

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8170

Modified Files:
gtypist.info 
Log Message:
validation fix


Index: gtypist.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/text/gtypist.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gtypist.info27 Apr 2005 03:47:52 -  1.1
+++ gtypist.info26 May 2005 12:48:30 -  1.2
@@ -1,6 +1,6 @@
 Package: gtypist
 Version: 2.7
-Revision: 1
+Revision: 2
 Source: ftp://ftp.gnu.org/gnu/gtypist/gtypist-%v.tar.gz
 Source-MD5: 2e69a3fd10f9e7fba0dadb1189dc185a
 BuildDepends: gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
ncurses-dev
@@ -8,6 +8,10 @@
 ConfigureParams: --infodir=%i/share/info --mandir=%i/share/man
 InfoDocs: gtypist.info
 DocFiles: AUTHORS ChangeLog NEWS README TODO THANKS ABOUT-NLS
+InstallScript: 
+ make install prefix=%i
+ rm -f %i/share/emacs/site-lisp/gtypist-mode.elc
+
 Description: GNU Touch Typing Tutor
 DescDetail: 
 GNU Typist (also called gtypist) is a universal typing tutor. 
@@ -25,6 +29,10 @@
  * It supports internationalization and already has an interface in Czech,
English, Finnish, French, German and Spanish. 
 
+DescPackaging: 
+ /sw/share/emacs/site-lisp/gtypist-mode.elc is removed for minimal compliance
+ with fink's emacs policy.
+
 License: GPL/LGPL
 Maintainer: Corey Halpin [EMAIL PROTECTED]
 Homepage: http://www.gnu.org/software/gtypist/gtypist.html



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/text gtypist.info,1.1,1.2

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8296

Modified Files:
gtypist.info 
Log Message:
validation fix


Index: gtypist.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text/gtypist.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gtypist.info27 Apr 2005 03:26:40 -  1.1
+++ gtypist.info26 May 2005 12:49:06 -  1.2
@@ -1,6 +1,6 @@
 Package: gtypist
 Version: 2.7
-Revision: 1
+Revision: 3
 Source: ftp://ftp.gnu.org/gnu/gtypist/gtypist-%v.tar.gz
 Source-MD5: 2e69a3fd10f9e7fba0dadb1189dc185a
 BuildDepends: gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
libncurses5
@@ -8,6 +8,10 @@
 ConfigureParams: --infodir=%i/share/info --mandir=%i/share/man
 InfoDocs: gtypist.info
 DocFiles: AUTHORS ChangeLog NEWS README TODO THANKS ABOUT-NLS
+InstallScript: 
+ make install prefix=%i
+ rm -f %i/share/emacs/site-lisp/gtypist-mode.elc
+
 Description: GNU Touch Typing Tutor
 DescDetail: 
 GNU Typist (also called gtypist) is a universal typing tutor. 
@@ -25,6 +29,10 @@
  * It supports internationalization and already has an interface in Czech,
English, Finnish, French, German and Spanish. 
 
+DescPackaging: 
+ /sw/share/emacs/site-lisp/gtypist-mode.elc is removed for minimal compliance
+ with fink's emacs policy.
+
 License: GPL/LGPL
 Maintainer: Corey Halpin [EMAIL PROTECTED]
 Homepage: http://www.gnu.org/software/gtypist/gtypist.html



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/text gtypist.info,1.2,1.3

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8417

Modified Files:
gtypist.info 
Log Message:
validation fix


Index: gtypist.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/text/gtypist.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gtypist.info20 Mar 2005 15:47:20 -  1.2
+++ gtypist.info26 May 2005 12:49:40 -  1.3
@@ -1,6 +1,6 @@
 Package: gtypist
 Version: 2.7
-Revision: 1
+Revision: 2
 Source: ftp://ftp.gnu.org/gnu/gtypist/gtypist-%v.tar.gz
 Source-MD5: 2e69a3fd10f9e7fba0dadb1189dc185a
 BuildDepends: gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
ncurses-dev
@@ -8,6 +8,10 @@
 ConfigureParams: --infodir=%i/share/info --mandir=%i/share/man
 InfoDocs: gtypist.info
 DocFiles: AUTHORS ChangeLog NEWS README TODO THANKS ABOUT-NLS
+InstallScript: 
+ make install prefix=%i
+ rm -f %i/share/emacs/site-lisp/gtypist-mode.elc
+
 Description: GNU Touch Typing Tutor
 DescDetail: 
 GNU Typist (also called gtypist) is a universal typing tutor. 
@@ -25,6 +29,10 @@
  * It supports internationalization and already has an interface in Czech,
English, Finnish, French, German and Spanish. 
 
+DescPackaging: 
+ /sw/share/emacs/site-lisp/gtypist-mode.elc is removed for minimal compliance
+ with fink's emacs policy.
+
 License: GPL/LGPL
 Maintainer: Corey Halpin [EMAIL PROTECTED]
 Homepage: http://www.gnu.org/software/gtypist/gtypist.html



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/text gtypist.info,1.3,1.4

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

Modified Files:
gtypist.info 
Log Message:
validation fix


Index: gtypist.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/text/gtypist.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gtypist.info12 Mar 2005 17:47:39 -  1.3
+++ gtypist.info26 May 2005 12:51:50 -  1.4
@@ -1,6 +1,6 @@
 Package: gtypist
 Version: 2.7
-Revision: 1
+Revision: 3
 Source: ftp://ftp.gnu.org/gnu/gtypist/gtypist-%v.tar.gz
 Source-MD5: 2e69a3fd10f9e7fba0dadb1189dc185a
 BuildDepends: gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
libncurses5
@@ -8,6 +8,10 @@
 ConfigureParams: --infodir=%i/share/info --mandir=%i/share/man
 InfoDocs: gtypist.info
 DocFiles: AUTHORS ChangeLog NEWS README TODO THANKS ABOUT-NLS
+InstallScript: 
+ make install prefix=%i
+ rm -f %i/share/emacs/site-lisp/gtypist-mode.elc
+
 Description: GNU Touch Typing Tutor
 DescDetail: 
 GNU Typist (also called gtypist) is a universal typing tutor. 
@@ -25,6 +29,10 @@
  * It supports internationalization and already has an interface in Czech,
English, Finnish, French, German and Spanish. 
 
+DescPackaging: 
+ /sw/share/emacs/site-lisp/gtypist-mode.elc is removed for minimal compliance
+ with fink's emacs policy.
+
 License: GPL/LGPL
 Maintainer: Corey Halpin [EMAIL PROTECTED]
 Homepage: http://www.gnu.org/software/gtypist/gtypist.html



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/dmacks/finkinfo pygtk2-py.info,NONE,1.1

2005-05-26 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13632

Added Files:
pygtk2-py.info 
Log Message:
pygtk2 2.6.2. Needs gtk+2 2.6, which doesn't exist yet.


--- NEW FILE: pygtk2-py.info ---
Info2: 
Package: pygtk2-py%type_pkg[python]
Version: 2.6.2
Revision: 11
Description: Python bindings for the GTK widget set
DescDetail: 
PyGTK provides an object oriented interface that is slightly higher
level than the C one. It automatically does all the type casting and
reference counting that you would have to do normally with the C API.

DescPort: 
If you have both pygtk and pygtk2 are installed in the same python, 
read http://www.async.com.br/faq/pygtk/index.py?req=all#2.1. On
OS X, there is a problem with parts of pygtk2 pulling in pygtk(1):

  % examples/atk/atk-demo.py 
  Traceback (most recent call last):
File examples/atk/atk-demo.py, line 4, in ?
  import atk
  ImportError: Failure linking new module: : dyld: python2.3 multiple 
  definitions of symbol _g_allocator_free
  /sw/lib/libglib-1.2.0.dylib(gmem.lo) definition of _g_allocator_free
  /sw/lib/libglib-2.0.0.dylib(libglib-2.0.0.200.1.dylib-master.o) definition 
  of _g_allocator_free

  % examples/simple.py
  dyld: python2.3 multiple definitions of symbol _g_get_current_time
  /sw/lib/libglib-2.0.0.dylib(libglib-2.0.0.200.1.dylib-master.o) definition of 
_g_get_current_time
  /sw/lib/libglib-1.2.0.dylib(gmain.lo) definition of _g_get_current_time
  Trace/BPT trap (core dumped)

which is solved by http://www.async.com.br/faq/pygtk/index.py?req=all#2.4

#Patched examples/ to use the desired python interpretter:
#  perl -pi.bak -e 
's|#\!\s*/usr/bin/env\s+python.*|#\!%p/bin/python%type_raw[python]|' `find 
examples -name '*.py'`
#
#The widget demo examples/pygtk-demo works, but some of the other
#examples in examples/* do not (for a variety of reasons).
^--no longer install examples/
^--See also http://bugzilla.gnome.org/show_bug.cgi?id=132058

Thanks to Clef and graphics/pil for help debugging *Script.

Originally ported by Michel Alexandre Salim [EMAIL PROTECTED]
(up to pygtk2-1.99.15-1)

Homepage: http://www.daa.com.au/~james/pygtk/
License: LGPL
Maintainer: Daniel Macks [EMAIL PROTECTED]
BuildDepends: x11-dev, python%type_pkg[python], numeric-py%type_pkg[python], 
pkgconfig (= 0.9.0-1), glib2 (= 2.6.0-1), glib2-dev (= 2.6.0-1), pango1 (= 
1.8.0-1), atk1 (= 1.8.0-1), gtk+2 (= 2.3.4-1), gtk+2-dev (= 2.3.4-1), 
libglade2 (= 2.4.0-1), libxml2, libpng3, libjpeg, libtiff, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, gtk-doc (= 1.1-1), fink (= 0.20.2-1)
Depends: x11, python%type_pkg[python], numeric-py%type_pkg[python], 
glib2-shlibs (= 2.6.0-1), pango1-shlibs (= 1.8.0-1), atk1-shlibs (= 
1.8.0-1), gtk+2-shlibs (= 2.3.4-1), libglade2-shlibs (= 2.4.0-1), 
libxml2-shlibs, libpng3-shlibs, libjpeg-shlibs, libtiff-shlibs
Conflicts: pygtk2
Replaces: pygtk2
Source: mirror:gnome:sources/pygtk/2.6/pygtk-%v.tar.bz2
Source-MD5: 0d4dca0564fc867a976808d18443f059
Type: python (2.3 2.4)
ConfigureParams: --mandir='${prefix}/share/man'
CompileScript: 
  PYTHON=%p/bin/python%type_raw[python] ./configure %c
  (export CPPFLAGS=; %p/bin/python%type_raw[python] setup.py build)

InstallScript: 
  %p/bin/python%type_raw[python] setup.py install --prefix=%i
  make install prefix=%i

DocFiles: AUTHORS COPYING ChangeLog MAPPING NEWS README THREADS TODO
SplitOff: 
  Package: %N-dev
  Description: Tools for compiling against pygtk2
  Depends: %N (= %v-%r)
  Conflicts: pygtk2-py22-dev, pygtk2-py23-dev, pygtk2-py24-dev
  Replaces: pygtk2-py22-dev, pygtk2-py23-dev, pygtk2-py24-dev
  Files: bin/pygtk-codegen-2.0 include/pygtk-2.0 lib/pkgconfig/pygtk-2.0.pc 
share/pygtk/2.0
  DocFiles: AUTHORS COPYING ChangeLog MAPPING NEWS README THREADS TODO





---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/text groff.info,1.1,1.2

2005-05-26 Thread Dave Vasilevsky
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17676/text

Modified Files:
groff.info 
Log Message:
desc fix

Index: groff.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text/groff.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- groff.info  27 Apr 2005 03:26:40 -  1.1
+++ groff.info  26 May 2005 13:33:59 -  1.2
@@ -9,12 +9,14 @@
 ConfigureParams: --mandir=%i/share/man/ --infodir=%i/share/info
 Description: GNU document formatting system
 DescDetail: 
-Groff (GNU Troff) is a document processor which reads plain text mixed 
-with formatting commands and produces formatted output. This version includes 
gxditview and supports HTML.
+Groff (GNU Troff) is a document processor which reads plain text mixed
+with formatting commands and produces formatted output. This version
+includes gxditview and supports HTML.
 
 Licensing details:
 - groff is licensed under the GPL.
-- gxditview is derived from xditview (MIT license - BSD style), with 
modifications in the public domain.
+- gxditview is derived from xditview (MIT license - BSD style), with
+   modifications in the public domain.
 
 InfoDocs: groff
 



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gnome-vfs.info,1.2,1.3 gnome-vfs2.info,1.2,1.3

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18936/10.4-transitional/unstable/main/finkinfo/gnome

Modified Files:
gnome-vfs.info gnome-vfs2.info 
Log Message:
gnome-vfs buildconflicts with cdparanoia

Index: gnome-vfs.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-vfs.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnome-vfs.info  11 May 2005 03:38:30 -  1.2
+++ gnome-vfs.info  26 May 2005 13:40:17 -  1.3
@@ -4,6 +4,7 @@
 Source: mirror:gnome:sources/%n/1.0/%n-%v.tar.bz2
 Source-MD5: e2a17a6b178f54c43968241258f3e729
 Depends: %N-shlibs (= %v-%r) | gnome-vfs-ssl-shlibs (= %v-%r)
+BuildConflicts: libcdparanoia0-dev
 BuildDepends: pkgconfig, gtk-doc (= 0.9-4), libjpeg, libpng3, libtiff, 
netpbm, audiofile, db3 (= 3.3.11-23), esound, glib, orbit-dev (= 0.5.17-15), 
readline (= 4.3-15), giflib, imlib (= 1.9.14-14), gconf (= 1.0.9-21), 
gconf-dev (= 1.0.9-21), gnome-libs-dev (= 1.4.2-19), oaf-dev (= 0.6.10-22), 
guile-dev, libxml, popt, gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
gcc3.3
 #GCC: 3.3
 Conflicts: gnome-vfs-ssl

Index: gnome-vfs2.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-vfs2.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnome-vfs2.info 11 May 2005 06:25:21 -  1.2
+++ gnome-vfs2.info 26 May 2005 13:40:19 -  1.3
@@ -2,7 +2,7 @@
 Version: 2.6.1.1
 Revision: 17
 Depends: %N-shlibs (= %v-%r), gconf2 (= 2.6.0-1), gettext, glib2 (= 
2.4.0-1), libbonobo2 (= 2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), 
orbit2 (= 2.10.0-1), popt-shlibs
-BuildConflicts: openssl-dev, openssl097-dev
+BuildConflicts: libcdparanoia0-dev, openssl-dev, openssl097-dev
 BuildDepends: glib2-dev (= 2.4.0-1), orbit2-dev (= 2.10.0-1), libbonobo2-dev 
(= 2.6.0-1), gconf2-dev (= 2.6.0-1), libxml2 (= 2.6.7-1), pkgconfig, gtk-doc 
(= 1.2-1), intltool (= 0.30-1), bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, libiconv-dev, popt
 Conflicts: gnome-vfs2-ssl
 Replaces: gnome-vfs2-ssl, libgnome2 ( 2.6.0-6)



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gnome-vfs.info,1.5,1.6 gnome-vfs2.info,1.19,1.20

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18936/10.3/unstable/main/finkinfo/gnome

Modified Files:
gnome-vfs.info gnome-vfs2.info 
Log Message:
gnome-vfs buildconflicts with cdparanoia

Index: gnome-vfs.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gnome-vfs.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gnome-vfs.info  12 Mar 2005 17:47:32 -  1.5
+++ gnome-vfs.info  26 May 2005 13:40:15 -  1.6
@@ -5,6 +5,7 @@
 Source-MD5: e2a17a6b178f54c43968241258f3e729
 Depends: %N-shlibs (= %v-%r) | gnome-vfs-ssl-shlibs (= %v-%r)
 BuildDepends: pkgconfig, gtk-doc (= 0.9-4), libjpeg, libpng3, libtiff, 
netpbm, audiofile, db3 (= 3.3.11-23), esound, glib, orbit-dev (= 0.5.17-15), 
readline (= 4.3-15), giflib, imlib (= 1.9.14-14), gconf (= 1.0.9-21), 
gconf-dev (= 1.0.9-21), gnome-libs-dev (= 1.4.2-19), oaf-dev (= 0.6.10-22), 
guile-dev, libxml, popt, gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
gcc3.3
+BuildConflicts: libcdparanoia0-dev
 #GCC: 3.3
 Conflicts: gnome-vfs-ssl
 Replaces: gnome-vfs-ssl

Index: gnome-vfs2.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gnome-vfs2.info,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- gnome-vfs2.info 11 May 2005 06:24:55 -  1.19
+++ gnome-vfs2.info 26 May 2005 13:40:15 -  1.20
@@ -2,7 +2,7 @@
 Version: 2.6.1.1
 Revision: 17
 Depends: %N-shlibs (= %v-%r), gconf2 (= 2.6.0-1), gettext, glib2 (= 
2.4.0-1), libbonobo2 (= 2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), 
orbit2 (= 2.10.0-1), popt-shlibs
-BuildConflicts: openssl-dev, openssl097-dev
+BuildConflicts: libcdparanoia0-dev, openssl-dev, openssl097-dev
 BuildDepends: glib2-dev (= 2.4.0-1), orbit2-dev (= 2.10.0-1), libbonobo2-dev 
(= 2.6.0-1), gconf2-dev (= 2.6.0-1), libxml2 (= 2.6.7-1), pkgconfig, gtk-doc 
(= 1.2-1), intltool (= 0.30-1), bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, libiconv-dev, popt
 Conflicts: gnome-vfs2-ssl
 Replaces: gnome-vfs2-ssl, libgnome2 ( 2.6.0-6)



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/crypto/finkinfo gnome-vfs-ssl.info,1.5,1.6

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18936/10.3/unstable/crypto/finkinfo

Modified Files:
gnome-vfs-ssl.info 
Log Message:
gnome-vfs buildconflicts with cdparanoia

Index: gnome-vfs-ssl.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo/gnome-vfs-ssl.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gnome-vfs-ssl.info  5 Apr 2005 01:27:30 -   1.5
+++ gnome-vfs-ssl.info  26 May 2005 13:40:14 -  1.6
@@ -4,6 +4,7 @@
 Source: mirror:gnome:sources/gnome-vfs/1.0/gnome-vfs-%v.tar.bz2
 Source-MD5: e2a17a6b178f54c43968241258f3e729
 Depends: %N-shlibs (= %v-%r) | gnome-vfs-shlibs (= %v-%r)
+BuildConflicts: libcdparanoia0-dev
 BuildDepends: pkgconfig, gtk-doc (= 0.9-4), openssl097-dev, audiofile, db3 
(= 3.3.11-23), esound, glib, libjpeg, libpng3, libtiff, netpbm, orbit-dev (= 
0.5.17-15), readline (= 4.3-15), giflib, imlib (= 1.9.14-14), gconf (= 
1.0.9-21), gconf-dev (= 1.0.9-21), gnome-libs-dev (= 1.4.2-19), oaf-dev (= 
0.6.10-22), guile-dev (= 1.4-16), libxml, popt, gettext-dev, gettext-bin, 
gettext-tools, libiconv-dev
 GCC: 3.3
 Provides: gnome-vfs



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/crypto/finkinfo gnome-vfs-ssl.info,1.2,1.3 gnome-vfs2-ssl.info,1.1,1.2

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18936/10.4-transitional/unstable/crypto/finkinfo

Modified Files:
gnome-vfs-ssl.info gnome-vfs2-ssl.info 
Log Message:
gnome-vfs buildconflicts with cdparanoia

Index: gnome-vfs2-ssl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo/gnome-vfs2-ssl.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-vfs2-ssl.info 27 Apr 2005 03:07:09 -  1.1
+++ gnome-vfs2-ssl.info 26 May 2005 13:40:16 -  1.2
@@ -2,6 +2,7 @@
 Version: 2.6.1.1
 Revision: 15
 Depends: %N-shlibs (= %v-%r), gconf2 (= 2.6.0-1), gettext, glib2 (= 
2.4.0-1), libbonobo2 (= 2.6.0-1), libbonobo2 (= 2.6.0-1), libiconv, 
libxml2-shlibs (= 2.6.7-1), openssl097-shlibs, orbit2 (= 2.10.0-1), 
popt-shlibs
+BuildConflicts: libcdparanoia0-dev
 BuildDepends: glib2-dev (= 2.4.0-1), orbit2-dev (= 2.10.0-1), libbonobo2-dev 
(= 2.6.0-1), gconf2-dev (= 2.6.0-1), libxml2 (= 2.6.7-1), pkgconfig, gtk-doc 
(= 1.2-1), intltool (= 0.30-1), openssl097-dev, bzip2-dev, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, libxslt, popt
 Provides: gnome-vfs2
 Conflicts: gnome-vfs2

Index: gnome-vfs-ssl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo/gnome-vfs-ssl.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnome-vfs-ssl.info  11 May 2005 03:38:28 -  1.2
+++ gnome-vfs-ssl.info  26 May 2005 13:40:15 -  1.3
@@ -4,6 +4,7 @@
 Source: mirror:gnome:sources/gnome-vfs/1.0/gnome-vfs-%v.tar.bz2
 Source-MD5: e2a17a6b178f54c43968241258f3e729
 Depends: %N-shlibs (= %v-%r) | gnome-vfs-shlibs (= %v-%r)
+BuildConflicts: libcdparanoia0-dev
 BuildDepends: pkgconfig, gtk-doc (= 0.9-4), openssl097-dev, audiofile, db3 
(= 3.3.11-23), esound, glib, libjpeg, libpng3, libtiff, netpbm, orbit-dev (= 
0.5.17-15), readline (= 4.3-15), giflib, imlib (= 1.9.14-14), gconf (= 
1.0.9-21), gconf-dev (= 1.0.9-21), gnome-libs-dev (= 1.4.2-19), oaf-dev (= 
0.6.10-22), guile-dev (= 1.4-16), libxml, popt, gettext-dev, gettext-bin, 
gettext-tools, libiconv-dev
 GCC: 3.3
 Provides: gnome-vfs



---
SF.Net email is sponsored by: GoToMeeting - the easiest way to collaborate
online with coworkers and clients while avoiding the high cost of travel and
communications. There is no equipment to buy and you can meet as often as
you want. Try it free.http://ads.osdn.com/?ad_id=7402alloc_id=16135op=click
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/crypto/finkinfo aqbanking.info,NONE,1.1 db42-ssl.patch,NONE,1.1 db43-ssl.info,NONE,1.1 gnome-vfs-ssl.info,NONE,1.1 gnome-vfs-ssl.patch,NONE,1.1 gnucash-hbci.info,NONE,1.1 gnucash-hbci.patch,NONE,1.1 gwenhywfar.info,NONE,1.1 db41-ssl.info,1.1,1.2 db42-ssl.info,1.1,1.2

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21765/stable/crypto/finkinfo

Modified Files:
db41-ssl.info db42-ssl.info 
Added Files:
aqbanking.info db42-ssl.patch db43-ssl.info gnome-vfs-ssl.info 
gnome-vfs-ssl.patch gnucash-hbci.info gnucash-hbci.patch 
gwenhywfar.info 
Log Message:
gnucash - stable

--- NEW FILE: aqbanking.info ---
Package: aqbanking
Version: 1.0.4
Revision: 1beta
Source: mirror:sourceforge:%n/%n-%vbeta.tar.gz
Source-MD5: 029fbb9d3cd43f0e1d1d21b3680ab633
GCC: 3.3
BuildDepends: openssl097-dev, gwenhywfar (= 1.7.2-1), ktoblzcheck, libofx1, 
gettext-dev, gettext-bin, gettext-tools, libiconv-dev
Depends: %N-shlibs (= %v-%r)
NoSetLDFlags: True
BuildDependsOnly: True
# Line 817 contains --msgid-bugs-address which our (old) gettext doesn't grok
PatchScript: echo 817d | patch Makefile.in
ConfigureParams: --with-openssl-includes=%p/include --with-openssl-libs=%p/lib 
--disable-dependency-tracking
CompileScript: 
#! /bin/sh -ev
export LIBRARY_PATH=%p/lib
./configure %c
find . -name Makefile | xargs perl -pi.bak -e s|-L%p/lib||g
make

InstallScript: 
make install DESTDIR=%d
find %i -name *.la | xargs perl -pi.bak -e s|-L%b/([^\s\']*)||g
find %i -name *.la.bak | xargs rm -rf

Description: Online banking library
Splitoff: 
  Package: %N-shlibs
  Description: Shared libraries for aqbanking
  Files: 
lib/libaqbanking.0.dylib
lib/libaqbanking.0.0.6.dylib
lib/libaqbankingpp.0.dylib
lib/libaqbankingpp.0.0.0.dylib
lib/gwenhywfar/plugins/17/*
lib/aqbanking/plugins/0/*
  
  Depends: openssl097-shlibs, libofx1-shlibs,  gwenhywfar-shlibs (= 1.7.2-1), 
ktoblzcheck-shlibs
  Shlibs: 
%p/lib/libaqbanking.0.dylib 1.0.0 %n (= 1.0.4-1beta)
%p/lib/libaqbankingpp.0.dylib 1.0.0 %n (= 1.0.4-1beta)
  
  DocFiles: COPYING README

DocFiles: COPYING README
DescDetail: 
AqBanking is a generic OnlineBanking interface. It allows multiple backends 
(currently HBCI) and multiple frontends (e.g. KDE, GNOME, console) to be used.

DescPackaging: 
# The author doesn't seem to like using .la's in Makefile.am, causing the
# wrong library to be linked if an installed library is available. So we must
# remove all -L%p/lib from the generated Makefiles and set LIBRARY_PATH so that
# %p/lib comes last.
# Remove --msgid-bugs-address which our (old) gettext doesn't grok

Maintainer: Peter O'Gorman [EMAIL PROTECTED]
License: GPL
HomePage: http://aqbanking.sourceforge.net/

--- NEW FILE: gnucash-hbci.patch ---
diff -u -d -b -w -u -r1.7 ltmain.sh
--- foo/ltmain.sh   29 Aug 2002 04:12:30 -  1.7
+++ foo/ltmain.sh   13 May 2003 12:33:35 -
@@ -2370,7 +2370,11 @@
  ;;
esac
if grep ^installed=no $deplib  /dev/null; then
- path=-L$absdir/$objdir
+ if test -d $absdir/$objdir; then
+   path=$absdir/$objdir
+ else
+   path=$absdir
+ fi
else
  eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
  if test -z $libdir; then
@@ -2380,11 +2384,56 @@
  if test $absdir != $libdir; then
$echo $modename: warning: \`$deplib' seems to be moved 
12
  fi
- path=-L$absdir
+ path=$absdir
+   fi
+   depdepl=
+   case $host in
+   *-*-darwin*)
+ # we do not want to link against static libs, but need to 
link against shared
+ eval deplibrary_names=`sed -n -e 
's/^library_names=\(.*\)$/\1/p' $deplib`
+ if test -n $deplibrary_names ; then
+   for tmp in $deplibrary_names ; do
+ depdepl=$tmp
+   done
+   if test -f $path/$depdepl ; then
+ depdepl=$path/$depdepl
+  fi
+
+   case  $newlib_search_path  in
+   * $path *) ;;
+   *) newlib_search_path=$newlib_search_path $path ;;
+   esac
+   path=
fi
;;
+   *)
+   path=-L$path
+   ;;
+   esac 
+   
+   ;;
+ -l*)
+   case $host in
+   *-*-darwin*)
+# Again, we only want to link against shared libraries
+eval tmp_libs=`$echo X$deplib | $Xsed -e s,^\-l,,`
+for tmp in $newlib_search_path ; do
+if test -f $tmp/lib$tmp_libs.dylib ; then
+  eval depdepl=$tmp/lib$tmp_libs.dylib
+  break
+fi  
+ done
+ path=
+ ;;
  *) continue ;;
  esac
+   ;;
+ *) continue ;;
+  

dists/10.4-transitional/unstable/crypto/finkinfo gnucash-hbci.info,1.2,1.3

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21765/unstable/crypto/finkinfo

Modified Files:
gnucash-hbci.info 
Log Message:
gnucash - stable

Index: gnucash-hbci.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo/gnucash-hbci.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnucash-hbci.info   11 May 2005 03:38:28 -  1.2
+++ gnucash-hbci.info   26 May 2005 13:52:43 -  1.3
@@ -1,6 +1,6 @@
 Package: gnucash-hbci
 Version: 1.8.11
-Revision: 20
+Revision: 21
 Depends: gnucash (= %v-%r), aqbanking-shlibs (= 1.0.4-1beta)
 BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, aqbanking (= 1.0.4-1beta), gwenhywfar (= 1.7.2-1), ktoblzcheck, 
db43-ssl | db43
 Source: mirror:sourceforge:gnucash/gnucash-%v.tar.gz



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gnucash.info,1.2,1.3 guppi16.info,1.2,1.3

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21765/unstable/main/finkinfo/gnome

Modified Files:
gnucash.info guppi16.info 
Log Message:
gnucash - stable

Index: gnucash.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnucash.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- gnucash.info11 May 2005 03:38:30 -  1.2
+++ gnucash.info26 May 2005 13:52:43 -  1.3
@@ -1,8 +1,8 @@
 Package: gnucash
 Version: 1.8.11
-Revision: 20
-Depends: audiofile-shlibs, bonobo-shlibs, esound-shlibs,  g-wrap-shlibs (= 
1.3.4-3), g-wrap (= 1.3.4-3), gal21-shlibs, gconf-shlibs, gdk-pixbuf-shlibs, 
glib-shlibs, gnome-libs-shlibs, gnome-print-shlibs, gtk+-shlibs, 
gtkhtml1.1-shlibs, guile16-shlibs, guppi16-shlibs, imlib-shlibs, 
libghttp-shlibs, libglade-shlibs, libtool14-shlibs (= 1.4.3-3), libxml-shlibs, 
oaf-shlibs, orbit-shlibs, popt-shlibs , slib, finance-quote-pm586, 
date-manip-pm, finance-quotehist-pm586, guile16, gconf
-BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43
+Revision: 21
+Depends: audiofile-shlibs, bonobo-shlibs, esound-shlibs,  g-wrap-shlibs (= 
1.3.4-3), g-wrap (= 1.3.4-3), gal21-shlibs, gconf-shlibs, gdk-pixbuf-shlibs, 
glib-shlibs, gnome-libs-shlibs, gnome-print-shlibs, gtk+-shlibs (= 1.2.10-50), 
gtkhtml1.1-shlibs, guile16-shlibs, guppi16-shlibs, imlib-shlibs, 
libghttp-shlibs, libglade-shlibs, libtool14-shlibs (= 1.4.3-3), libxml-shlibs, 
oaf-shlibs, orbit-shlibs, popt-shlibs , slib, finance-quote-pm586, 
date-manip-pm, finance-quotehist-pm586, guile16, gconf
+BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43, gtk+ (= 1.2.10-50)
 Suggests: gnucash-docs (= 1.8.0)
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
 Source-MD5: 62f94331936e37ed1b1d28b5a1863bb3

Index: guppi16.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/guppi16.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- guppi16.info11 May 2005 03:38:30 -  1.2
+++ guppi16.info26 May 2005 13:52:43 -  1.3
@@ -4,7 +4,7 @@
 Source: mirror:gnome:sources/Guppi/0.40/Guppi-%v.tar.gz
 Patch: %n.patch
 Depends: %N-shlibs (= %v-%r)
-BuildDepends: libglade, gal21 (= 0.22-2), gdk-pixbuf, libjpeg, libtiff, 
netpbm, audiofile, glib, gtk+, orbit-dev,  giflib, imlib, gmp, bonobo-dev, 
control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, gnome-core-dev (= 
1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml-dev (= 1.0.2-5), oaf-dev, 
expat, libole2, libwww, libxml, gettext-dev, gettext-bin, gettext-tools, 
libiconv-dev, esound, gcc3.3
+BuildDepends: libglade, gal21 (= 0.22-2), gdk-pixbuf, libjpeg, libtiff, 
netpbm, audiofile, glib, gtk+, orbit-dev,  giflib, imlib, gmp, bonobo-dev, 
control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, gnome-core-dev (= 
1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev, oaf-dev, expat, 
libole2, libwww, libxml, gettext-dev, gettext-bin, gettext-tools, libiconv-dev, 
esound, gcc3.3
 Conflicts: guppi
 Replaces: guppi
 SetCPPFLAGS: -no-cpp-precomp



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/libs db42.patch,NONE,1.1 db43.info,NONE,1.1 ktoblzcheck.info,NONE,1.1 libofx.info,NONE,1.1 libofx1.info,NONE,1.1 libole2.info,NONE,1.1 libole2.patch,NONE,1.1 db3.info,1.1,1.2 db4.info,1.1,1.2 db41.info,1.1,1.2 db42.info,1.1,1.2

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/libs
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21765/stable/main/finkinfo/libs

Modified Files:
db3.info db4.info db41.info db42.info 
Added Files:
db42.patch db43.info ktoblzcheck.info libofx.info libofx1.info 
libole2.info libole2.patch 
Log Message:
gnucash - stable

--- NEW FILE: db43.info ---
Package: db43
Version: 4.3.27
Revision: 1
Source: ftp://ftp.sleepycat.com/releases/db-%v.NC.tar.gz
Replaces: db, db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db41, db42-ssl, 
db42, db43-ssl
Conflicts: db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db41, db42-ssl, 
db42, db43-ssl
Depends: db43-shlibs (= %v-%r) | db43-ssl-shlibs (=%v-%r)
BuildDependsOnly: true
NoSetLDFlags: true
NoSetCPPFlags: true
SetCFlags: -Os
SetCXXFlags: -Os
#Patch: %n.patch
ConfigureParams: --enable-compat185 --enable-cxx --includedir=%p/include/db4
GCC: 3.3
CompileScript: 
#! /bin/sh -ex
VERSIONS=-avoid-version  -XCClinker -current_version -XCClinker %v -XCClinker 
-compatibility_version -XCClinker 4.3 -no-undefined
LIBDB=libdb-4.3.la
LIBDBCXX=libdb_cxx-4.3.la
cd build_unix;
F77=no ../dist/configure %c
perl -pi.bak -e 's,api_java,,g' Makefile
make UTIL_PROGS=
rm .libs/$LIBDB $LIBDB
make SOLINK=\$(LIBTOOL) --mode=link --tag=CC gcc $VERSIONS UTIL_PROGS=
rm .libs/$LIBDBCXX $LIBDBCXX
make XSOLINK=\$(LIBTOOL) --mode=link --tag=CXX g++ $VERSIONS UTIL_PROGS=
make

InstallScript: 
#! /bin/sh -ev
(cd build_unix; make install prefix=%I docdir=%I/share/doc/db43-doc/docs 
includedir=%I/include/db4)
binfiles=db_archive db_checkpoint db_deadlock db_dump db_load db_printlog 
db_recover db_stat db_upgrade db_verify
for binfile in $binfiles ; do
 mv %i/bin/$binfile %i/bin/$binfile.%N
done

SplitOff: 
 Package: %N-shlibs
 Replaces: db43-ssl-shlibs
 Conflicts: db43-ssl-shlibs
 Description: Shared Libraries for db43
 Files: lib/libdb-4.3.dylib lib/libdb_cxx-4.3.dylib  lib/libdb-4.3.la 
lib/libdb_cxx-4.3.la
 Shlibs: 
%p/lib/libdb-4.3.dylib 4.3.0 %n (= 4.3.21-1)
%p/lib/libdb_cxx-4.3.dylib 4.3.0 %n (= 4.3.21-1)
 
 DocFiles: LICENSE

SplitOff2: 
 Package: %N-bin
 Depends: %N-shlibs (= %v-%r)
 Conflicts: db3-bin ( 3.3.11-25), db31 ( 3.1.17-2), db4-ssl-bin ( 
4.0.14-24), db4-bin ( 4.0.14-24), db41-ssl-bin ( 4.1.25-20), db42-ssl-bin 
( 4.2.52-14), db41-bin ( 4.1.25-20), db42-bin ( 4.2.52-14), db43-ssl-bin
 Replaces: db3-bin, db4 ( 4.0.14-4), db31 ( 3.1.17-2), db4-ssl-bin ( 
4.0.14-24), db4-bin ( 4.0.14-24), db41-ssl-bin ( 4.1.25-20), db42-ssl-bin 
( 4.2.52-14), db41-bin ( 4.1.25-20), db42-bin ( 4.2.52-14), db43-ssl-bin
 Description: Binary utilities for db43
 Files: bin
 DocFiles: LICENSE
 PostInstScript: 
binfiles=db_archive db_checkpoint db_deadlock db_dump db_load 
db_printlog db_recover db_stat db_upgrade db_verify
priority=`echo %N | sed -e 's/[^0-9]//g'`
for binfile in $binfiles ; do
 update-alternatives --install %p/bin/$binfile $binfile 
%p/bin/$binfile.%N $priority
done
 
 PreRmScript: 
  if [ $1 != upgrade ]; then
binfiles=db_archive db_checkpoint db_deadlock db_dump db_load db_printlog 
db_recover db_stat db_upgrade db_verify
for binfile in $binfiles ; do
  update-alternatives --remove $binfile %p/bin/$binfile.%N
done
  fi


SplitOff3: 
 Package: %N-doc
 Description: Documentation for db43
 Files: share/doc/db43-doc
 DocFiles: LICENSE

DocFiles: LICENSE README
License: OSI-Approved
Description: Berkeley DB embedded database - non crypto
Homepage: http://www.sleepycat.com/
Maintainer: Peter O'Gorman [EMAIL PROTECTED]
Source-MD5: 03649b700045b23955bff2fef51c1513

Index: db41.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/libs/db41.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- db41.info   27 Apr 2005 03:41:32 -  1.1
+++ db41.info   26 May 2005 13:52:43 -  1.2
@@ -1,9 +1,9 @@
 Package: db41
 Version: 4.1.25
-Revision: 19
+Revision: 22
 Source: http://www.sleepycat.com/update/snapshot/db-%v.NC.tar.gz
-Replaces: db, db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db42, db42-ssl
-Conflicts: db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db42, db42-ssl
+Replaces: db, db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db42, db42-ssl, 
db43-ssl, db43
+Conflicts: db3, db31 ( 3.1.17-8), db4-ssl, db4, db41-ssl, db42, db42-ssl, 
db43-ssl, db43
 Depends: db41-shlibs (= %v-%r) | db41-ssl-shlibs (=%v-%r)
 BuildDependsOnly: true
 NoSetLDFlags: true
@@ -28,14 +28,19 @@
 make
 
 InstallScript: 
+#! /bin/sh -ev
 (cd build_unix; make install prefix=%I docdir=%I/share/doc/db41-doc/docs 
includedir=%I/include/db4)
+binfiles=db_archive db_checkpoint db_deadlock db_dump db_load db_printlog 
db_recover db_stat db_upgrade db_verify
+for binfile in $binfiles ; do
+ mv %i/bin/$binfile %i/bin/$binfile.%N
+done
 
 SplitOff: 
  Package: %N-shlibs
  Replaces: db4 ( 4.0.14-4), 

dists/10.4-transitional/unstable/main/finkinfo/gnome gnome-print.info,1.1,1.2

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24870

Modified Files:
gnome-print.info 
Log Message:
Needs fonts

Index: gnome-print.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-print.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-print.info27 Apr 2005 03:25:41 -  1.1
+++ gnome-print.info26 May 2005 14:07:14 -  1.2
@@ -1,10 +1,10 @@
 Package: gnome-print
 Version: 0.37
-Revision: 3
+Revision: 4
 Source: mirror:gnome:sources/%n/%v/%n-%v.tar.bz2
 Source-MD5: f9e13f4f17b04baceec1cdeed0f88eae
 BuildDepends: audiofile (= 0.2.3-1), esound (= 0.2.28-1), glib (= 
1.2.10-18), gdk-pixbuf (= 0.18.0-12), gtk+ (= 1.2.10-23), libjpeg, libtiff, 
netpbm, orbit (= 0.5.17-15), imlib (= 1.9.14-13), gnome-libs-dev (= 
1.4.2-17), libxml (= 1.8.17-14), libglade (= 0.17-3), gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev
-Depends: %N-shlibs (= %v-%r), audiofile-shlibs (= 0.2.3-1), esound-shlibs 
(= 0.2.28-1), gdk-pixbuf-shlibs (= 0.18.0-12), gettext, glib-shlibs (= 
1.2.10-18), gnome-libs-shlibs (= 1.4.2-17), gtk+-shlibs (= 1.2.10-23), 
imlib-shlibs (= 1.9.14-2), libxml-shlibs (= 1.8.17-14)
+Depends: %N-shlibs (= %v-%r), audiofile-shlibs (= 0.2.3-1), esound-shlibs 
(= 0.2.28-1), gdk-pixbuf-shlibs (= 0.18.0-12), gettext, glib-shlibs (= 
1.2.10-18), gnome-libs-shlibs (= 1.4.2-17), gtk+-shlibs (= 1.2.10-23), 
imlib-shlibs (= 1.9.14-2), libxml-shlibs (= 1.8.17-14), ghostscript-fonts
 PatchScript: sed -e 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1
 UpdatePoMakefile: true
 UpdateConfigGuess: true



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/gnome gnome-print.info,1.1,1.2

2005-05-26 Thread Peter O'Gorman
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25009

Modified Files:
gnome-print.info 
Log Message:
Needs fonts

Index: gnome-print.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome/gnome-print.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-print.info27 Apr 2005 03:38:48 -  1.1
+++ gnome-print.info26 May 2005 14:07:43 -  1.2
@@ -1,10 +1,10 @@
 Package: gnome-print
 Version: 0.37
-Revision: 3
+Revision: 4
 Source: mirror:gnome:sources/%n/%v/%n-%v.tar.bz2
 Source-MD5: f9e13f4f17b04baceec1cdeed0f88eae
 BuildDepends: audiofile (= 0.2.3-1), esound (= 0.2.28-1), glib (= 
1.2.10-18), gdk-pixbuf (= 0.18.0-12), gtk+ (= 1.2.10-23), libjpeg, libtiff, 
netpbm, orbit (= 0.5.17-15), imlib (= 1.9.14-13), gnome-libs-dev (= 
1.4.2-17), libxml (= 1.8.17-14), libglade (= 0.17-3), gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev
-Depends: %N-shlibs (= %v-%r), audiofile-shlibs (= 0.2.3-1), esound-shlibs 
(= 0.2.28-1), gdk-pixbuf-shlibs (= 0.18.0-12), gettext, glib-shlibs (= 
1.2.10-18), gnome-libs-shlibs (= 1.4.2-17), gtk+-shlibs (= 1.2.10-23), 
imlib-shlibs (= 1.9.14-2), libxml-shlibs (= 1.8.17-14)
+Depends: %N-shlibs (= %v-%r), audiofile-shlibs (= 0.2.3-1), esound-shlibs 
(= 0.2.28-1), gdk-pixbuf-shlibs (= 0.18.0-12), gettext, glib-shlibs (= 
1.2.10-18), gnome-libs-shlibs (= 1.4.2-17), gtk+-shlibs (= 1.2.10-23), 
imlib-shlibs (= 1.9.14-2), libxml-shlibs (= 1.8.17-14), ghostscript-fonts
 PatchScript: sed -e 's|@PREFIX@|%p|g' %a/%n.patch | patch -p1
 UpdatePoMakefile: true
 UpdateConfigGuess: true



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink SelfUpdate.pm,1.96,1.97

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4665/perlmod/Fink

Modified Files:
SelfUpdate.pm 
Log Message:
error at the end

Index: SelfUpdate.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/SelfUpdate.pm,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- SelfUpdate.pm   24 May 2005 15:47:17 -  1.96
+++ SelfUpdate.pm   26 May 2005 17:12:39 -  1.97
@@ -407,9 +407,11 @@
 
# first, update the top-level stuff
 
+   my $errors = 0;
+
$cmd = /usr/bin/su $username -c '$cmd' if ($username);
if (execute($cmd)) {
-   die Updating using CVS failed. Check the error messages 
above.\n;
+   $errors++;
}
 
# then, update the trees
@@ -419,10 +421,12 @@
$cmd = cvs ${verbosity} -z3 update -d -P ${tree};
$cmd = /usr/bin/su $username -c '$cmd' if ($username);
if (execute($cmd)) {
-   die Updating using CVS failed. Check the error 
messages above.\n;
+   $errors++;
}
}
 
+   die Updating using CVS failed. Check the error messages above.\n if 
($errors);
+
 }
 
 ### update from packages tarball



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.1022,1.1023 Engine.pm,1.279,1.280

2005-05-26 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7632

Modified Files:
ChangeLog Engine.pm 
Log Message:
During reinstall, also rebuild .deb if it's missing.


Index: Engine.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Engine.pm,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -d -r1.279 -r1.280
--- Engine.pm   25 May 2005 02:50:31 -  1.279
+++ Engine.pm   26 May 2005 17:29:34 -  1.280
@@ -1494,6 +1494,13 @@
if ($op == $OP_BUILD and $package-is_present()) {
next;
}
+   # if asked to reinstall but have no .deb, have to rebuild it
+   if ($op == $OP_REINSTALL and not $package-is_present()) {
+   if ($verbosity  2) {
+   printf No .deb found so %s must be rebuilt\n, 
$package-get_fullname();
+   }
+   $op = $OP_REBUILD;
+   }
# add to table
@{$deps{$pkgname}}[ PKGNAME, PKGOBJ, PKGVER, OP, FLAG ] = (
$pkgname, Fink::Package-package_by_name($pkgname),

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1022
retrieving revision 1.1023
diff -u -d -r1.1022 -r1.1023
--- ChangeLog   25 May 2005 04:23:36 -  1.1022
+++ ChangeLog   26 May 2005 17:29:34 -  1.1023
@@ -1,3 +1,7 @@
+2005-05-26  Daniel Macks  [EMAIL PROTECTED]
+
+   * Engine.pm: Convert reinstall to rebuild if no .deb present.
+
 2005-05-25  Peter O'Gorman  [EMAIL PROTECTED]
 
* Bootstrap.pm: Maybe allow bootstrap on darwin8.



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/graphics freetype2-hinting.info,1.5,1.6 freetype2.info,1.3,1.4 freetype2.patch,1.3,1.4 freetype2-hinting.patch,1.4,NONE

2005-05-26 Thread Remi Mommsen
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11473

Modified Files:
freetype2-hinting.info freetype2.info freetype2.patch 
Removed Files:
freetype2-hinting.patch 
Log Message:

Latest freetype2 to stable in order to satisfy dependency for root4.
Okay'ed by Alexander Strange, haven't heard anything from Jeff
Whitaker, hope it's okay.


Index: freetype2-hinting.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/graphics/freetype2-hinting.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- freetype2-hinting.info  27 Jan 2005 07:56:55 -  1.5
+++ freetype2-hinting.info  26 May 2005 17:46:26 -  1.6
@@ -1,30 +1,40 @@
 Package: freetype2-hinting
-Version: 2.1.3
-Revision: 22
-Depends: %N-shlibs (= %v-%r)
+Version: 2.1.4
+Revision: 11
+# Depends: %N-shlibs (= %v-%r)
 Conflicts: freetype2
 Replaces: freetype2
 Provides: freetype2
 BuildDependsOnly: True
 Source: mirror:sourceforge:freetype/freetype-%v.tar.gz
-Source-MD5: 60d2e54385aead468c102e7250eab055
-Patch: %n.patch
-PatchScript: mv install install.sh
+Source-MD5: dd40b965b06d66749e53df9299633886
+Patch: freetype2.patch
+PatchScript: 
+ perl -i -pe 's/.*(#define.*BYTECODE_INTERPRETER).*/\1/' 
include/freetype/config/ftoption.h
+ mv install install.sh
+
 CompileScript: 
  make setup CFG=--prefix=%p
  perl -pi.bak -e 's/^allow_undefined_flag.*/allow_undefined_flag=\\/' 
builds/unix/libtool
  make
 
 InstallScript: 
+#!/bin/sh -e
+
  make install prefix=%i
  install -d -m 755 %i/lib/freetype2/lib
  mv %i/bin %i/lib/freetype2
  mv %i/lib/libfreetype.a %i/lib/freetype2/lib
  mv %i/lib/libfreetype.dylib %i/lib/freetype2/lib
  ln -sf %p/lib/libfreetype.6.dylib %i/lib/freetype2/lib/libfreetype.dylib
- mv %i/lib/libfreetype.la %i/lib/freetype2/lib
+ perl -p -e 's,%p/lib,%p/lib/freetype2/lib,g' %i/lib/libfreetype.la  
%i/lib/freetype2/lib/libfreetype.la
+ rm -rf %i/lib/libfreetype.la
  mv %i/include %i/lib/freetype2
  rm -rf %i/share/aclocal
+ for file in %i/lib/libfreetype*.dylib; do
+   REALFILE=`echo $file | sed -e 's,^%d,,'`
+   ln -sf $REALFILE %i/lib/freetype2/lib/
+ done
 
 SplitOff: 
   Package: %N-shlibs
@@ -37,7 +47,7 @@
 README docs/* src/autohint/CatharonLicense.txt
 src/pcf/readme:README.pcf
   
-  Description: TrueType font rendering library, version 2, shared libs
+  Description: TrueType font rendering library, shared libs
 
 SplitOff2: 
   Package: %N-dev
@@ -50,29 +60,30 @@
 README docs/* src/autohint/CatharonLicense.txt
 src/pcf/readme:README.pcf
   
-  Description: TrueType font rendering library, version 2, headers
+  Description: TrueType font rendering library, headers
 
 DocFiles: 
  README docs/* src/autohint/CatharonLicense.txt
  src/pcf/readme:README.pcf
 
-Description: TrueType font rendering library, version 2 (dummy)
+Description: TrueType font rendering library, (dummy)
 DescDetail: 
 FreeType 2 is a library that provides access to and rendering of a
 wide range of font file formats, including TrueType, PostScript Type 1,
 and several bitmap font formats.
-
-The freetype2 packages now exist only for compatibility with older Fink
-packages.  Developers should use the freetype that is part of XFree86
-for new packages.
-
-For packages that need freetype2 version 2.1.3 or newer, there is now
-a freetype2-dev splitoff. For this to work, you need to make sure that
-configure finds the freetype-config script in %p/lib/freetype2/bin
+
+DescUsage: 
+Packages that need freetype2 versions between 2.1.3 and 2.1.6,
+should builddepend on freetype2-dev and depend on freetype2-shlibs
+and make sure that configure finds the freetype-config script in
+%p/lib/freetype2/bin. The headers and libraries needed at build
+time are in %p/lib/freetype2/{include,lib}.
 
 DescPort: 
  Previous versions by Christoph Pfisterer
+ Uses the same patch file as the non-hinting package.
 
 License: Restrictive
 Homepage: http://www.freetype.org/
 Maintainer: Alexander Strange [EMAIL PROTECTED]
+

Index: freetype2.patch
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/graphics/freetype2.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- freetype2.patch 1 Nov 2004 23:59:05 -   1.3
+++ freetype2.patch 26 May 2005 17:46:27 -  1.4
@@ -1,5 +1,19 @@
 freetype-2.1.3/builds/unix/freetype-config.in~ Tue Dec 16 18:58:35 2003
-+++ freetype-2.1.3/builds/unix/freetype-config.in  Tue Dec 16 19:00:47 2003
+diff -aur freetype-2.1.4_ori/builds/unix/detect.mk 
freetype-2.1.4/builds/unix/detect.mk
+--- freetype-2.1.4_ori/builds/unix/detect.mk   2002-06-14 10:09:25.0 
+0200
 freetype-2.1.4/builds/unix/detect.mk   2005-02-27 23:38:15.0 
+0100
+@@ -18,7 +18,7 @@
+ 
+   # Note: this test is 

dists/10.3/stable/main/finkinfo/sci root4-cernlib.info,1.4,1.5 root4.info,1.4,1.5

2005-05-26 Thread Remi Mommsen
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12549

Modified Files:
root4-cernlib.info root4.info 
Log Message:
Need newest version of freetype2(-hinting)

Index: root4.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/sci/root4.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- root4.info  23 May 2005 17:39:41 -  1.4
+++ root4.info  26 May 2005 17:47:55 -  1.5
@@ -1,6 +1,6 @@
 Package: root4
 Version: 4.04.02
-Revision: 12
+Revision: 14
 GCC: 3.3
 BuildDependsOnly: false
 Description: Object-oriented data analysis framework
@@ -10,7 +10,7 @@
 
 BuildDepends: 
  x11-dev,
- freetype2-dev | freetype2-hinting-dev,
+ freetype2-dev (=2.1.4-11) | freetype2-hinting-dev (=2.1.4-11),
  libjpeg,
  libpng3,
  libtiff,
@@ -68,7 +68,7 @@
Replaces:  root4-cernlib-shlibs 
Depends: 
  x11-shlibs,
- freetype2-shlibs | freetype2-hinting-shlibs,
+ freetype2-shlibs (=2.1.4-11) | freetype2-hinting-shlibs (=2.1.4-11),
  libjpeg-shlibs,
  libpng3-shlibs,
  libtiff-shlibs,

Index: root4-cernlib.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/sci/root4-cernlib.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- root4-cernlib.info  23 May 2005 17:39:41 -  1.4
+++ root4-cernlib.info  26 May 2005 17:47:53 -  1.5
@@ -1,6 +1,6 @@
 Package: root4-cernlib
 Version: 4.04.02
-Revision: 13
+Revision: 14
 GCC: 3.3
 BuildDependsOnly: false
 Description: Object-oriented data analysis framework
@@ -13,7 +13,7 @@
  cctools-single-module,
  g77,
  x11-dev,
- freetype2-dev | freetype2-hinting-dev,
+ freetype2-dev (=2.1.4-11) | freetype2-hinting-dev  (=2.1.4-11),
  libjpeg,
  libpng3,
  libtiff,
@@ -74,7 +74,7 @@
Replaces:  root4-shlibs 
Depends: 
  x11-shlibs,
- freetype2-shlibs | freetype2-hinting-shlibs,
+ freetype2-shlibs (=2.1.4-11) | freetype2-hinting-shlibs (=2.1.4-11),
  libjpeg-shlibs,
  libpng3-shlibs,
  libtiff-shlibs,



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


scripts/buildfink cleanfink,NONE,1.1 FinkLib.pm,1.1,1.2 buildfink,1.6,1.7

2005-05-26 Thread Matthew Sachs
Update of /cvsroot/fink/scripts/buildfink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19394

Modified Files:
FinkLib.pm buildfink 
Added Files:
cleanfink 
Log Message:
Add purgeNonEssential to FinkLib, new script cleanfink which just does that

Index: FinkLib.pm
===
RCS file: /cvsroot/fink/scripts/buildfink/FinkLib.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- FinkLib.pm  11 May 2005 19:04:34 -  1.1
+++ FinkLib.pm  26 May 2005 18:14:33 -  1.2
@@ -44,4 +44,32 @@
return $FinkConfig;
 }
 
+# Purge packages we may have previously built
+sub purgeNonEssential {
+   my @essentials = map { quotemeta($_) } 
Fink::Package-list_essential_packages();
+   my $re = ^(?: . join(|, @essentials) . )\$;
+
+   $Fink::Status::the_instance ||= Fink::Status-new();
+   $Fink::Status::the_instance-read();
+
+   my @packages = Fink::Package-list_packages();
+   my @purgelist;
+   foreach my $pkgname (@packages) {
+   next if $pkgname =~ /$re/i;
+   next if $pkgname =~ /^fink-buildlock/;
+   next if Fink::VirtPackage-query_package($pkgname);
+
+   my $obj;
+   eval {
+   $obj = Fink::Package-package_by_name($pkgname);
+   };
+   next if $@ or !$obj;
+   next unless $obj-is_any_installed();
+
+   push @purgelist, $pkgname;
+   }
+
+   system(dpkg --purge  . join( , @purgelist) .  21 | grep -v 'not 
installed') if @purgelist;
+}
+
 1;

--- NEW FILE: cleanfink ---
#!/usr/bin/perl

# Purge non-essential packages

#Copyright (c) 2005 Apple Computer, Inc.  All Rights Reserved.
#
#This program is free software; you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation; either version 2 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

use strict;
use warnings;
use FindBin qw($Bin);
use lib $Bin;
use FinkLib;

die Usage: $0 finkdir unless @ARGV == 1;
my $FinkDir = shift;

if($FinkDir and not -d $FinkDir) {
die The specified Fink directory does not exist.\n;
} elsif($FinkDir and not -x $FinkDir/bin/fink) {
die The specified Fink directory does not appear to contain a Fink 
installation.\n;
}


FinkLib::initFink($FinkDir);
FinkLib::purgeNonEssential();

Index: buildfink
===
RCS file: /cvsroot/fink/scripts/buildfink/buildfink,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- buildfink   25 May 2005 23:56:50 -  1.6
+++ buildfink   26 May 2005 18:14:33 -  1.7
@@ -129,7 +129,7 @@
 
 restoreSystem();
 prepSystem();
-purgeNonBase();
+FinkLib::purgeNonEssential();
 
 # Rebuild the package database, just to be paranoid.
 scanPackages();
@@ -370,7 +370,7 @@
next if $obj-{type} and $obj-{type} eq dummy;
 
doLog(Building package $pkg...);
-   purgeNonBase();
+   FinkLib::purgeNonEssential();
my $srcdir = $Fink::Config::buildpath; # Suppress used only 
once warning
$srcdir = $Fink::Config::buildpath/ . $obj-get_fullname();
 
@@ -686,34 +686,6 @@
return ;
 }
 
-# Purge packages we may have previously built
-sub purgeNonBase {
-   my @essentials = map { quotemeta($_) } 
Fink::Package-list_essential_packages();
-   my $re = ^(?: . join(|, @essentials) . )\$;
-
-   $Fink::Status::the_instance ||= Fink::Status-new();
-   $Fink::Status::the_instance-read();
-
-   my @packages = Fink::Package-list_packages();
-   my @purgelist;
-   foreach my $pkgname (@packages) {
-   next if $pkgname =~ /$re/i;
-   next if $pkgname =~ /^fink-buildlock/;
-   next if Fink::VirtPackage-query_package($pkgname);
-
-   my $obj;
-   eval {
-   $obj = Fink::Package-package_by_name($pkgname);
-   };
-   next if $@ or !$obj;
-   next unless $obj-is_any_installed();
-
-   push @purgelist, $pkgname;
-   }
-
-   system(dpkg --purge  . join( , @purgelist) .  21 | grep -v 'not 
installed') if @purgelist;
-}
-
 # Rescan the .info files and rebuild the package database
 sub scanPackages {
Fink::Package-forget_packages(2, 0);




fink/perlmod/Fink PkgVersion.pm,1.414,1.415 ChangeLog,1.1023,1.1024

2005-05-26 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21091

Modified Files:
PkgVersion.pm ChangeLog 
Log Message:
Better error msg if qpkg-query fails during buildlock removal.

Apparently when SIGINT arrives just as tarball is finished being
unpacked...causes the `` to fail to even start...there appears to be a
pending (unreaped) SIGCHLD from the tar process?


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.414
retrieving revision 1.415
diff -u -d -r1.414 -r1.415
--- PkgVersion.pm   24 May 2005 22:14:31 -  1.414
+++ PkgVersion.pm   26 May 2005 18:23:52 -  1.415
@@ -3552,21 +3552,18 @@
# remove lockpkg (== clear lock for building $self)
print Removing build lock...\n;
 
-
-   
-   my $old_lock;
-   {
-   local $SIG{INT} = 'IGNORE';
-   $old_lock = `dpkg-query -W $lockpkg 2/dev/null`;
-   }
+   my $old_lock = `dpkg-query -W $lockpkg 2/dev/null`;
chomp $old_lock;
if ($old_lock eq $lockpkg\t) {
print_breaking(WARNING: The lock was removed by some other 
process.);
+   } elsif ($old_lock eq '') {
+   # this is weird, man...qpkg-query crashed or lock never got 
installed
+   print_breaking(WARNING: Could not read lock timestamp. Not 
removing it.);
} elsif ($old_lock ne $lockpkg\t$timestamp) {
# don't trample some other timestamp's lock
-   print_breaking(WARNING: The lock has a different timestamp. 
Not .
-   removing it, as it likely 
belongs to a different .
-   fink process. This should not 
ever happen.);
+   print_breaking(WARNING: The lock has a different timestamp 
than the .
+   one we set. Not removing it, 
as it likely belongs to .
+   a different fink process.);
} else {
if (execute(dpkg_lockwait() .  -r $lockpkg, ignore_INT=1)) {
print_breaking(WARNING: Can't remove package .

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1023
retrieving revision 1.1024
diff -u -d -r1.1023 -r1.1024
--- ChangeLog   26 May 2005 17:29:34 -  1.1023
+++ ChangeLog   26 May 2005 18:23:53 -  1.1024
@@ -1,5 +1,9 @@
 2005-05-26  Daniel Macks  [EMAIL PROTECTED]
 
+   * PkgVernios.pm: Better err if qpkg-query fails while removing buildlock
+
+2005-05-26  Daniel Macks  [EMAIL PROTECTED]
+
* Engine.pm: Convert reinstall to rebuild if no .deb present.
 
 2005-05-25  Peter O'Gorman  [EMAIL PROTECTED]



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.1024,1.1025 Configure.pm,1.42,1.43

2005-05-26 Thread Dave Vasilevsky
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30667

Modified Files:
ChangeLog Configure.pm 
Log Message:
fix spotlight warning

Index: Configure.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Configure.pm,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- Configure.pm25 May 2005 02:50:31 -  1.42
+++ Configure.pm26 May 2005 21:26:45 -  1.43
@@ -231,34 +231,36 @@
 =item spotlight_warning
 
 Warn the user if they are choosing a build path which will be indexed by
-Spotlight. Returns true if the user heeded the warning. This warning
-will only be seen once.
+Spotlight. Returns true if changes have been made to the Fink configuration,
+which will need to be saved.
 
 =cut
 
 sub spotlight_warning {
my $builddir = $config-param_default(Buildpath,
-   
  $basepath/src/fink.build);
-   my $result = 0;
-   
+   
  $basepath/src/fink.build);  
if ( $ == 0
 !$config-has_flag('SpotlightWarning')
 $builddir !~ /\.build$/
 $config-param(distribution) ge 10.4) {
+   
$config-set_flag('SpotlightWarning');
+   
print \n;
-   $result =
+   my $response =
prompt_boolean(Your current build directory 
'$builddir' will be .
indexed by Spotlight, which can make packages 
build quite .
slowly.\n\n.
-   Would you like to add '.build' to the end of 
your build .
+   Would you like to use '$builddir.build' as 
your new build .
directory, so that Spotlight will not index 
it?,
default = 1);
-   
-   $config-set_param(Buildpath, $builddir . .build) if 
$result;
print \n; 
+   
+   $config-set_param(Buildpath, $builddir . .build) if 
$response;
+   return 1;
}
-   return $result;
+   
+   return 0;
 }  
 
 =item choose_mirrors

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1024
retrieving revision 1.1025
diff -u -d -r1.1024 -r1.1025
--- ChangeLog   26 May 2005 18:23:53 -  1.1024
+++ ChangeLog   26 May 2005 21:26:43 -  1.1025
@@ -1,6 +1,10 @@
+2005-05-26  Dave Vasilevsky  [EMAIL PROTECTED]
+
+   * Configure.pm: Fix Spotlight warning.
+
 2005-05-26  Daniel Macks  [EMAIL PROTECTED]
 
-   * PkgVernios.pm: Better err if qpkg-query fails while removing buildlock
+   * PkgVersion.pm: Better err if qpkg-query fails while removing buildlock
 
 2005-05-26  Daniel Macks  [EMAIL PROTECTED]
 



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/crypto/finkinfo postgresql-ssl-tcl.info,1.11,1.12

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.3/unstable/crypto/finkinfo

Modified Files:
postgresql-ssl-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-ssl-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/crypto/finkinfo/postgresql-ssl-tcl.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- postgresql-ssl-tcl.info 12 Apr 2005 11:58:16 -  1.11
+++ postgresql-ssl-tcl.info 26 May 2005 21:44:48 -  1.12
@@ -1,6 +1,6 @@
 Package: postgresql-ssl-tcl
-Version: 8.0.2
-Revision: 11
+Version: 8.0.3
+Revision: 12
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org
@@ -47,15 +47,17 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev (= %v-%r), bison, 
readline5, openssl097-dev
-Depends: postgresql80-ssl-shlibs (= %v-%r), postgresql80-ssl (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev, bison, readline5, 
openssl097-dev
+Depends: postgresql80-ssl-shlibs, postgresql80-ssl, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib -lpq
+SetCC: gcc-3.3
+SetCXX: g++-3.3
 Conflicts: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 Replaces: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 PatchScript: sed 's|@INSTPREFIX@|%p|g'  %a/postgresql80-ssl.patch | patch -p1
@@ -112,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-tcl
+  Replaces: %N, postgresql-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools (with SSL)
 License: BSD



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/database postgresql-perl-all.info,1.3,1.4 postgresql-perl.info,1.5,1.6 postgresql-python-py.info,1.3,1.4 postgresql-tcl.info,1.2,1.3

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/database
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.3/stable/main/finkinfo/database

Modified Files:
postgresql-perl-all.info postgresql-perl.info 
postgresql-python-py.info postgresql-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-perl-all.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/database/postgresql-perl-all.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-perl-all.info1 May 2005 08:14:16 -   1.3
+++ postgresql-perl-all.info26 May 2005 21:44:47 -  1.4
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-perl-%type_pkg[perl]
-Type: perl(5.6.0 5.8.1)
+Type: perl(5.6.0 5.6.1 5.8.0 5.8.1 5.8.4)
 Version: 7.4.3
 Revision: 21
 GCC: 3.3

Index: postgresql-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/database/postgresql-tcl.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postgresql-tcl.info 27 Apr 2005 21:39:07 -  1.2
+++ postgresql-tcl.info 26 May 2005 21:44:48 -  1.3
@@ -1,6 +1,6 @@
 Package: postgresql-tcl
-Version: 8.0.2
-Revision: 11
+Version: 8.0.3
+Revision: 12
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org
@@ -47,15 +47,17 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-dev (= %v-%r), bison, readline5
-Depends: postgresql80-shlibs (= %v-%r), postgresql80 (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-dev, bison, readline5
+Depends: postgresql80-shlibs, postgresql80, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib -lpq
+SetCC: gcc-3.3
+SetCXX: g++-3.3
 Conflicts: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 Replaces: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 PatchScript: sed 's|@INSTPREFIX@|%p|g'  %a/postgresql80.patch | patch -p1
@@ -112,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-ssl-tcl
+  Replaces: %N, postgresql-ssl-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools
 License: BSD

Index: postgresql-perl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/database/postgresql-perl.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- postgresql-perl.info3 May 2005 22:26:35 -   1.5
+++ postgresql-perl.info26 May 2005 21:44:48 -  1.6
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-perl-%type_pkg[perl]
-Type: perl(5.6.0 5.8.1)
+Type: perl(5.6.0 5.8.1 5.8.2 5.8.6)
 Version: 8.0.2
 Revision: 11
 GCC: 3.3

Index: postgresql-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/database/postgresql-python-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-python-py.info   3 May 2005 22:19:37 -   1.3
+++ postgresql-python-py.info   26 May 2005 21:44:48 -  1.4
@@ -2,7 +2,7 @@
 Package: postgresql-python-py%type_pkg[python]
 Version: 8.0.2
 Revision: 11
-Type: python(2.1 2.2 2.3)
+Type: python(2.1 2.2 2.3 2.4)
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/crypto/finkinfo postgresql-ssl-perl.info,1.5,1.6 postgresql-ssl-python-py.info,1.3,1.4 postgresql-ssl-tcl.info,1.2,1.3

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/stable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.3/stable/crypto/finkinfo

Modified Files:
postgresql-ssl-perl.info postgresql-ssl-python-py.info 
postgresql-ssl-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-ssl-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/crypto/finkinfo/postgresql-ssl-python-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-ssl-python-py.info   9 May 2005 13:48:43 -   1.3
+++ postgresql-ssl-python-py.info   26 May 2005 21:44:47 -  1.4
@@ -2,7 +2,7 @@
 Package: postgresql-ssl-python-py%type_pkg[python]
 Version: 8.0.2
 Revision: 11
-Type: python(2.1 2.2 2.3)
+Type: python(2.1 2.2 2.3 2.4)
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org

Index: postgresql-ssl-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/crypto/finkinfo/postgresql-ssl-tcl.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postgresql-ssl-tcl.info 27 Apr 2005 21:38:50 -  1.2
+++ postgresql-ssl-tcl.info 26 May 2005 21:44:47 -  1.3
@@ -1,6 +1,6 @@
 Package: postgresql-ssl-tcl
-Version: 8.0.2
-Revision: 11
+Version: 8.0.3
+Revision: 12
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org
@@ -47,15 +47,17 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev (= %v-%r), bison, 
readline5, openssl097-dev
-Depends: postgresql80-ssl-shlibs (= %v-%r), postgresql80-ssl (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev, bison, readline5, 
openssl097-dev
+Depends: postgresql80-ssl-shlibs, postgresql80-ssl, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib -lpq
+SetCC: gcc-3.3
+SetCXX: g++-3.3
 Conflicts: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 Replaces: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 PatchScript: sed 's|@INSTPREFIX@|%p|g'  %a/postgresql80-ssl.patch | patch -p1
@@ -112,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-tcl
+  Replaces: %N, postgresql-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools (with SSL)
 License: BSD

Index: postgresql-ssl-perl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/crypto/finkinfo/postgresql-ssl-perl.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- postgresql-ssl-perl.info9 May 2005 13:50:14 -   1.5
+++ postgresql-ssl-perl.info26 May 2005 21:44:47 -  1.6
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-ssl-perl-%type_pkg[perl]
-Type: perl(5.6.0 5.8.1)
+Type: perl(5.6.0 5.8.1 5.8.2 5.8.6)
 Version: 8.0.2
 Revision: 11
 GCC: 3.3



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/database postgresql-perl.info,1.4,1.5 postgresql-python-py.info,1.3,1.4 postgresql-tcl.info,1.3,1.4

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.4-transitional/stable/main/finkinfo/database

Modified Files:
postgresql-perl.info postgresql-python-py.info 
postgresql-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database/postgresql-tcl.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-tcl.info 1 May 2005 14:39:16 -   1.3
+++ postgresql-tcl.info 26 May 2005 21:44:48 -  1.4
@@ -1,5 +1,5 @@
 Package: postgresql-tcl
-Version: 8.0.2
+Version: 8.0.3
 Revision: 22
 GCC: 3.3
 CustomMirror: 
@@ -47,11 +47,11 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-dev (= %v-%r), bison, readline5
-Depends: postgresql80-shlibs (= %v-%r), postgresql80 (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-dev, bison, readline5
+Depends: postgresql80-shlibs, postgresql80, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
@@ -114,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-ssl-tcl
+  Replaces: %N, postgresql-ssl-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools
 License: BSD

Index: postgresql-perl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database/postgresql-perl.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- postgresql-perl.info25 May 2005 17:07:09 -  1.4
+++ postgresql-perl.info26 May 2005 21:44:48 -  1.5
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-perl-%type_pkg[perl]
-Type: perl(5.8.6)
+Type: perl(5.6.0 5.8.1 5.8.2 5.8.6)
 Version: 8.0.2
 Revision: 22
 GCC: 3.3

Index: postgresql-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database/postgresql-python-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-python-py.info   1 May 2005 14:39:16 -   1.3
+++ postgresql-python-py.info   26 May 2005 21:44:48 -  1.4
@@ -2,7 +2,7 @@
 Package: postgresql-python-py%type_pkg[python]
 Version: 8.0.2
 Revision: 22
-Type: python(2.2 2.3)
+Type: python(2.1 2.2 2.3 2.4)
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/crypto/finkinfo postgresql-ssl-tcl.info,1.2,1.3

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.4-transitional/unstable/crypto/finkinfo

Modified Files:
postgresql-ssl-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-ssl-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo/postgresql-ssl-tcl.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postgresql-ssl-tcl.info 1 May 2005 14:24:20 -   1.2
+++ postgresql-ssl-tcl.info 26 May 2005 21:44:49 -  1.3
@@ -1,5 +1,5 @@
 Package: postgresql-ssl-tcl
-Version: 8.0.2
+Version: 8.0.3
 Revision: 22
 GCC: 3.3
 CustomMirror: 
@@ -47,11 +47,11 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev (= %v-%r), bison, 
readline5, openssl097-dev
-Depends: postgresql80-ssl-shlibs (= %v-%r), postgresql80-ssl (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev, bison, readline5, 
openssl097-dev
+Depends: postgresql80-ssl-shlibs, postgresql80-ssl, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
@@ -114,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-tcl
+  Replaces: %N, postgresql-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools (with SSL)
 License: BSD



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/database postgresql-tcl.info,1.11,1.12

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/database
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.3/unstable/main/finkinfo/database

Modified Files:
postgresql-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/database/postgresql-tcl.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- postgresql-tcl.info 12 Apr 2005 11:58:17 -  1.11
+++ postgresql-tcl.info 26 May 2005 21:44:48 -  1.12
@@ -1,6 +1,6 @@
 Package: postgresql-tcl
-Version: 8.0.2
-Revision: 11
+Version: 8.0.3
+Revision: 12
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org
@@ -47,15 +47,17 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-dev (= %v-%r), bison, readline5
-Depends: postgresql80-shlibs (= %v-%r), postgresql80 (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-dev, bison, readline5
+Depends: postgresql80-shlibs, postgresql80, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib -lpq
+SetCC: gcc-3.3
+SetCXX: g++-3.3
 Conflicts: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 Replaces: postgresql-tcl, postgresql-ssl-tcl, postgresql, postgresql-ssl
 PatchScript: sed 's|@INSTPREFIX@|%p|g'  %a/postgresql80.patch | patch -p1
@@ -112,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-ssl-tcl
+  Replaces: %N, postgresql-ssl-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools
 License: BSD



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/crypto/finkinfo postgresql-ssl-perl.info,1.3,1.4 postgresql-ssl-python-py.info,1.3,1.4 postgresql-ssl-tcl.info,1.3,1.4

2005-05-26 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2415/10.4-transitional/stable/crypto/finkinfo

Modified Files:
postgresql-ssl-perl.info postgresql-ssl-python-py.info 
postgresql-ssl-tcl.info 
Log Message:
postgresql updates, move to stable

Index: postgresql-ssl-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo/postgresql-ssl-python-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-ssl-python-py.info   1 May 2005 14:39:16 -   1.3
+++ postgresql-ssl-python-py.info   26 May 2005 21:44:48 -  1.4
@@ -2,7 +2,7 @@
 Package: postgresql-ssl-python-py%type_pkg[python]
 Version: 8.0.2
 Revision: 22
-Type: python(2.2 2.3)
+Type: python(2.1 2.2 2.3 2.4)
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org

Index: postgresql-ssl-tcl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo/postgresql-ssl-tcl.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-ssl-tcl.info 1 May 2005 14:39:16 -   1.3
+++ postgresql-ssl-tcl.info 26 May 2005 21:44:48 -  1.4
@@ -1,5 +1,5 @@
 Package: postgresql-ssl-tcl
-Version: 8.0.2
+Version: 8.0.3
 Revision: 22
 GCC: 3.3
 CustomMirror: 
@@ -47,11 +47,11 @@
   sam-CR: ftp://ftp2.cr.postgresql.org/pub/Unix/postgres
 
 Source: mirror:custom:source/v%v/postgresql-%v.tar.bz2
-Source-MD5: 1d44b9ca9a05a0df6c4bf8ebb7164a06
+Source-MD5: c0914a133ce6c1e0f1d8b93982d6e881
 Source2: http://gborg.postgresql.org/download/pgtclng/stable/pgtcl1.5.2.tar.gz
 Source2-MD5: d19dfdcb54c334495d32456a043e0232
-BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev (= %v-%r), bison, 
readline5, openssl097-dev
-Depends: postgresql80-ssl-shlibs (= %v-%r), postgresql80-ssl (= %v-%r), tcltk
+BuildDepends: tcltk, tcltk-dev, postgresql80-ssl-dev, bison, readline5, 
openssl097-dev
+Depends: postgresql80-ssl-shlibs, postgresql80-ssl, tcltk
 NoSetCPPFLAGS: true
 SetCPPFLAGS: -I%p/include/postgresql -I%p/include
 NoSetLDFLAGS: true
@@ -114,6 +114,14 @@
 sudo -u postgres %p/bin/droplang pltcl template1 /dev/null 21 || :
   fi
 
+SplitOff: 
+  Package: %N-dev
+  Depends: %N (= %v-%r)
+  BuildDependsOnly: true
+  Conflicts: postgresql-tcl
+  Replaces: %N, postgresql-tcl
+  Files: include
+
 DocFiles: COPYRIGHT HISTORY INSTALL
 Description: PostgreSQL TCL tools (with SSL)
 License: BSD

Index: postgresql-ssl-perl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo/postgresql-ssl-perl.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postgresql-ssl-perl.info1 May 2005 14:39:16 -   1.3
+++ postgresql-ssl-perl.info26 May 2005 21:44:48 -  1.4
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-ssl-perl-%type_pkg[perl]
-Type: perl(5.8.1 5.8.6)
+Type: perl(5.6.0 5.8.1 5.8.2 5.8.6)
 Version: 8.0.2
 Revision: 22
 GCC: 3.3



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/editors bluefish.info,1.10,1.11

2005-05-26 Thread Michèle Garoche
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/editors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10170

Modified Files:
bluefish.info 
Log Message:
Adding missing dependencies

Index: bluefish.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/editors/bluefish.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- bluefish.info   15 May 2005 06:26:45 -  1.10
+++ bluefish.info   26 May 2005 22:18:48 -  1.11
@@ -1,28 +1,23 @@
 Info2: 
-Package: bluefish%type_pkg[-gnome2]
-Type: -gnome2 (boolean)
+Package: bluefish%type_pkg[-gnome2]%type_pkg[-gnomevfs2]
+Type: -gnome2 (boolean), -gnomevfs2 (boolean)
 Version: 1.0
-Revision: 4
+Revision: 7
 GCC: 3.3
 Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
 Source-MD5: a3cf8abd282d850407e8c7eed38d15e7
-Depends: pcre-shlibs (= 4.2-2), glib2-shlibs (= 2.4.6-6), glib2 (= 
2.4.6-6), pango1-xft2-shlibs (= 1.6.0-1), pango1-xft2 (= 1.6.0-1), 
atk1-shlibs (= 1.6.1-3), libjpeg-shlibs (= 6b-16), libpng3-shlibs (= 1.2.8), 
libtiff-shlibs (= 3.6.1), gtk+2-shlibs (= 2.4.9-8), gtk+2 (= 2.4.9-8), 
default-icon-theme, gnome-icon-theme, aspell-shlibs (= 0.50.5-1), gettext, 
libiconv, x11, popt-shlibs (= 1.7-5), shared-mime-info
-BuildDepends: pkgconfig, autoconf2.5, glib2-dev (= 2.4.6-6), pango1-xft2-dev 
(= 1.6.0-1), atk1 (= 1.6.1-3), libjpeg (= 6b-16), libpng3 (= 1.2.8), 
libtiff (= 3.6.1), gtk+2-dev (= 2.4.9-8), pcre (= 4.2-2), pcre-bin (= 
4.2-2), aspell-dev (= 0.50.5-1), gettext-dev, gettext-tools, gettext-bin, 
libiconv-dev, x11-dev, gcc3.3
-Recommends: aspell-en | aspell-de | aspell-fr | aspell-es
-Suggests: gnome-vfs2-ssl | gnome-vfs2
-Replaces: bluefish, bluefish-gnome2
-Conflicts: bluefish, bluefish-gnome2
+Depends: aspell-shlibs (= 0.50.5-1), default-icon-theme, gettext (= 
0.10.40-19), glib2 (= 2.4.6-6), glib2-shlibs (= 2.4.6-6), gnome-icon-theme 
(= 1.2.3-5), libjpeg-shlibs (= 6b-16), libtiff-shlibs (= 3.6.1-4), 
pango1-xft2 (= 1.6.0-1), pango1-xft2-shlibs (= 1.6.0-1), pcre-shlibs (= 
4.2-2), popt-shlibs (= 1.7-5), libxml2-shlibs (= 2.6.17-1), libxml2-bin (= 
2.6.17-1), shared-mime-info (= 0.14-6), atk1-shlibs (= 1.6.1-3), 
libpng3-shlibs (= 1:1.2.8), gtk+2 (= 2.4.9-8), gtk+2-shlibs (= 2.4.9-8), 
libiconv (= 1.9.1-11), x11, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-base 
(= 2.4.1-1), (%type_raw[-gnome2] = -gnome2) gnome-base (= 2.4.1-1), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-mime-data (= 2.4.1-4), 
(%type_raw[-gnome2] = -gnome2) gnome-mime-data (= 2.4.1-4), 
(%type_raw[-gnomevfs2] = -gnomevfs2) libidl2-shlibs, (%type_raw[-gnome2] = 
-gnome2) libidl2-shlibs, (%type_raw[-gnomevfs2] = -gnomevfs2) orbit2 (= 
2.10.3-9), (%type_raw[-gnome2] = -gnome2) orbit2 (= 
 2.10.3-9), (%type_raw[-gnomevfs2] = -gnomevfs2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnome2] = -gnome2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gconf2 (= 2.6.3-10), (%type_raw[-gnome2] 
= -gnome2) gconf2 (= 2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gconf2-shlibs (= 2.6.3-10), (%type_raw[-gnome2] = -gnome2) gconf2-shlibs (= 
2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) libbonobo2 (= 2.6.2-9), 
(%type_raw[-gnome2] = -gnome2) libbonobo2 (= 2.6.2-9), (%type_raw[-gnomevfs2] 
= -gnomevfs2) libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnome2] = -gnome2) 
libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2 
(= 2.6.1.1-17), (%type_raw[-gnome2] = -gnome2) gnome-vfs2 (= 2.6.1.1-17), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-shlibs (= 2.6.1.1-17), 
(%type_raw[-gnome2] = -gnome2) gnome-vfs2-shlibs (= 2.6.1.1-17), 
(%type_raw[-gnome2] = -gnome2) audiofile-shlibs, (%type_raw[-gnome2] = -gnome2) 
audiofile-bin,  (%type
 _raw[-gnome2] = -gnome2) esound, (%type_raw[-gnome2] = -gnome2) esound-bin, 
(%type_raw[-gnome2] = -gnome2) esound-common, (%type_raw[-gnome2] = -gnome2) 
esound-shlibs, (%type_raw[-gnome2] = -gnome2) libart2-shlibs (= 2.3.16-2), 
(%type_raw[-gnome2] = -gnome2) libgnome2 (= 2.6.1.2-9), (%type_raw[-gnome2] = 
-gnome2) libgnome2-shlibs (= 2.6.1.2-9), (%type_raw[-gnome2] = -gnome2) 
libglade2-shlibs (= 2.3.6-16), (%type_raw[-gnome2] = -gnome2) libgnomecanvas2 
(= 2.6.1.1-7), (%type_raw[-gnome2] = -gnome2) libgnomecanvas2-shlibs (= 
2.6.1.1-7),  (%type_raw[-gnome2] = -gnome2) gnome-keyring-shlibs, 
(%type_raw[-gnome2] = -gnome2) gnome-keyring, (%type_raw[-gnome2] = -gnome2) 
libbonoboui2 (= 2.6.1-10), (%type_raw[-gnome2] = -gnome2) libbonoboui2-shlibs 
(= 2.6.1-10), (%type_raw[-gnome2] = -gnome2) libgnomeui2 (= 2.6.1.1-9), 
(%type_raw[-gnome2] = -gnome2) libgnomeui2-shlibs (= 2.6.1.1-9)
+BuildDepends: aspell-dev (= 0.50.5-1), gettext-dev (= 0.10.40-19), 
gettext-tools (= 0.10.40-19), gettext-bin (= 0.10.40-19), glib2-dev (= 
2.4.6-6), libiconv-dev (= 1.9.1-11), libjpeg (= 6b-16), libtiff (= 3.6.1-4), 
pango1-xft2-dev (= 1.6.0-1), pcre (= 4.2-2), pcre-bin (= 

dists/10.3/unstable/main/finkinfo/editors bluefish.info,1.13,1.14 bluefish.patch,1.5,1.6

2005-05-26 Thread Michèle Garoche
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/editors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10650

Modified Files:
bluefish.info bluefish.patch 
Log Message:
New upstream snapshot

Index: bluefish.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/editors/bluefish.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- bluefish.info   15 May 2005 06:21:33 -  1.13
+++ bluefish.info   26 May 2005 22:20:48 -  1.14
@@ -1,28 +1,24 @@
 Info2: 
-Package: bluefish%type_pkg[-gnome2]
-Type: -gnome2 (boolean)
-Version: 1.0
-Revision: 5
+Package: bluefish%type_pkg[-gnome2]%type_pkg[-gnomevfs2]
+Type: -gnome2 (boolean), -gnomevfs2 (boolean)
+Version: 1.0.1
+Revision: 10
 GCC: 3.3
-Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
-Source-MD5: a3cf8abd282d850407e8c7eed38d15e7
-Depends: pcre-shlibs (= 4.5-1), glib2-shlibs (= 2.4.6-6), glib2 (= 
2.4.6-6), pango1-xft2-shlibs (= 1.6.0-1), pango1-xft2 (= 1.6.0-1), 
atk1-shlibs (= 1.6.1-3), libjpeg-shlibs (= 6b-16), libpng3-shlibs (= 1.2.8), 
libtiff-shlibs (= 3.6.1), gtk+2-shlibs (= 2.4.9-8), gtk+2 (= 2.4.9-8), 
default-icon-theme, gnome-icon-theme, aspell-shlibs (= 0.50.5-2), 
libgettext3-shlibs, libiconv, x11, popt-shlibs (= 1.7-5), shared-mime-info
-BuildDepends: pkgconfig, autoconf2.5, glib2-dev (= 2.4.6-6), pango1-xft2-dev 
(= 1.6.0-1), atk1 (= 1.6.1-3), libjpeg (= 6b-16), libpng3 (= 1.2.8), 
libtiff (= 3.6.1), gtk+2-dev (= 2.4.9-8), pcre (= 4.5-1), pcre-bin (= 
4.5-1), aspell-dev (= 0.50.5-2), libgettext3-dev, gettext-tools, libiconv-dev, 
x11-dev, gcc3.3
-Recommends: aspell-en | aspell-de | aspell-fr | aspell-es
-Suggests: gnome-vfs2-ssl | gnome-vfs2
-Replaces: bluefish, bluefish-gnome2
-Conflicts: bluefish, bluefish-gnome2
+#Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
+Source: http://pkedu.fbt.eitn.wau.nl/~olivier/snapshots/bluefish-%v.tar.bz2
+Source-MD5: 2d009fb8c3d4a3db5e9e6683d685f69d
+Depends: aspell-shlibs (= 0.50.5-2), default-icon-theme, libgettext3-shlibs 
(= 0.14.2-13), glib2 (= 2.4.6-6), glib2-shlibs (= 2.4.6-6), gnome-icon-theme 
(= 1.2.3-5), libjpeg-shlibs (= 6b-16), libtiff-shlibs (= 3.6.1), pango1-xft2 
(= 1.6.0-1), pango1-xft2-shlibs (= 1.6.0-1), pcre-shlibs (= 4.5-1), 
popt-shlibs (= 1.7-5), libxml2-shlibs (= 2.6.19-2), libxml2-bin (= 
2.6.19-2), shared-mime-info (= 0.14-6), atk1-shlibs (= 1.6.1-3), 
libpng3-shlibs (= 1:1.2.8), gtk+2 (= 2.4.9-8), gtk+2-shlibs (= 2.4.9-8), 
libiconv (= 1.9.1-11), x11, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-base, 
(%type_raw[-gnome2] = -gnome2) gnome-base, (%type_raw[-gnomevfs2] = -gnomevfs2) 
gnome-mime-data (= 2.4.1-4), (%type_raw[-gnome2] = -gnome2) gnome-mime-data 
(= 2.4.1-4), (%type_raw[-gnomevfs2] = -gnomevfs2) libidl2-shlibs, 
(%type_raw[-gnome2] = -gnome2) libidl2-shlibs, (%type_raw[-gnomevfs2] = 
-gnomevfs2) orbit2 (= 2.10.3-9), (%type_raw[-gnome2] = -gnome2) orbit2 (= 
2.10.3-9), (%type_
 raw[-gnomevfs2] = -gnomevfs2) orbit2-shlibs (= 2.10.3-9), (%type_raw[-gnome2] 
= -gnome2) orbit2-shlibs (= 2.10.3-9), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gconf2 (= 2.6.3-10), (%type_raw[-gnome2] = -gnome2) gconf2 (= 2.6.3-10), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gconf2-shlibs (= 2.6.3-10), 
(%type_raw[-gnome2] = -gnome2) gconf2-shlibs (= 2.6.3-10), 
(%type_raw[-gnomevfs2] = -gnomevfs2) libbonobo2 (= 2.6.2-9), 
(%type_raw[-gnome2] = -gnome2) libbonobo2 (= 2.6.2-9), (%type_raw[-gnomevfs2] 
= -gnomevfs2) libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnome2] = -gnome2) 
libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gnome-vfs2-ssl | (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2, 
(%type_raw[-gnome2] = -gnome2) gnome-vfs2-ssl | (%type_raw[-gnome2] = -gnome2) 
gnome-vfs2, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-ssl-shlibs | 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-shlibs, (%type_raw[-gnome2] = 
-gnome2) gnome-vfs2-ssl-shlibs | (%type_raw[-gnom
 e2] = -gnome2) gnome-vfs2-shlibs, (%type_raw[-gnome2] = -gnome2) 
audiofile-shlibs, (%type_raw[-gnome2] = -gnome2) audiofile-bin,  
(%type_raw[-gnome2] = -gnome2) esound, (%type_raw[-gnome2] = -gnome2) 
esound-bin, (%type_raw[-gnome2] = -gnome2) esound-common, (%type_raw[-gnome2] = 
-gnome2) esound-shlibs, (%type_raw[-gnome2] = -gnome2) libart2-shlibs (= 
2.3.16-2), (%type_raw[-gnome2] = -gnome2) libgnome2 (= 2.6.1.2-9), 
(%type_raw[-gnome2] = -gnome2) libgnome2-shlibs (= 2.6.1.2-9), 
(%type_raw[-gnome2] = -gnome2) libglade2-shlibs (= 2.3.6-16), 
(%type_raw[-gnome2] = -gnome2) libgnomecanvas2 (= 2.6.1.1-7), 
(%type_raw[-gnome2] = -gnome2) libgnomecanvas2-shlibs (= 2.6.1.1-7),  
(%type_raw[-gnome2] = -gnome2) gnome-keyring-shlibs, (%type_raw[-gnome2] = 
-gnome2) gnome-keyring, (%type_raw[-gnome2] = -gnome2) libbonoboui2 (= 
2.6.1-10), (%type_raw[-gnome2] = -gnome2) libbonoboui2-shlibs (= 2.6.1-10), 
(%type_raw[-gnome2] = 

dists/10.4-transitional/stable/main/finkinfo/editors bluefish.info,1.2,1.3

2005-05-26 Thread Michèle Garoche
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/editors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11457

Modified Files:
bluefish.info 
Log Message:
Adding missing dependencies

Index: bluefish.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/editors/bluefish.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- bluefish.info   15 May 2005 06:17:06 -  1.2
+++ bluefish.info   26 May 2005 22:22:22 -  1.3
@@ -1,28 +1,23 @@
 Info2: 
-Package: bluefish%type_pkg[-gnome2]
-Type: -gnome2 (boolean)
+Package: bluefish%type_pkg[-gnome2]%type_pkg[-gnomevfs2]
+Type: -gnome2 (boolean), -gnomevfs2 (boolean)
 Version: 1.0
-Revision: 4
+Revision: 20
 GCC: 3.3
 Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
 Source-MD5: a3cf8abd282d850407e8c7eed38d15e7
-Depends: pcre-shlibs (= 4.2-2), glib2-shlibs (= 2.4.6-6), glib2 (= 
2.4.6-6), pango1-xft2-shlibs (= 1.6.0-1), pango1-xft2 (= 1.6.0-1), 
atk1-shlibs (= 1.6.1-3), libjpeg-shlibs (= 6b-16), libpng3-shlibs (= 1.2.8), 
libtiff-shlibs (= 3.6.1), gtk+2-shlibs (= 2.4.9-8), gtk+2 (= 2.4.9-8), 
default-icon-theme, gnome-icon-theme, aspell-shlibs (= 0.50.5-1), gettext, 
libiconv, x11, popt-shlibs (= 1.7-5), shared-mime-info
-BuildDepends: pkgconfig, autoconf2.5, glib2-dev (= 2.4.6-6), pango1-xft2-dev 
(= 1.6.0-1), atk1 (= 1.6.1-3), libjpeg (= 6b-16), libpng3 (= 1.2.8), 
libtiff (= 3.6.1), gtk+2-dev (= 2.4.9-8), pcre (= 4.2-2), pcre-bin (= 
4.2-2), aspell-dev (= 0.50.5-1), gettext-dev, gettext-tools, gettext-bin, 
libiconv-dev, x11-dev, gcc3.3
-Recommends: aspell-en | aspell-de | aspell-fr | aspell-es
-Suggests: gnome-vfs2-ssl | gnome-vfs2
-Replaces: bluefish, bluefish-gnome2
-Conflicts: bluefish, bluefish-gnome2
+Depends: aspell-shlibs (= 0.50.5-1), default-icon-theme, gettext (= 
0.10.40-19), glib2 (= 2.4.6-6), glib2-shlibs (= 2.4.6-6), gnome-icon-theme 
(= 1.2.3-15), libjpeg-shlibs (= 6b-16), libtiff-shlibs (= 3.6.1-4), 
pango1-xft2 (= 1.6.0-1), pango1-xft2-shlibs (= 1.6.0-1), pcre-shlibs (= 
4.2-2), popt-shlibs (= 1.7-5), libxml2-shlibs (= 2.6.17-1), libxml2-bin (= 
2.6.17-1), shared-mime-info (= 0.14-6), atk1-shlibs (= 1.6.1-3), 
libpng3-shlibs (= 1:1.2.8), gtk+2 (= 2.4.9-8), gtk+2-shlibs (= 2.4.9-8), 
libiconv (= 1.9.1-11), x11, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-base 
(= 2.4.1-1), (%type_raw[-gnome2] = -gnome2) gnome-base (= 2.4.1-1), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-mime-data (= 2.4.1-4), 
(%type_raw[-gnome2] = -gnome2) gnome-mime-data (= 2.4.1-4), 
(%type_raw[-gnomevfs2] = -gnomevfs2) libidl2-shlibs, (%type_raw[-gnome2] = 
-gnome2) libidl2-shlibs, (%type_raw[-gnomevfs2] = -gnomevfs2) orbit2 (= 
2.10.3-9), (%type_raw[-gnome2] = -gnome2) orbit2 (=
  2.10.3-9), (%type_raw[-gnomevfs2] = -gnomevfs2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnome2] = -gnome2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gconf2 (= 2.6.3-10), (%type_raw[-gnome2] 
= -gnome2) gconf2 (= 2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gconf2-shlibs (= 2.6.3-10), (%type_raw[-gnome2] = -gnome2) gconf2-shlibs (= 
2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) libbonobo2 (= 2.6.2-9), 
(%type_raw[-gnome2] = -gnome2) libbonobo2 (= 2.6.2-9), (%type_raw[-gnomevfs2] 
= -gnomevfs2) libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnome2] = -gnome2) 
libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2 
(= 2.6.1.1-17), (%type_raw[-gnome2] = -gnome2) gnome-vfs2 (= 2.6.1.1-17), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-shlibs (= 2.6.1.1-17), 
(%type_raw[-gnome2] = -gnome2) gnome-vfs2-shlibs (= 2.6.1.1-17), 
(%type_raw[-gnome2] = -gnome2) audiofile-shlibs, (%type_raw[-gnome2] = -gnome2) 
audiofile-bin,  (%typ
 e_raw[-gnome2] = -gnome2) esound, (%type_raw[-gnome2] = -gnome2) esound-bin, 
(%type_raw[-gnome2] = -gnome2) esound-common, (%type_raw[-gnome2] = -gnome2) 
esound-shlibs, (%type_raw[-gnome2] = -gnome2) libart2-shlibs (= 2.3.16-2), 
(%type_raw[-gnome2] = -gnome2) libgnome2 (= 2.6.1.2-9), (%type_raw[-gnome2] = 
-gnome2) libgnome2-shlibs (= 2.6.1.2-9), (%type_raw[-gnome2] = -gnome2) 
libglade2-shlibs (= 2.3.6-17), (%type_raw[-gnome2] = -gnome2) libgnomecanvas2 
(= 2.6.1.1-7), (%type_raw[-gnome2] = -gnome2) libgnomecanvas2-shlibs (= 
2.6.1.1-7),  (%type_raw[-gnome2] = -gnome2) gnome-keyring-shlibs, 
(%type_raw[-gnome2] = -gnome2) gnome-keyring, (%type_raw[-gnome2] = -gnome2) 
libbonoboui2 (= 2.6.1-10), (%type_raw[-gnome2] = -gnome2) libbonoboui2-shlibs 
(= 2.6.1-10), (%type_raw[-gnome2] = -gnome2) libgnomeui2 (= 2.6.1.1-9), 
(%type_raw[-gnome2] = -gnome2) libgnomeui2-shlibs (= 2.6.1.1-9)
+BuildDepends: aspell-dev (= 0.50.5-1), gettext-dev (= 0.10.40-19), 
gettext-tools (= 0.10.40-19), gettext-bin (= 0.10.40-19), glib2-dev (= 
2.4.6-6), libiconv-dev (= 1.9.1-11), libjpeg (= 6b-16), libtiff (= 3.6.1-4), 
pango1-xft2-dev (= 1.6.0-1), pcre 

dists/10.4-transitional/unstable/main/finkinfo/editors bluefish.info,1.2,1.3 bluefish.patch,1.1,1.2

2005-05-26 Thread Michèle Garoche
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/editors
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12317

Modified Files:
bluefish.info bluefish.patch 
Log Message:
New upstream snapshot

Index: bluefish.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/editors/bluefish.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- bluefish.info   14 May 2005 18:44:38 -  1.2
+++ bluefish.info   26 May 2005 22:23:32 -  1.3
@@ -1,28 +1,24 @@
 Info2: 
-Package: bluefish%type_pkg[-gnome2]
-Type: -gnome2 (boolean)
-Version: 1.0
-Revision: 6
+Package: bluefish%type_pkg[-gnome2]%type_pkg[-gnomevfs2]
+Type: -gnome2 (boolean), -gnomevfs2 (boolean)
+Version: 1.0.1
+Revision: 30
 GCC: 3.3
-Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
-Source-MD5: a3cf8abd282d850407e8c7eed38d15e7
-Depends: pcre-shlibs (= 4.5-1), glib2-shlibs (= 2.4.6-7), glib2 (= 
2.4.6-7), pango1-xft2-shlibs (= 1.6.0-1), pango1-xft2 (= 1.6.0-1), 
atk1-shlibs (= 1.6.1-3), libjpeg-shlibs (= 6b-16), libpng3-shlibs (= 1.2.8), 
libtiff-shlibs (= 3.6.1), gtk+2-shlibs (= 2.4.9-8), gtk+2 (= 2.4.9-8), 
default-icon-theme, gnome-icon-theme, aspell-shlibs (= 0.50.5-2), 
libgettext3-shlibs, libiconv, x11, popt-shlibs (= 1.7-5), shared-mime-info
-BuildDepends: pkgconfig, autoconf2.5, glib2-dev (= 2.4.6-7), pango1-xft2-dev 
(= 1.6.0-1), atk1 (= 1.6.1-3), libjpeg (= 6b-16), libpng3 (= 1.2.8), 
libtiff (= 3.6.1), gtk+2-dev (= 2.4.9-8), pcre (= 4.5-1), pcre-bin (= 
4.5-1), aspell-dev (= 0.50.5-2), libgettext3-dev, gettext-tools, libiconv-dev, 
x11-dev, gcc3.3
-Recommends: aspell-en | aspell-de | aspell-fr | aspell-es
-Suggests: gnome-vfs2-ssl | gnome-vfs2
-Replaces: bluefish, bluefish-gnome2
-Conflicts: bluefish, bluefish-gnome2
+#Source: http://pkedu.fbt.eitn.wau.nl/~olivier/downloads/bluefish-%v.tar.bz2
+Source: http://pkedu.fbt.eitn.wau.nl/~olivier/snapshots/bluefish-%v.tar.bz2
+Source-MD5: 2d009fb8c3d4a3db5e9e6683d685f69d
+Depends: aspell-shlibs (= 0.50.5-2), default-icon-theme, libgettext3-shlibs 
(= 0.14.2-13), glib2 (= 2.4.6-7), glib2-shlibs (= 2.4.6-7), gnome-icon-theme 
(= 1.2.3-15), libjpeg-shlibs (= 6b-16), libtiff-shlibs (= 3.6.1-4), 
pango1-xft2 (= 1.6.0-1), pango1-xft2-shlibs (= 1.6.0-1), pcre-shlibs (= 
4.5-1), popt-shlibs (= 1.7-5), libxml2-shlibs (= 2.6.19-2), libxml2-bin (= 
2.6.19-2), shared-mime-info (= 0.14-7), atk1-shlibs (= 1.6.1-3), 
libpng3-shlibs (= 1:1.2.8), gtk+2 (= 2.4.9-8), gtk+2-shlibs (= 2.4.9-8), 
libiconv (= 1.9.2-11), x11, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-base, 
(%type_raw[-gnome2] = -gnome2) gnome-base, (%type_raw[-gnomevfs2] = -gnomevfs2) 
gnome-mime-data (= 2.4.1-4), (%type_raw[-gnome2] = -gnome2) gnome-mime-data 
(= 2.4.1-4), (%type_raw[-gnomevfs2] = -gnomevfs2) libidl2-shlibs, 
(%type_raw[-gnome2] = -gnome2) libidl2-shlibs, (%type_raw[-gnomevfs2] = 
-gnomevfs2) orbit2 (= 2.10.3-9), (%type_raw[-gnome2] = -gnome2) orbit2 (= 
2.10.3-9), (%ty
 pe_raw[-gnomevfs2] = -gnomevfs2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnome2] = -gnome2) orbit2-shlibs (= 2.10.3-9), 
(%type_raw[-gnomevfs2] = -gnomevfs2) gconf2 (= 2.6.3-10), (%type_raw[-gnome2] 
= -gnome2) gconf2 (= 2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gconf2-shlibs (= 2.6.3-10), (%type_raw[-gnome2] = -gnome2) gconf2-shlibs (= 
2.6.3-10), (%type_raw[-gnomevfs2] = -gnomevfs2) libbonobo2 (= 2.6.2-9), 
(%type_raw[-gnome2] = -gnome2) libbonobo2 (= 2.6.2-9), (%type_raw[-gnomevfs2] 
= -gnomevfs2) libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnome2] = -gnome2) 
libbonobo2-shlibs (= 2.6.2-9), (%type_raw[-gnomevfs2] = -gnomevfs2) 
gnome-vfs2-ssl | (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2, 
(%type_raw[-gnome2] = -gnome2) gnome-vfs2-ssl | (%type_raw[-gnome2] = -gnome2) 
gnome-vfs2, (%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-ssl-shlibs | 
(%type_raw[-gnomevfs2] = -gnomevfs2) gnome-vfs2-shlibs, (%type_raw[-gnome2] = 
-gnome2) gnome-vfs2-ssl-shlibs | (%type_raw[-g
 nome2] = -gnome2) gnome-vfs2-shlibs, (%type_raw[-gnome2] = -gnome2) 
audiofile-shlibs, (%type_raw[-gnome2] = -gnome2) audiofile-bin,  
(%type_raw[-gnome2] = -gnome2) esound, (%type_raw[-gnome2] = -gnome2) 
esound-bin, (%type_raw[-gnome2] = -gnome2) esound-common, (%type_raw[-gnome2] = 
-gnome2) esound-shlibs, (%type_raw[-gnome2] = -gnome2) libart2-shlibs (= 
2.3.16-2), (%type_raw[-gnome2] = -gnome2) libgnome2 (= 2.6.1.2-9), 
(%type_raw[-gnome2] = -gnome2) libgnome2-shlibs (= 2.6.1.2-9), 
(%type_raw[-gnome2] = -gnome2) libglade2-shlibs (= 2.3.6-17), 
(%type_raw[-gnome2] = -gnome2) libgnomecanvas2 (= 2.6.1.1-7), 
(%type_raw[-gnome2] = -gnome2) libgnomecanvas2-shlibs (= 2.6.1.1-7),  
(%type_raw[-gnome2] = -gnome2) gnome-keyring-shlibs, (%type_raw[-gnome2] = 
-gnome2) gnome-keyring, (%type_raw[-gnome2] = -gnome2) libbonoboui2 (= 
2.6.1-10), (%type_raw[-gnome2] = -gnome2) libbonoboui2-shlibs (= 2.6.1-10), 

scripts/buildfink README,1.2,1.3

2005-05-26 Thread Matthew Sachs
Update of /cvsroot/fink/scripts/buildfink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16983

Modified Files:
README 
Log Message:
Add cleanfink to README

Index: README
===
RCS file: /cvsroot/fink/scripts/buildfink/README,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- README  11 May 2005 19:04:34 -  1.2
+++ README  26 May 2005 22:47:25 -  1.3
@@ -7,6 +7,8 @@
The core script; performs the actual build.
 *buildstats
See how long each package took to build and how large its log was.
+*cleanfink
+   Purge all non-essential packages
 *cmplink
HTML-ify the output from cmpruns.
 *cmpruns



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci emboss.info,1.11,1.12

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3730

Modified Files:
emboss.info 
Log Message:
force java 1.4.2

Index: emboss.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- emboss.info 20 Feb 2005 02:31:13 -  1.11
+++ emboss.info 27 May 2005 00:19:50 -  1.12
@@ -9,7 +9,7 @@
   Primary: ftp://ftp.uk.embnet.org/pub/EMBOSS/
 
 Source-MD5: 4a48388ced7021a8ffece5166c40a364
-ConfigureParams: --with-java=/Library/Java/Home 
--with-javaos=/Library/Java/Home/include 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/sci emboss.info,1.1,1.2

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4051

Modified Files:
emboss.info 
Log Message:
force java 1.4.2

Index: emboss.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- emboss.info 27 Apr 2005 03:26:21 -  1.1
+++ emboss.info 27 May 2005 00:20:55 -  1.2
@@ -9,7 +9,7 @@
   Primary: ftp://ftp.uk.embnet.org/pub/EMBOSS/
 
 Source-MD5: 4a48388ced7021a8ffece5166c40a364
-ConfigureParams: --with-java=/Library/Java/Home 
--with-javaos=/Library/Java/Home/include 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/sci emboss.info,1.2,1.3

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7713

Modified Files:
emboss.info 
Log Message:
it helps to put in the correct path :)

Index: emboss.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- emboss.info 27 May 2005 00:20:55 -  1.2
+++ emboss.info 27 May 2005 00:40:33 -  1.3
@@ -9,7 +9,7 @@
   Primary: ftp://ftp.uk.embnet.org/pub/EMBOSS/
 
 Source-MD5: 4a48388ced7021a8ffece5166c40a364
-ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/include
 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci emboss.info,1.12,1.13

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7495

Modified Files:
emboss.info 
Log Message:
it helps to put in the correct path :)

Index: emboss.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- emboss.info 27 May 2005 00:19:50 -  1.12
+++ emboss.info 27 May 2005 00:39:33 -  1.13
@@ -9,7 +9,7 @@
   Primary: ftp://ftp.uk.embnet.org/pub/EMBOSS/
 
 Source-MD5: 4a48388ced7021a8ffece5166c40a364
-ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/include
 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/sci emboss.info,1.7,1.8

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8177

Modified Files:
emboss.info 
Log Message:
force java 1.4.2

Index: emboss.info
===
RCS file: /cvsroot/fink/dists/10.3/stable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- emboss.info 20 Feb 2005 01:45:08 -  1.7
+++ emboss.info 27 May 2005 00:42:42 -  1.8
@@ -10,7 +10,7 @@
 
 Source-MD5: c6facfd1750e88a0c8b7bb7ac826d472
 #Patch: %n.patch
-ConfigureParams: --with-java=/Library/Java/Home 
--with-javaos=/Library/Java/Home/include 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/sci emboss.info,1.1,1.2

2005-05-26 Thread Koen van der Drift
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8911

Modified Files:
emboss.info 
Log Message:
force java 1.4.2

Index: emboss.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/sci/emboss.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- emboss.info 27 Apr 2005 03:45:17 -  1.1
+++ emboss.info 27 May 2005 00:46:40 -  1.2
@@ -10,7 +10,7 @@
 
 Source-MD5: c6facfd1750e88a0c8b7bb7ac826d472
 #Patch: %n.patch
-ConfigureParams: --with-java=/Library/Java/Home 
--with-javaos=/Library/Java/Home/include 
+ConfigureParams: 
--with-java=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home 
--with-javaos=/System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/include
 
 Installscript: 
make install DESTDIR=%d
mkdir -p %i/include/EMBOSS



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gnome-core-1.4.1-15.info,1.2,1.3 gnome-core-1.4.1-15.patch,1.2,1.3

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24189

Added Files:
gnome-core-1.4.1-15.info gnome-core-1.4.1-15.patch 
Log Message:
packages in stable should also be in unstable


--- NEW FILE: gnome-core-1.4.1-15.info ---
Package: gnome-core
Version: 1.4.1
Revision: 15
Source: mirror:gnome:sources/%n/1.4/%n-%v.tar.bz2
Source-MD5: fea00c24018057a6f04315bea8e4bdab
Depends: %N-shlibs (= %v-%r), control-center-shlibs (= 1.4.0.5-16), 
gnome-print-shlibs (= 0.36-11), scrollkeeper (= 0.3.11-5)
Conflicts: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
Replaces: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3, audiofile
Patch: %f.patch
NoSetLDFLAGS: true
SetLIBS: -L%p/lib
SetCPPFLAGS: -no-cpp-precomp
ConfigureParams: --mandir=%p/share/man
CompileScript: 
 export CC=gcc-3.3; export CXX=g++-3.3; ./configure %c
 make CC=gcc-3.3 CXX=g++-3.3

InstallScript: 
make install DESTDIR=%d

mv %i/bin/gnome-session %i/bin/gnome-session-real
echo '#!/bin/sh' %i/bin/gnome-session
echo 'exec gnome-session-real --no-xshm $@' %i/bin/gnome-session
chmod 755 %i/bin/gnome-session

mv %i/bin/panel %i/bin/panel-real
echo '#!/bin/sh' %i/bin/panel
echo 'exec panel-real --no-xshm $@' %i/bin/panel
chmod 755 %i/bin/panel

SplitOff: 
  Package: %N-shlibs
  Depends: gnome-libs-shlibs (= 1.4.2-19), gdk-pixbuf-shlibs (= 0.18.0-12)
  Replaces: %N (= 1.4.0.6-2)
  Files: lib/libpanel_applet.*.dylib lib/libpanel_status.*.dylib
  Shlibs: 
%p/lib/libpanel_applet.0.dylib 1.0.0 %n (= 1.4.1-1)
%p/lib/libpanel_status.0.dylib 1.0.0 %n (= 1.4.1-1)
  
  DocFiles: AUTHORS COPYING* ChangeLog NEWS README

SplitOff2: 
  Package: %N-dev
  BuildDependsOnly: True
  Depends: %N-shlibs (= %v-%r)
  Replaces: %N ( 1.4.0.8-3)
  Files: include lib/*.dylib lib/*.a lib/*.la lib/*.sh
  DocFiles: AUTHORS COPYING* ChangeLog NEWS README

DocFiles: AUTHORS COPYING* ChangeLog NEWS README
PostInstScript: 
  if [ configure = $1 ]; then
scrollkeeper-update -q
  fi

PostRmScript: 
  if [ remove = $1 ]; then
scrollkeeper-update -q
  fi

Description: Common files for Gnome core apps
DescPort: 
It is important to compile the gtk+ package under OS X 10.1.1 to avoid
crashes in some applets.

License: GPL/GFDL
Maintainer: None fink-devel@lists.sourceforge.net
DescPackaging: 
 Originally packaged by Masanori Sekino.

Homepage: http://www.gnome.org/

--- NEW FILE: gnome-core-1.4.1-15.patch ---
diff -Naur gnome-core-1.4.1.old/applets/desk-guide/gwmthumbnail.c 
gnome-core-1.4.1.new/applets/desk-guide/gwmthumbnail.c
--- gnome-core-1.4.1.old/applets/desk-guide/gwmthumbnail.c  Fri Oct 26 
18:12:47 2001
+++ gnome-core-1.4.1.new/applets/desk-guide/gwmthumbnail.c  Tue Jan 28 
23:20:47 2003
@@ -29,23 +29,29 @@
 
 
 /* --- Gdk  GdkPixbuf compat prototypes --- */
+static
 GdkImage*   gdk_image_get(GdkWindow *window,
  gint   x,
  gint   y,
  gint   width,
  gint   height);
+static
 GdkColormap*   gdk_window_get_colormap  (GdkWindow *window);
+static
 GdkVisual* gdk_window_get_visual(GdkWindow *window);
+static
 GdkImage*   gdk_image_new_shared_with_pixmap (GdkWindow  *window,
  gintwidth,
  gintheight,
  GdkPixmap **pixmap_p);
+static
 GdkPixbuf*  gdk_pixbuf_from_image(GdkImage*image,
  guintx,
  guinty,
  guintwidth,
  guintheight,
  GdkColormap *cmap);
+static
 voidgdk_pixbuf_copy_from_image   (GdkPixbuf   *pixbuf,
  guintdest_x,
  guintdest_y,
@@ -537,7 +543,7 @@
 #include sys/shm.h
 #endif /* USE_SHM */
 
-GdkImage*
+static GdkImage*
 gdk_image_new_shared_with_pixmap (GdkWindow  *window,
  gintwidth,
  gintheight,
@@ -617,7 +623,7 @@
 
 /* fixed gdk_image_get(), so we don't crash if we get an X error
  */
-GdkImage*
+static GdkImage*
 

dists/10.3/stable/main/finkinfo/gnome gnome-core-1.4.1-15.info,1.4,1.5

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24347

Modified Files:
gnome-core-1.4.1-15.info 
Log Message:
add missing builddepends


Index: gnome-core-1.4.1-15.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/gnome/gnome-core-1.4.1-15.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gnome-core-1.4.1-15.info20 Mar 2005 15:47:16 -  1.4
+++ gnome-core-1.4.1-15.info27 May 2005 02:22:16 -  1.5
@@ -6,7 +6,7 @@
 Depends: %N-shlibs (= %v-%r), control-center-shlibs (= 1.4.0.5-16), 
gnome-print-shlibs (= 0.36-11), scrollkeeper (= 0.3.11-5)
 Conflicts: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
 Replaces: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
-BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3
+BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3, audiofile
 Patch: %f.patch
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gnome-core-1.4.1-15.info,1.1,1.2

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24566

Modified Files:
gnome-core-1.4.1-15.info 
Log Message:
add missing builddepends


Index: gnome-core-1.4.1-15.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-core-1.4.1-15.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-core-1.4.1-15.info11 May 2005 03:38:30 -  1.1
+++ gnome-core-1.4.1-15.info27 May 2005 02:23:08 -  1.2
@@ -6,7 +6,7 @@
 Depends: %N-shlibs (= %v-%r), control-center-shlibs (= 1.4.0.5-16), 
gnome-print-shlibs (= 0.36-11), scrollkeeper (= 0.3.11-5)
 Conflicts: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
 Replaces: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
-BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3
+BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3, audiofile
 Patch: %f.patch
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/gnome gnome-core-1.4.1-15.info,1.1,1.2

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24811

Modified Files:
gnome-core-1.4.1-15.info 
Log Message:
add missing builddepends


Index: gnome-core-1.4.1-15.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome/gnome-core-1.4.1-15.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnome-core-1.4.1-15.info26 May 2005 13:52:42 -  1.1
+++ gnome-core-1.4.1-15.info27 May 2005 02:24:16 -  1.2
@@ -6,7 +6,7 @@
 Depends: %N-shlibs (= %v-%r), control-center-shlibs (= 1.4.0.5-16), 
gnome-print-shlibs (= 0.36-11), scrollkeeper (= 0.3.11-5)
 Conflicts: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
 Replaces: gnome-session, gnome-terminal, gnome-panel, gnome-desktop
-BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3
+BuildDepends: glib, gtk+ (= 1.2.10-20), gnome-libs-dev (= 1.4.2-19), libxml, 
imlib (= 1.9.14-14), esound, control-center-dev (= 1.4.0.5-16), gdk-pixbuf 
(= 0.18.0-12), libjpeg, libpng3, orbit-dev (= 0.5.17-15), gnome-print-dev (= 
0.36-11), libglade (= 0.17-13), gtk-doc, bzip2-dev, gettext-dev, gettext-bin, 
gettext-tools, gcc3.3, audiofile
 Patch: %f.patch
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/gnome gnucash.info,1.1,1.2

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25068

Modified Files:
gnucash.info 
Log Message:
add missing builddepends


Index: gnucash.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/gnome/gnucash.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gnucash.info26 May 2005 13:52:42 -  1.1
+++ gnucash.info27 May 2005 02:26:12 -  1.2
@@ -2,7 +2,7 @@
 Version: 1.8.11
 Revision: 21
 Depends: audiofile-shlibs, bonobo-shlibs, esound-shlibs,  g-wrap-shlibs (= 
1.3.4-3), g-wrap (= 1.3.4-3), gal21-shlibs, gconf-shlibs, gdk-pixbuf-shlibs, 
glib-shlibs, gnome-libs-shlibs, gnome-print-shlibs, gtk+-shlibs (= 1.2.10-50), 
gtkhtml1.1-shlibs, guile16-shlibs, guppi16-shlibs, imlib-shlibs, 
libghttp-shlibs, libglade-shlibs, libtool14-shlibs (= 1.4.3-3), libxml-shlibs, 
oaf-shlibs, orbit-shlibs, popt-shlibs , slib, finance-quote-pm586, 
date-manip-pm, finance-quotehist-pm586, guile16, gconf
-BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43, gtk+ (= 1.2.10-50)
+BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43, gtk+ (= 1.2.10-50), audiofile
 Suggests: gnucash-docs (= 1.8.0)
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
 Source-MD5: 62f94331936e37ed1b1d28b5a1863bb3



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gnucash.info,1.3,1.4

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25241

Modified Files:
gnucash.info 
Log Message:
add missing builddepends


Index: gnucash.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnucash.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gnucash.info26 May 2005 13:52:43 -  1.3
+++ gnucash.info27 May 2005 02:27:14 -  1.4
@@ -2,7 +2,7 @@
 Version: 1.8.11
 Revision: 21
 Depends: audiofile-shlibs, bonobo-shlibs, esound-shlibs,  g-wrap-shlibs (= 
1.3.4-3), g-wrap (= 1.3.4-3), gal21-shlibs, gconf-shlibs, gdk-pixbuf-shlibs, 
glib-shlibs, gnome-libs-shlibs, gnome-print-shlibs, gtk+-shlibs (= 1.2.10-50), 
gtkhtml1.1-shlibs, guile16-shlibs, guppi16-shlibs, imlib-shlibs, 
libghttp-shlibs, libglade-shlibs, libtool14-shlibs (= 1.4.3-3), libxml-shlibs, 
oaf-shlibs, orbit-shlibs, popt-shlibs , slib, finance-quote-pm586, 
date-manip-pm, finance-quotehist-pm586, guile16, gconf
-BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43, gtk+ (= 1.2.10-50)
+BuildDepends: guppi16-dev (= 0.40.3-2), g-wrap-dev (= 1.3.4-3), gal21, 
gdk-pixbuf, glib, orbit-dev, libjpeg, libpng3, libtiff, netpbm, giflib, gdbm3, 
gmp, bonobo-dev, control-center-dev (= 1.4.0.5-6), gconf-dev, glibwww, 
gnome-core-dev (= 1.4.1-4), gnome-libs-dev, gnome-print-dev, gtkhtml1.1-dev 
(= 1.1.7-12), oaf-dev, expat, guile16-dev, libole2, libwww, gnome-vfs-dev (= 
1.0.5-5) | gnome-vfs-ssl-dev (= 1.0.5-7), libtool14, libofx1, doxygen, popt, 
imlib (= 1.9.14-2), esound, opensp4-dev, libghttp, libglade, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, texinfo, fink (= 0.20.1-1), 
pkgconfig, db43-ssl | db43, gtk+ (= 1.2.10-50), audiofile
 Suggests: gnucash-docs (= 1.8.0)
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
 Source-MD5: 62f94331936e37ed1b1d28b5a1863bb3



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/main/finkinfo/database postgresql-perl.info,1.5,1.6 postgresql-python-py.info,1.4,1.5

2005-05-26 Thread David R. Morrison
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26959

Modified Files:
postgresql-perl.info postgresql-python-py.info 
Log Message:
remove inappropriate variants from stable


Index: postgresql-perl.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database/postgresql-perl.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- postgresql-perl.info26 May 2005 21:44:48 -  1.5
+++ postgresql-perl.info27 May 2005 02:37:02 -  1.6
@@ -1,6 +1,6 @@
 Info2: 
 Package: postgresql-perl-%type_pkg[perl]
-Type: perl(5.6.0 5.8.1 5.8.2 5.8.6)
+Type: perl(5.8.1 5.8.6)
 Version: 8.0.2
 Revision: 22
 GCC: 3.3

Index: postgresql-python-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/database/postgresql-python-py.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- postgresql-python-py.info   26 May 2005 21:44:48 -  1.4
+++ postgresql-python-py.info   27 May 2005 02:37:02 -  1.5
@@ -2,7 +2,7 @@
 Package: postgresql-python-py%type_pkg[python]
 Version: 8.0.2
 Revision: 22
-Type: python(2.1 2.2 2.3 2.4)
+Type: python(2.2 2.3)
 GCC: 3.3
 CustomMirror: 
   asi-JP: ftp://ftp.jp.postgresql.org



---
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/bugs index.en.php,1.10,1.11

2005-05-26 Thread Chris Zubrzycki
Update of /cvsroot/fink/web/bugs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4915

Modified Files:
index.en.php 
Log Message:
update tags

Index: index.en.php
===
RCS file: /cvsroot/fink/web/bugs/index.en.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- index.en.php24 Jan 2005 02:38:47 -  1.10
+++ index.en.php27 May 2005 03:39:20 -  1.11
@@ -98,70 +98,50 @@
smallInclude severity: 
labelinput type=checkbox name=sev-inc 
value=criticalcritical/label 
labelinput type=checkbox name=sev-inc 
value=gravegrave/label 
-   labelinput type=checkbox name=sev-inc 
value=seriousserious/label 
-   labelinput type=checkbox name=sev-inc 
value=importantimportant/label 
labelinput type=checkbox name=sev-inc 
value=normalnormal/label 
labelinput type=checkbox name=sev-inc 
value=minorminor/label 
labelinput type=checkbox name=sev-inc 
value=wishlistwishlist/label 
-   labelinput type=checkbox name=sev-inc 
value=fixedfixed/label
/small
/li
li
smallExclude severity: 
labelinput type=checkbox name=sev-exc 
value=criticalcritical/label 
labelinput type=checkbox name=sev-exc 
value=gravegrave/label 
-   labelinput type=checkbox name=sev-exc 
value=seriousserious/label 
-   labelinput type=checkbox name=sev-exc 
value=importantimportant/label 
labelinput type=checkbox name=sev-exc 
value=normalnormal/label 
labelinput type=checkbox name=sev-exc 
value=minorminor/label 
labelinput type=checkbox name=sev-exc 
value=wishlistwishlist/label 
-   labelinput type=checkbox name=sev-exc 
value=fixedfixed/label
/small
/li
li
smallInclude tag: 
labelinput type=checkbox name=include 
value=10.2-gcc3.310.2-gcc3.3/label 
labelinput type=checkbox name=include 
value=10.310.3/label 
+   labelinput type=checkbox name=include 
value=10.4-transitional10.4-transitional/label 
labelinput type=checkbox name=include 
value=10.410.4/label 
+   labelinput type=checkbox name=include 
value=stablestable/label 
+   labelinput type=checkbox name=include 
value=unstableunstable/label 
labelinput type=checkbox name=include 
value=experimentalexperimental/label 
-   labelinput type=checkbox name=include 
value=confirmedconfirmed/label 
labelinput type=checkbox name=include 
value=fixedfixed/label 
-   labelinput type=checkbox name=include 
value=fixed-in-experimentalfixed-in-experimental/label 
-   labelinput type=checkbox name=include 
value=fixed-upstreamfixed-upstream/label 
-   labelinput type=checkbox name=include 
value=helphelp/label 
-   labelinput type=checkbox name=include 
value=l10nl10n/label 
labelinput type=checkbox name=include 
value=moreinfomoreinfo/label 
labelinput type=checkbox name=include 
value=patchpatch/label 
-   labelinput type=checkbox name=include 
value=pendingpending/label 
-   labelinput type=checkbox name=include 
value=securitysecurity/label 
labelinput type=checkbox name=include 
value=unreproducibleunreproducible/label 
-   labelinput type=checkbox name=include 
value=upstreamupstream/label 
labelinput type=checkbox name=include 
value=wontfixwontfix/label 
-   labelinput type=checkbox name=include 
value=ipv6ipv6/label 
-   labelinput type=checkbox name=include 
value=lfslfs/label 
/small
/li
li
smallExclude tag: 
labelinput type=checkbox name=exclude 
value=10.2-gcc3.310.2-gcc3.3/label 
labelinput type=checkbox name=exclude 
value=10.310.3/label 
+   labelinput type=checkbox name=exclude 
value=10.4-transitional10.4-transitional/label 
labelinput type=checkbox name=exclude 
value=10.410.4/label 
+   labelinput type=checkbox name=exclude 
value=stablestable/label 
+   labelinput type=checkbox name=exclude 
value=unstableunstable/label 
labelinput type=checkbox name=exclude 
value=experimentalexperimental/label 
-   labelinput type=checkbox name=exclude 
value=confirmedconfirmed/label 
labelinput type=checkbox name=exclude 
value=fixedfixed/label 
-   labelinput type=checkbox name=exclude 
value=fixed-in-experimentalfixed-in-experimental/label 
-   labelinput type=checkbox name=exclude 
value=fixed-upstreamfixed-upstream/label 
-