fink/perlmod/Fink ChangeLog,1.819,1.820 VirtPackage.pm,1.63,1.64

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22074

Modified Files:
ChangeLog VirtPackage.pm 
Log Message:
All expected gcc* pkgs now always exist in pdb.


Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- VirtPackage.pm  23 Jan 2005 15:10:30 -  1.63
+++ VirtPackage.pm  24 Jan 2005 06:48:29 -  1.64
@@ -542,69 +542,19 @@
$version =~ s/[\.\-]*$//;
my ($shortversion) = $version =~ 
/^(\d+\.\d+)/;
if ($version eq "2.95.2") {
-   $hash = {};
-   $hash->{package} = "gcc2";
+   $hash = &gen_gcc_hash('gcc2', 
$version, 0);
$hash->{status} = 
STATUS_PRESENT;
-   $hash->{version} = "$version-1";
-   $hash->{description} = 
"[virtual package representing the gcc $version compiler]";
-   $hash->{homepage} = 
"http://fink.sourceforge.net/faq/comp-general.php#gcc2";;
-   $hash->{compilescript} = 
$compile_script;
-   $hash->{builddependsonly} = 
"true";
-   $hash->{descdetail} = {$hash->{package}} = 
$hash;
}
if ($version =~ s/^(.*)-64$/$1/) {
-   $hash = {};
-   $hash->{package} = 
"gcc$shortversion-64";
+   $hash = 
&gen_gcc_hash("gcc$shortversion-64", $version, 1);
$hash->{status} = 
STATUS_PRESENT;
-   $hash->{version} = "$version-1";
-   $hash->{description} = 
"[virtual package representing the 64-bit gcc $version compiler]";
-   $hash->{homepage} = 
"http://fink.sourceforge.net/faq/comp-general.php#virtpackage";;
-   $hash->{compilescript} = 
$compile_script;
-   $hash->{builddependsonly} = 
"true";
-   $hash->{descdetail} = {$hash->{package}} = 
$hash;
print STDERR "  - found 64-bit 
$version\n" if ($options{debug});
next;
}
-   $hash = {};
-   $hash->{package} = "gcc$shortversion";
+   $hash = 
&gen_gcc_hash("gcc$shortversion", $version, 0);
$hash->{status} = STATUS_PRESENT;
-   $hash->{version} = "$version-1";
-   $hash->{description} = "[virtual 
package representing the gcc $version compiler]";
-   $hash->{homepage} = 
"http://fink.sourceforge.net/faq/usage-general.php#virtpackage";;
-   $hash->{compilescript} = 
$compile_script;
-   $hash->{builddependsonly} = "true";
-   $hash->{descdetail} = {$hash->{package}} = $hash;
print STDERR "  - found $version\n" if 
($options{debug});
} else {
@@ -616,7 +566,24 @@
} else {
print STDERR "  - couldn't get the contents of /usr/bin: $!\n" 
if ($options{debug});
}
-
+   {
+   # force presence of structs for some expected compilers
+   # list each as %n=>%v
+   my %expected_gcc = (
+   'gcc2'=> '2.95.2',
+   'gcc2.95' => '2.95.2',
+   'gcc3.1'  => '3.1',
+   'gcc3.3'  => '3.3',
+   );
+   foreach (sort keys %expected_gcc) {
+   if (!exists $s

fink/perlmod/Fink Engine.pm,1.223,1.224 ChangeLog,1.818,1.819

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2956

Modified Files:
Engine.pm ChangeLog 
Log Message:
In Engine.pm, extract core of cmd_fetch_all() and
cmd_fetch_all_missing() into a new do_fetch_all(), which uses
call_queue_*(). Fix spacing on parse_fetch_options() help. Reorder
some subs. Move BuildConflicts removal to after src/deb download.


Index: Engine.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Engine.pm,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -d -r1.223 -r1.224
--- Engine.pm   23 Jan 2005 08:48:31 -  1.223
+++ Engine.pm   24 Jan 2005 05:23:28 -  1.224
@@ -300,6 +300,10 @@
do_real_list("list",@_);
 }
 
+sub cmd_apropos {
+   do_real_list("apropos", @_);
+}
+
 sub do_real_list {
my ($pattern, @allnames, @selected);
my ($pname, $package, $lversion, $vo, $iflag, $description);
@@ -632,26 +636,6 @@
&call_queue_clear;
 }
 
-sub cmd_description {
-   my ($package, @plist);
-
-   @plist = &expand_packages(@_);
-   if ($#plist < 0) {
-   die "no package specified for command 'description'!\n";
-   }
-
-   print "\n";
-   foreach $package (@plist) {
-   print $package->get_fullname().": ";
-   print $package->get_description();
-   print "\n";
-   }
-}
-
-sub cmd_apropos {
-   do_real_list("apropos", @_);
-}
-
 sub parse_fetch_options {
my $cmd = shift;
my %options =
@@ -678,8 +662,9 @@
 
 Options:
   -i, --ignore-restrictive  - Do not fetch sources for packages with 
-a "Restrictive" license. Useful for mirroring.
-  -d, --dry-run - Prints filename, MD5, list of source URLs, 
Maintainer for each package
+  a "Restrictive" license. Useful for mirroring.
+  -d, --dry-run - Prints filename, MD5, list of source URLs,
+  Maintainer for each package
   -h, --help- This help text.
 
 EOF
@@ -697,7 +682,7 @@
 
@plist = &expand_packages(@_);
if ($#plist < 0) {
-   die "no package specified for command 'fetch'!\n";
+   die "no package specified for command 'cmd_fetch_missing'!\n";
}
&call_queue_clear;
map { &call_queue_add([ $_, 'phase_fetch', 1, 0 ]) } @plist;
@@ -705,59 +690,61 @@
 }
 
 sub cmd_fetch_all {
+   &do_fetch_all("fetch-all", @_);
+}
+
+sub cmd_fetch_all_missing {
+   &do_fetch_all("fetch-missing", @_);
+}
+
+sub do_fetch_all {
+   my $cmd = shift;
my ($pname, $package, $version, $vo);

-   my (%options, $norestrictive, $dryrun);
-   %options = &parse_fetch_options("fetch-all", @_);
+   my (%options, $norestrictive, $missing_only, $dryrun);
+   %options = &parse_fetch_options($cmd, @_);
$norestrictive = $options{"norestrictive"} || 0;
+   $missing_only = $cmd eq "fetch-missing";
$dryrun = $options{"dryrun"} || 0;
-   
+
+   &call_queue_clear;
foreach $pname (Fink::Package->list_packages()) {
$package = Fink::Package->package_by_name($pname);
$version = &latest_version($package->list_versions());
$vo = $package->get_version($version);
if (defined $vo) {
-   if ($norestrictive && $vo->has_param("license")) {
-   if($vo->param("license") =~ 
m/Restrictive\s*$/i) {
-   print "Ignoring $pname due to 
License: Restrictive\n";
-   next;
-   }
+   if ($norestrictive && $vo->has_param("license") && 
$vo->param("license") =~ m/Restrictive\s*$/i) {
+   print "Ignoring $pname due to License: 
Restrictive\n";
+   next;
}
-   eval {
-   $vo->phase_fetch(0, $dryrun);
-   };
-   warn "$@" if $@; # turn 
fatal exceptions into warnings
+   &call_queue_add([
+   sub {
+   eval {
+#  
$vo->phase_fetch(($missing_only, $dryrun);
+   $_[0]->phase_fetch($_[1], 
$_[2]);
+   };
+   warn "$@" if $@;
 # turn fatal exceptions into warnings
+   },
+   $vo, $missing_only, $dryrun ]);
}
}
+   &call_queue_clear;
 }
 
-sub cmd_fetch_all_missing {
-   my ($pname, $packag

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

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

Modified Files:
cmucl.info 
Log Message:
new snapshot (2005-01)



Index: cmucl.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/languages/cmucl.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cmucl.info  15 Dec 2004 02:58:48 -  1.3
+++ cmucl.info  24 Jan 2005 04:47:46 -  1.4
@@ -1,5 +1,5 @@
 Package: cmucl
-Version: 19a+200412
+Version: 19a+200501
 Revision: 1
 Description: ANSI Common Lisp implementation
 License: BSD
@@ -8,11 +8,11 @@
 Depends: x11,  lesstif-shlibs
 BuildDepends: gcc3.1, x11-dev, lesstif
 
-Source: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2004/12/%n-src-2004-12.tar.bz2
-Source2: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2004/12/%n-2004-12-ppc-darwin.tar.bz2
+Source: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/01/%n-src-2005-01.tar.bz2
+Source2: 
ftp://ftp.common-lisp.net/pub/project/cmucl/snapshots/2005/01/%n-2005-01-ppc-darwin.tar.bz2
 
-Source-MD5: 25535b000703e283a95cfb656fde26bb
-Source2-MD5: cf018b957f46a6e624ee6e34e0d8cf28
+Source-MD5: e934f263abbef4bdf2b705a1bc5776da
+Source2-MD5: 14a813d17eb16d205128fc73193a2fce 
 
 SourceDirectory: .
 
@@ -40,7 +40,7 @@
   mv release/man release/share/man
   mv release/doc release/share/doc
   echo '#! /bin/sh' > release/bin/lisp
-  echo 'CMUCLLIB=%p/lib/%n/lib exec %p/lib/%n/lisp.bin $@' >> release/bin/lisp
+  echo 'CMUCLLIB=%p/lib/%n/lib exec %p/lib/%n/lisp.bin "$@"' >> 
release/bin/lisp
   chmod 755 release/bin/lisp
   cp -Rp release/* %i
 <<



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/shells zsh-templates.info,1.14,1.15

2005-01-23 Thread William Scott
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/shells
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6225

Modified Files:
zsh-templates.info 
Log Message:
zsh-templates version upgrade unstable/shells 10.3

Index: zsh-templates.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/shells/zsh-templates.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- zsh-templates.info  21 Jan 2005 04:02:42 -  1.14
+++ zsh-templates.info  24 Jan 2005 03:27:35 -  1.15
@@ -1,8 +1,8 @@
 Package: zsh-templates
-Version: 0.5.3
+Version: 0.5.4
 Revision: 1
 Source:  http://chemistry.ucsc.edu/~wgscott/mystuff/%n-%v.tgz
-Source-MD5: e124dd2dfb865beb0e72b4b2f749d2b8
+Source-MD5: e5e72b1acd1b0123326f001679020309 
 Depends: macosx, zsh (>= 4.2.1-13)
 License: GPL
 Maintainer: W. G. Scott <[EMAIL PROTECTED]>



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/faq comp-general.en.php,1.40,1.41 comp-general.fr.php,1.39,1.40 comp-general.ru.php,1.1,1.2 comp-packages.en.php,1.39,1.40 comp-packages.fr.php,1.37,1.38 comp-packages.ru.php,1.1,1.2 faq.en.html,1.44,1.45 faq.fr.html,1.43,1.44 faq.ru.html,1.1,1.2 general.en.php,1.38,1.39 general.fr.php,1.37,1.38 general.ru.php,1.1,1.2 index.en.php,1.43,1.44 index.fr.php,1.41,1.42 index.ru.php,1.1,1.2 mirrors.en.php,1.38,1.39 mirrors.fr.php,1.37,1.38 mirrors.ru.php,1.1,1.2 relations.en.php,1.38,1.39 relations.fr.php,1.37,1.38 relations.ru.php,1.1,1.2 upgrade-fink.en.php,1.38,1.39 upgrade-fink.fr.php,1.37,1.38 upgrade-fink.ru.php,1.1,1.2 usage-fink.en.php,1.39,1.40 usage-fink.fr.php,1.39,1.40 usage-fink.ru.php,1.1,1.2 usage-general.en.php,1.39,1.40 usage-general.fr.php,1.40,1.41 usage-general.ru.php,1.1,1.2 usage-packages.en.php,1.39,1.40 usage-packages.fr.php,1.39,1.40 usage-packages.ru.php,1.1,1.2

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/web/faq
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5249

Modified Files:
comp-general.en.php comp-general.fr.php comp-general.ru.php 
comp-packages.en.php comp-packages.fr.php comp-packages.ru.php 
faq.en.html faq.fr.html faq.ru.html general.en.php 
general.fr.php general.ru.php index.en.php index.fr.php 
index.ru.php mirrors.en.php mirrors.fr.php mirrors.ru.php 
relations.en.php relations.fr.php relations.ru.php 
upgrade-fink.en.php upgrade-fink.fr.php upgrade-fink.ru.php 
usage-fink.en.php usage-fink.fr.php usage-fink.ru.php 
usage-general.en.php usage-general.fr.php usage-general.ru.php 
usage-packages.en.php usage-packages.fr.php 
usage-packages.ru.php 
Log Message:
Fix layout of FAQ 9.11 (apple-x11-wants-xfree86) for en/fr/ru.


Index: comp-packages.ru.php
===
RCS file: /cvsroot/fink/web/faq/comp-packages.ru.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- comp-packages.ru.php23 Jan 2005 19:36:19 -  1.1
+++ comp-packages.ru.php24 Jan 2005 03:25:53 -  1.2
@@ -1,7 +1,7 @@
 ';
 
 

Index: usage-general.en.php
===
RCS file: /cvsroot/fink/web/faq/usage-general.en.php,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- usage-general.en.php2 Dec 2004 16:43:50 -   1.39
+++ usage-general.en.php24 Jan 2005 03:25:56 -  1.40
@@ -1,7 +1,7 @@
 ';
 
 

Index: usage-fink.ru.php
===
RCS file: /cvsroot/fink/web/faq/usage-fink.ru.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- usage-fink.ru.php   23 Jan 2005 19:36:19 -  1.1
+++ usage-fink.ru.php   24 Jan 2005 03:25:56 -  1.2
@@ -1,7 +1,7 @@
 ';
 
 

Index: comp-packages.fr.php
===
RCS file: /cvsroot/fink/web/faq/comp-packages.fr.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- comp-packages.fr.php3 Dec 2004 00:40:23 -   1.37
+++ comp-packages.fr.php24 Jan 2005 03:25:53 -  1.38
@@ -1,7 +1,7 @@
 ';
 
 

Index: general.ru.php
===
RCS file: /cvsroot/fink/web/faq/general.ru.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- general.ru.php  23 Jan 2005 19:36:19 -  1.1
+++ general.ru.php  24 Jan 2005 03:25:54 -  1.2
@@ -1,7 +1,7 @@
 ';
 
 

Index: faq.ru.html
===
RCS file: /cvsroot/fink/web/faq/faq.ru.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- faq.ru.html 23 Jan 2005 19:36:19 -  1.1
+++ faq.ru.html 24 Jan 2005 03:25:54 -  1.2
@@ -1604,11 +1604,12 @@
 пакет пользователя X11, т.к.
 приложение инсталлятора 
иногда не инсталлирует
 файл. Возможно, вам 
придется это делать
-
неоднократно.Выполнениеfink list -i
-system-xfree86должно показать, 
что пакеты
+неоднократно. Выполнение
+   fink list -i system-xfree86
+   должно показать, что пакеты
 system-xfree86 и
 system-xfree86-shlibs
-инсталлированы.Если 
реинсталляция пакета пользователя X11
+инсталлированы. Если 
реинсталляция пакета пользователя X11
 не поможет, см. инструкции 
по устранению 
особых проблем
 ниже.
 Если вы выполняете более 
раннюю версию пакета
@@ -1618,7 +1619,8 @@
 sudo apt-get update sudo apt-get install 
fink
 
 
-При инсталляции на основе 
исходного кода: Если у вас
+При инсталляции на основе 
исходного кода:
+   Если у вас
 текущая версияfink, то как правило
 эта ошибка означает, что вам 
надо (ре)инсталлировать
 X11SDK, который является 
обязательным, если вы хотите строить
@@ -1627,8 +1629,8 @@
 XCode, X11SDK не инсталлируется 
по умолчанию.
 Его надо инсталлировать либо 
при помощи обычного Xcode
 install, либо щелкнув на X11SDK pkg в 
папке
-Packages на 
XCode
-CD.Если проблемы остаются, 
используйте 
+Packages на 
XCode CD.
+   

web/xml/faq faq.en.xml,1.40,1.41 faq.fr.xml,1.40,1.41 faq.ru.xml,1.4,1.5

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/web/xml/faq
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3631

Modified Files:
faq.en.xml faq.fr.xml faq.ru.xml 
Log Message:
FAQ 9.11 (apple-x11-wants-xfree86) layout cleanup in en/fr/ru.


Index: faq.en.xml
===
RCS file: /cvsroot/fink/web/xml/faq/faq.en.xml,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- faq.en.xml  2 Dec 2004 16:41:59 -   1.40
+++ faq.en.xml  24 Jan 2005 03:17:56 -  1.41
@@ -1981,17 +1981,17 @@
 
   
 You are installing from binaries:
-If you have a current version of fink 
(>=0.18.3-1), typically what you need to do is reinstall the X11User 
package, since the installer application occasionally misses installing a file. 
 You may need to do this multiple times.Running
-fink list -i system-xfree86should show that the 
system-xfree86 and system-xfree86-shlibs packages are 
installed.If reinstalling the X11User package doesn't work, then consult the 
special debug instructions, below.
-If you are running an earlier version of the fink 
package, then
-  updating fink may solve your problem immediately, e.g.
-  via
+If you have a current version of fink 
(>=0.18.3-1), typically what you need to do is reinstall the X11User 
package, since the installer application occasionally misses installing a file. 
 You may need to do this multiple times. Running
+   fink list -i system-xfree86
+   should show that the system-xfree86 and 
system-xfree86-shlibs packages are installed. If reinstalling the 
X11User package doesn't work, then consult the special debug instructions, below.
+If you are running an earlier version of the fink 
package, then updating fink may solve your problem immediately, 
e.g. via
 sudo apt-get update
 sudo apt-get install fink
   
   
-You are installing from source: If you have a current 
version of fink, then typically this error means that you need to 
(re)install the X11SDK, which is mandatory if you want to build 
packages from source. It is on the Xcode CD, and is not installed by 
default. Even if you install XCode, the X11SDK is not installed by 
default. It has to be installed either with a custom Xcode install, or by 
clicking on the X11SDK pkg in the Packages folder of the 
XCode CD.
-If you are still having problems, run 
+You are installing from source:
+   If you have a current version of fink, then 
typically this error means that you need to (re)install the X11SDK, which is 
mandatory if you want to build packages from source. It is on the 
Xcode CD, and is not installed by default. Even if you install XCode, 
the X11SDK is not installed by default. It has to be installed either 
with a custom Xcode install, or by clicking on the X11SDK pkg in the 
Packages folder of the XCode CD.
+   If you are still having problems, run 
 fink list -i system-xfree86  
 It should show the system-xfree86, 
system-xfree86-shlibs, and system-xfree86-dev 
packages as installed.  If the -dev package is missing, reinstall 
the X11SDK, since sometimes the Apple Installer misses a file.  You may need to 
keep doing this.  If either of the other two are missing, then reinstall the 
X11User package (same reason).
 

Index: faq.ru.xml
===
RCS file: /cvsroot/fink/web/xml/faq/faq.ru.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- faq.ru.xml  18 Jan 2005 01:12:22 -  1.4
+++ faq.ru.xml  24 Jan 2005 03:18:00 -  1.5
@@ -2248,11 +2248,12 @@
 пакет пользователя X11, т.к.
 приложение инсталлятора 
иногда не инсталлирует
 файл. Возможно, вам 
придется это делать
-
неоднократно.Выполнениеfink list -i
-system-xfree86должно 
показать, что пакеты
+неоднократно. Выполнение
+   fink list -i system-xfree86
+   должно показать, что пакеты
 system-xfree86 и
 system-xfree86-shlibs
-инсталлированы.Если 
реинсталляция пакета пользователя X11
+инсталлированы. Если 
реинсталляция пакета пользователя X11
 не поможет, см. инструкции 
по устранению особых 
проблем
 ниже.
@@ -2263,7 +2264,8 @@
 sudo apt-get update sudo apt-get install 
fink
 
 
-При инсталляции на основе 
исходного кода: Если у вас
+При инсталляции на основе 
исходного кода:
+   Если у вас

web/xml/faq header.ru.inc,1.1,NONE

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/web/xml/faq
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32322

Removed Files:
header.ru.inc 
Log Message:
*.inc should not be committed to the source tree.


--- header.ru.inc DELETED ---



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/web/bugs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27344

Modified Files:
index.en.php 
Log Message:
Layout cleanup.


Index: index.en.php
===
RCS file: /cvsroot/fink/web/bugs/index.en.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- index.en.php24 Jan 2005 02:10:39 -  1.9
+++ index.en.php24 Jan 2005 02:38:47 -  1.10
@@ -30,26 +30,29 @@
 
 Viewing bug reports on the WWW 
 
-http://bugs.finkproject.org/cgi-bin/bugreport.cgi";>
-
-   Find a bug by number: 
- 
-as 
mbox 
-
-
+
+   Find a bug by number
+   
+   http://bugs.finkproject.org/cgi-bin/bugreport.cgi";>
+ 
+
as mbox 
+   
+   
 
-http://bugs.finkproject.org/cgi-bin/pkgreport.cgi";>
+   General bug search
+   
+   http://bugs.finkproject.org/cgi-bin/pkgreport.cgi";>
 
-   Find bugs by: 
+   What to search for:
+   
package 
source package 
-   maintainer email 
-   submitter email 
+   package-maintainer email 
+   bug-submitter email 
severity 
tag 

-   What to search for:  
-   
+
 
 
 
Additional settings (which you may leave untouched, the defaults will 
work): 
@@ -162,7 +165,9 @@


 
-
+   
+   
+
 
 
The above queries can also be made by visiting URLs of the following 
forms, respectively: 



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/bugs index.en.php,1.8,1.9

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/web/bugs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20412

Modified Files:
index.en.php 
Log Message:
Validation fixes (passes HTML 4.01/transitional at http://validator.w3.org)


Index: index.en.php
===
RCS file: /cvsroot/fink/web/bugs/index.en.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- index.en.php23 Jan 2005 03:18:24 -  1.8
+++ index.en.php24 Jan 2005 02:10:39 -  1.9
@@ -5,35 +5,39 @@
 
 include "header.inc";
 ?>
+
 Fink bug tracking system 
+
 
-   Fink has a bug tracking system (BTS) in which we file details of bugs 
reported by users and developers. Each bug is given a number, and is kept on 
file until it is marked as having been dealt with.
+   Fink has a bug tracking system (BTS) in which we file details
+   of bugs reported by users and developers. Each bug is given a
+   number, and is kept on file until it is marked as having been
+   dealt with.
 
+
 Bug tracking system documentation 
+
 
-   
-   How to report a bug in Fink 
-   
-   Ways of accessing the bug report logs 
-   
-   Requesting bug reports by 
email 
+   How to report a bug in Fink 

+   Ways of accessing the bug report logs  

+   Requesting bug reports by 
email
 
 
-   
-   Developers' information on how to use 
the system 
-   
-   Developers' information on 
manipulating bugs by email 
-   
-   Mailservers' reference card 
+   Developers' information on how to use the 
system  
+   Developers' information on 
manipulating bugs by email
+   Mailservers' reference card
  
 
+
 Viewing bug reports on the WWW 
+
+http://bugs.finkproject.org/cgi-bin/bugreport.cgi";>
 
Find a bug by number: 
-   
-http://bugs.finkproject.org/cgi-bin/bugreport.cgi";>
- 
-as mbox 
+ 
+as 
mbox 
+
 
+
 http://bugs.finkproject.org/cgi-bin/pkgreport.cgi";>
 
Find bugs by: 
@@ -46,24 +50,28 @@

What to search for:  

+
 
Additional settings (which you may leave untouched, the defaults will 
work): 
+
 

Flags: 
 
active bugs 
 archived 
bugs 
-   
-display merged bugs only once 
-
no ordering by status or severity 
-   
-don't show table of contents in the header 
-don't show statistics in the footer  
+   
+
display merged bugs only once 
+no 
ordering by status or severity 
+   
+don't show table of contents in the header 
+don't show statistics in the footer
+

Reverse order of: 
 
status 
 
severities 
-
bugs 
+
bugs
+   


Include status: 
@@ -71,7 +79,8 @@
forwarded 
pending 
fixed 
-   done 
+   done
+   


Exclude status: 
@@ -79,7 +88,8 @@
forwarded 
pending 
fixed 
-   done 
+   done
+   


Include severity: 
@@ -90,7 +100,8 @@
normal 
minor 
wishlist 
-   fixed 
+   fixed
+   


Exclude severity: 
@@ -101,7 +112,8 @@
normal 
minor 
wishlist 
-   fixed 
+   fixed
+   


Include tag: 
@@ -123,7 +135,8 @@
upstream 
wontfix 
ipv6 
-   lfs 
+   lfs 
+   


Exclude tag: 
@@ -145,52 +158,57 @@
upstream 
wontfix 
ipv6 
-   lfs 
+   lfs 
+   

 
 
+
 
-The above queries can also be made by visiting URLs of the following forms, 
respectively: 
+   The above queries can also be made by visiting URLs of the following 
forms, respectively: 
+
 
-
-   http://bugs.finkproject.org/number 
-
-   http://bugs.finkproject.org/mbox:number 
-
-   http://bugs.finkproject.org/package 
-
-   http://bugs.finkproject.org/src:sourcepackage 
-
-   http://bugs.finkproject.org/[EMAIL PROTECTED] 
-
-   http://bugs.finkproject.org/from:[EMAIL PROTECTED] 
-
-   http://bugs.finkproject.org/severity:severity 
-
-  

experimental/mrvacbob freetype2.info,NONE,1.1 freetype2.patch,NONE,1.1

2005-01-23 Thread Alexander Strange
Update of /cvsroot/fink/experimental/mrvacbob
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12413

Added Files:
freetype2.info freetype2.patch 
Log Message:
In-progress combined freetype2 package, needs conditional licenses

--- NEW FILE: freetype2.patch ---
diff -ru freetype-2.1.9-orig/builds/unix/detect.mk 
freetype-2.1.9/builds/unix/detect.mk
--- freetype-2.1.9-orig/builds/unix/detect.mk   2004-12-28 01:18:57.0 
-0800
+++ freetype-2.1.9/builds/unix/detect.mk2004-12-28 01:23:10.0 
-0800
@@ -20,7 +20,8 @@
   #
   is_unix := $(strip $(wildcard /sbin/init) \
  $(wildcard /usr/sbin/init) \
- $(wildcard /hurd/auth))
+ $(wildcard /hurd/auth) \
+ $(wildcard /sbin/launchd))
   ifneq ($(is_unix),)
 
 PLATFORM := unix
diff -ru freetype-2.1.9-orig/builds/unix/freetype-config.in 
freetype-2.1.9/builds/unix/freetype-config.in
--- freetype-2.1.9-orig/builds/unix/freetype-config.in  2004-12-28 
01:18:57.0 -0800
+++ freetype-2.1.9/builds/unix/freetype-config.in   2004-12-28 
01:19:19.0 -0800
@@ -1,6 +1,6 @@
 #! /bin/sh
 
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@/lib/freetype2
 [EMAIL PROTECTED]@
 exec_prefix_set=no
 [EMAIL PROTECTED]@
diff -ru freetype-2.1.9-orig/builds/unix/freetype2.in 
freetype-2.1.9/builds/unix/freetype2.in
--- freetype-2.1.9-orig/builds/unix/freetype2.in2004-12-28 
01:18:57.0 -0800
+++ freetype-2.1.9/builds/unix/freetype2.in 2005-01-01 01:05:29.0 
-0800
@@ -7,5 +7,5 @@
 Description: A free, high-quality, and portable font engine.
 Version: @ft_version@
 Requires:
-Libs: -L${libdir} -lfreetype @LIBZ@
-Cflags: -I${includedir}/freetype2
+Libs: -L${libdir}/freetype2/lib -lfreetype @LIBZ@
+Cflags: -I${libdir}/freetype2/include/freetype2
diff -ru freetype-2.1.9-orig/builds/unix/ltmain.sh 
freetype-2.1.9/builds/unix/ltmain.sh
--- freetype-2.1.9-orig/builds/unix/ltmain.sh   2004-12-28 01:18:57.0 
-0800
+++ freetype-2.1.9/builds/unix/ltmain.sh2004-12-28 01:21:15.0 
-0800
@@ -3760,6 +3760,11 @@
  eval test_cmds=\"$archive_expsym_cmds\"
  cmds=$archive_expsym_cmds
else
+  if test "x$verstring" = "x0.0"; then
+tmp_verstring=
+  else
+tmp_verstring="$verstring"
+  fi
  eval test_cmds=\"$archive_cmds\"
  cmds=$archive_cmds
  fi

--- NEW FILE: freetype2.info ---
Info2: <<
Package: freetype2%type_pkg[-hinting]%type_pkg[-darwin]
Type: -darwin (boolean), -hinting (boolean)
Version: 2.1.9
Revision: 1
Depends: %N-shlibs (= %v-%r)
Conflicts: freetype2,freetype2-hinting,freetype2-darwin,freetype2-hinting-darwin
Replaces: freetype2,freetype2-hinting,freetype2-darwin,freetype2-hinting-darwin
BuildDependsOnly: True
Source: mirror:sourceforge:freetype/freetype-%v.tar.gz
Source-MD5: 1336a6851753c962495ff02ff7ea71c1
PatchScript: <<
patch -p1 < %a/freetype2.patch
perl -i -pe 's/.*(#define.*BYTECODE_INTERPRETER).*/\1/' 
include/freetype/config/ftoption.h
<<
CompileScript: <<
#!/bin/sh -ev
  if [ "%type_raw[-darwin]" == "-darwin" ]; then
   export FONTOPT=""
  else
   export FONTOPT="--with-old-mac-fonts"
  fi
 make setup CFG="--prefix=%p $FONTOPT"
 make
<<
InstallScript: <<
 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
 mv %i/lib/pkgconfig %i/lib/freetype2/lib
 mv %i/include %i/lib/freetype2
 rm -rf %i/share/aclocal
 mkdir -p %i/share/doc/%n
 cp -r docs %i/share/doc/%n
<<
SplitOff: <<
  Package: %N-shlibs
  Depends: (%type_raw[-darwin] != -darwin) macosx
  Conflicts: 
freetype2-shlibs,freetype2-hinting-shlibs,freetype2-darwin-shlibs,freetype2-hinting-darwin-shlibs
  Replaces: 
freetype2-shlibs,freetype2-hinting-shlibs,freetype2-darwin-shlibs,freetype2-hinting-darwin-shlibs
  Files: lib/libfreetype.6*dylib
  Shlibs: %p/lib/libfreetype.6.dylib 10.0.0 %n (>= 2.0.9-1)
  DocFiles: <<
README docs/[A-Z]* docs/*.txt src/autohint/CatharonLicense.txt
src/pcf/readme:README.pcf
  <<
  Description: TrueType font rendering library, version 2, shared libs
<<
SplitOff2: <<
  Package: %N-dev
  Depends: %N-shlibs (=%v-%r)
  Conflicts: 
freetype2-dev,freetype2-hinting-dev,freetype2-darwin-dev,freetype2-hinting-darwin-dev
  Replaces: 
freetype2-dev,freetype2-hinting-dev,freetype2-darwin-dev,freetype2-hinting-darwin-dev
  Files: lib/freetype2 
  DocFiles: <<
README docs/[A-Z]* docs/*.txt src/autohint/CatharonLicense.txt
src/pcf/readme:README.pcf
  <<
  Description: TrueType font rendering library, version 2, headers
<<
DocFiles: <<
 README src/autohint/CatharonLicense.txt
 src/pcf/readme:README.pcf
<<
Description: TrueType font rendering library, version 2 (dummy)
DescDetail: <<
FreeType 2 is

scripts/installer/dmg/doc/x11 x11.en.html,1.16,1.17

2005-01-23 Thread Alexander Hansen
Update of /cvsroot/fink/scripts/installer/dmg/doc/x11
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7753/x11

Modified Files:
x11.en.html 
Log Message:
update


Index: x11.en.html
===
RCS file: /cvsroot/fink/scripts/installer/dmg/doc/x11/x11.en.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- x11.en.html 2 Jan 2005 15:30:54 -   1.16
+++ x11.en.html 24 Jan 2005 01:20:09 -  1.17
@@ -394,6 +394,7 @@
 packages you have built against xfree86 
will need to be rebuilt, as the binaries are incompatible.
 
   
+  For more information on using Apple's X11, check out this http://developer.apple.com/darwin/runningx11.html";>article at the 
Apple Developer Connection.
 
 3.3 The Official 
Binaries
   
@@ -472,6 +473,7 @@
 Then, follow the source build instructions above.
 
 
+
 3.6 MacGimp
   
   
@@ -489,6 +491,7 @@
 4.1.0.
 
 
+
 3.7 Replacing X11
   
   
@@ -611,10 +614,10 @@
 You can use all of the start methods outlined above, with the
 exception of xdm.
 
-
+  
 Note: If you are running Mac OS X Panther, you cannot start XFree86 from the 
console window.
 
-
+
 4.2 Mac OS X + XFree86 4.x.y
   
   
@@ -706,7 +709,7 @@
 
   . /sw/bin/init.sh
 exec gnome-session
-A more complex example for bash users that turns the X11 bell off, starts 
some clients and finally executes the Enlightenment window manager:
+  A more complex example for bash users that turns the X11 bell off, 
starts some clients and finally executes the Enlightenment window manager:
   . /sw/bin/init.sh
 
 xset b off
@@ -716,28 +719,28 @@
 xterm &
 
 exec enlightenment
- To start GNOME 2.2 under Apple's X11, use the following sequence:
- . /sw/bin/init.sh
+  To start GNOME 2.2 under Apple's X11, use the following sequence:
+  . /sw/bin/init.sh
 quartz-wm --only-proxy &
 metacity &
 exec gnome-session
- 
-To start GNOME 2.4 under Apple's X11, metacity is started up automatically, 
so the sequence is:
- . /sw/bin/init.sh
+
+  To start GNOME 2.4 under Apple's X11, metacity is started up 
automatically, so the sequence is:
+  . /sw/bin/init.sh
 quartz-wm --only-proxy &
 exec gnome-session
- 
-To start KDE 3.2 (version < 3.2.2-21) under Apple's X11
-. /sw/bin/init.sh
+
+  To start KDE 3.2 (version < 3.2.2-21) under Apple's X11
+  . /sw/bin/init.sh
 export KDEWM=kwin
 quartz-wm --only-proxy &
 /sw/bin/startkde >/tmp/kde.log 2>&1
 
-And finally to start the latest unstable version of KDE under Apple's 
X11:
-. /sw/bin/init.sh
+  And finally to start the latest unstable version of KDE under Apple's 
X11:
+  . /sw/bin/init.sh
 /sw/bin/startkde >/tmp/kde.log 2>&1
 
-   
+
   5 Xtools
 
 
@@ -1039,6 +1042,7 @@
   cd
 rm .Xauthority
 touch .Xauthority
+  
   
 Another common cause for XFree86 startup failures is an incorrect
 .xinitrc file.
@@ -1053,6 +1057,7 @@
 It is a good idea to add exec xterm as a 
fallback when
 your window manager or similar can't be found.
 
+  
 
 7.2 Black icons in the GNOME panel or in the
 menu of a GNOME application
@@ -1175,26 +1180,28 @@
 server.
 In the default setup - XDarwin runs on the same machine -, you can set the 
variable as follows:
 
-
-For tcsh users:
+  
+For tcsh users:
   setenv DISPLAY :0.0
 
-For bash users:
+For bash users:
 export DISPLAY=":0.0"
 
-
+  
   
 A nice setup is to have XDarwin.app started when you log in (settable
 in the Login panel of the System Preferences on Mac OS 10.2, in the Accounts 
panel, Startup items on Mac OS 10.3):
 
-For tcsh users, add the following to your .cshrc file:
+  
+For tcsh users, add the following to your .cshrc file:
   if (! $?DISPLAY) then
   setenv DISPLAY :0.0
 endif
 
-For bash users, add the following to your .bashrc file:
+For bash users, add the following to your .bashrc file:
 [[ -z $DISPLAY ]] && export DISPLAY=":0.0"
-
+
+  
   
 This sets DISPLAY automatically in every shell.
 It doesn't override the current value when DISPLAY is already set,
@@ -1255,7 +1262,7 @@
 be executed.) And remember that it is no more necessary for Apple's X11 (see 
Some notes on using Apple's X11).
 
   If you are using Apple's X11, then you can use Command-C or 
Edit->Copy, as usual for Mac apps, to copy text to the clipboard, and the 
middle-mouse button or Command-V to paste from the clipboard to Apple X11.
-In any case, if you encounter problems copying or pasting from Aqua to X11 
and vice-versa, you may first try to do the pasting part twice (it may happen 
that the copy does not occur at once), then use intermediate applications, e.g. 
TextEdit or Terminal.app on the Aqua side, nedit or an xterm on the X11 side. 
In my experience, there is always a solution.
+  In any case, if you encounter problems copy

web/doc/x11 history.en.php,1.13,1.14 index.en.php,1.18,1.19 inst-xfree86.en.php,1.13,1.14 intro.en.php,1.13,1.14 other.en.php,1.13,1.14 run-xfree86.en.php,1.15,1.16 tips.en.php,1.14,1.15 trouble.en.php,1.13,1.14 x11.en.html,1.18,1.19 xtools.en.php,1.13,1.14

2005-01-23 Thread Alexander Hansen
Update of /cvsroot/fink/web/doc/x11
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7031

Modified Files:
history.en.php index.en.php inst-xfree86.en.php intro.en.php 
other.en.php run-xfree86.en.php tips.en.php trouble.en.php 
x11.en.html xtools.en.php 
Log Message:
update


Index: trouble.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/trouble.en.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- trouble.en.php  19 Sep 2004 23:38:08 -  1.13
+++ trouble.en.php  24 Jan 2005 01:17:53 -  1.14
@@ -1,7 +1,7 @@
 ';
 
 
@@ -233,6 +233,7 @@
   cd
 rm .Xauthority
 touch .Xauthority
+  
   
 Another common cause for XFree86 startup failures is an incorrect
 .xinitrc file.
@@ -247,6 +248,7 @@
 It is a good idea to add exec xterm as a fallback when
 your window manager or similar can't be found.
 
+  
 
 7.2 Black icons in the GNOME panel or in the
 menu of a GNOME application

Index: history.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/history.en.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- history.en.php  19 Sep 2004 23:38:08 -  1.13
+++ history.en.php  24 Jan 2005 01:17:53 -  1.14
@@ -1,7 +1,7 @@
 ';
 
 

Index: xtools.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/xtools.en.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- xtools.en.php   19 Sep 2004 23:38:08 -  1.13
+++ xtools.en.php   24 Jan 2005 01:17:53 -  1.14
@@ -1,7 +1,7 @@
 ';
 
 

Index: tips.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/tips.en.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- tips.en.php 19 Sep 2004 23:38:08 -  1.14
+++ tips.en.php 24 Jan 2005 01:17:53 -  1.15
@@ -1,7 +1,7 @@
 ';
 
 
@@ -19,26 +19,28 @@
 server.
 In the default setup - XDarwin runs on the same machine -, you can set the 
variable as follows:
 
-
-For tcsh users:
+  
+For tcsh users:
   setenv DISPLAY :0.0
 
-For bash users:
+For bash users:
 export DISPLAY=":0.0"
 
-
+  
   
 A nice setup is to have XDarwin.app started when you log in (settable
 in the Login panel of the System Preferences on Mac OS 10.2, in the Accounts 
panel, Startup items on Mac OS 10.3):
 
-For tcsh users, add the following to your .cshrc file:
+  
+For tcsh users, add the following to your .cshrc file:
   if (! $?DISPLAY) then
   setenv DISPLAY :0.0
 endif
 
-For bash users, add the following to your .bashrc file:
+For bash users, add the following to your .bashrc file:
 [[ -z $DISPLAY ]] && export DISPLAY=":0.0"
-
+
+  
   
 This sets DISPLAY automatically in every shell.
 It doesn't override the current value when DISPLAY is already set,
@@ -99,7 +101,7 @@
 be executed.) And remember that it is no more necessary for Apple's X11 (see 
Some notes on using Apple's 
X11).
 
   If you are using Apple's X11, then you can use Command-C or 
Edit->Copy, as usual for Mac apps, to copy text to the clipboard, and the 
middle-mouse button or Command-V to paste from the clipboard to Apple X11.
-In any case, if you encounter problems copying or pasting from Aqua to X11 
and vice-versa, you may first try to do the pasting part twice (it may happen 
that the copy does not occur at once), then use intermediate applications, e.g. 
TextEdit or Terminal.app on the Aqua side, nedit or an xterm on the X11 side. 
In my experience, there is always a solution.
+  In any case, if you encounter problems copying or pasting from Aqua 
to X11 and vice-versa, you may first try to do the pasting part twice (it may 
happen that the copy does not occur at once), then use intermediate 
applications, e.g. TextEdit or Terminal.app on the Aqua side, nedit or an xterm 
on the X11 side. In my experience, there is always a solution.
 
   
 

Index: intro.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/intro.en.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- intro.en.php19 Sep 2004 23:38:08 -  1.13
+++ intro.en.php24 Jan 2005 01:17:53 -  1.14
@@ -1,7 +1,7 @@
 ';
 
 

Index: inst-xfree86.en.php
===
RCS file: /cvsroot/fink/web/doc/x11/inst-xfree86.en.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- inst-xfree86.en.php 19 Sep 2004 23:38:08 -  1.13
+++ inst-xfree86.en.php 24 Jan 2005 01:17:53 -  1.14
@@ -1,7 +1,7 @@
 ';
 
 
@@ -119,6 +119,7 @@
 packages you have built against xfree86 will 

web/xml/x11 x11.en.xml,1.11,1.12

2005-01-23 Thread Alexander Hansen
Update of /cvsroot/fink/web/xml/x11
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3291

Modified Files:
x11.en.xml 
Log Message:
Added link to new ADC X11 usage article.


Index: x11.en.xml
===
RCS file: /cvsroot/fink/web/xml/x11/x11.en.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- x11.en.xml  22 May 2004 03:06:12 -  1.11
+++ x11.en.xml  24 Jan 2005 01:00:01 -  1.12
@@ -1,4 +1,4 @@
-
+
 
 
   Running X11 on Darwin and Mac OS X
@@ -13,13 +13,13 @@
 X11 with or without Fink.
 
   
-  
+  
 Introduction
 Intro
-
+
   What is X11?
   
-The http://www.x.org/"; >X Window System Version 11,
+The http://www.x.org/";>X Window System Version 11,
 or X11 for short, is a graphics display system with a
 network-transparent client-server architecture.
 It allows applications to draw pixels, lines, text, images, etc. on
@@ -33,11 +33,11 @@
 Desktop environments like CDE, KDE and GNOME run on top of it.
 
 
-
+
   What is Mac OS X?
   
-http://www.apple.com/macosx/"; >Mac OS X is an
-operating system produced by http://www.apple.com/"; >Apple
+http://www.apple.com/macosx/";>Mac OS X is an
+operating system produced by http://www.apple.com/";>Apple
 Computer.
 Like its predecessors NeXTStep and OpenStep, it is based on BSD and is
 thus a member of the Unix OS family.
@@ -46,35 +46,35 @@
 Aqua, although the two names are often used intercheangably.
 
 
-
+
   What is Darwin?
   
-http://OpenDarwin.org/"; >Darwin is
+http://OpenDarwin.org/";>Darwin is
 basically a stripped-down version of Mac OS X that is available free
 of charge and with full source code.
 It does not contain Quartz, Aqua, or any other related technology.
 By default, it only offers a text console.
 
 
-
+
   What is XFree86?
   
-http://www.xfree86.org/"; >XFree86 is an open source
+http://www.xfree86.org/";>XFree86 is an open source
 implementation of X11.
 It was initially developed to run on Intel x86 PCs, hence the name.
 Nowadays, it runs on many architectures and operating systems,
 including OS/2, Darwin, Mac OS X and Windows.
 
 
-
+
   What is Xtools?
   
-Xtools is a product of http://www.tenon.com/"; >Tenon
+Xtools is a product of http://www.tenon.com/";>Tenon
 Intersystems.
 It is a version of X11 for Mac OS X, based on XFree86.
 
 
-
+
   Client and Server
   
 X11 has a client-server architecture.
@@ -90,11 +90,11 @@
 In an environment with workstations and servers, you will run the X11
 display server on the workstation machine and the applications (the X
 clients) on the server machine.
-So when talking about the "server", that means the X11 display server
+So when talking about the "server", that means the X11 display server
 program, not the machine hidden in your wardrobe.
 
 
-
+
   What does rootless mean?
   
 A little background:
@@ -102,8 +102,8 @@
 other.
 At the top of the hierarchy is a special window which is the size of
 the screen and contains all other windows.
-This window contains the desktop background and is called the "root
-window".
+This window contains the desktop background and is called the "root
+window".
 
   
 Now back on topic:
@@ -126,16 +126,16 @@
 It also eliminates the X11 root window, because Quartz already takes
 care of the desktop background.
 Because there is no (visible) root window, this mode is called
-"rootless".  It is the most comfortable way to use X11 on Mac OS X.
+"rootless".  It is the most comfortable way to use X11 on Mac OS X.
 
 
-
+
   What is a window manager?
   
 In most graphical environments the look of window frames (title bar,
 close button, etc.) is defined by the system.
 X11 is different.
-With X11, the window frames (also called "decoration") are provided 
by
+With X11, the window frames (also called "decoration") are provided by
 a separate program, called the window manager.
 In most respects, the window manager is just another client
 application; it is started the same way and talks to the X server
@@ -143,21 +143,21 @@
 
   
 There is a large number of different window managers to choose from.
-http://www.xwinman.org/"; >xwinman.org has a
+http://www.xwinman.org/";>xwinman.org has a
 comprehensive list.
 Most popular ones allow the user to customize the appearance via
-so-called http://www.themes.org/"; >themes.
+so-called http://www.themes.org/";>themes.
 Many window managers also provide additional functionality, like pop
 up menus in the root window, docks or launch buttons.
 
   
 Many window managers have been packaged for Fink; here is a
-http://fink.sourceforge.net/pdb/section.php/x11-wm"; >
+http://fink.sourceforge.net/pdb/section.php/x11-wm";>
 current list.
 
   
 
-
+
   What are Q

experimental/beren12/finkinfo/devel devscripts.info,1.2,1.3 devscripts.patch,1.2,1.3 reportbug.info,1.6,1.7 reportbug.patch,1.4,1.5

2005-01-23 Thread Chris Zubrzycki
Update of /cvsroot/fink/experimental/beren12/finkinfo/devel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32475/devel

Modified Files:
devscripts.info devscripts.patch reportbug.info 
reportbug.patch 
Log Message:
updates

Index: reportbug.info
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/devel/reportbug.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- reportbug.info  23 Nov 2004 06:59:53 -  1.6
+++ reportbug.info  24 Jan 2005 00:46:04 -  1.7
@@ -1,7 +1,8 @@
 Package: reportbug
-Version: 3.1
+Version: 3.5
 Revision: 1
 Source: mirror:debian:/pool/main/r/%n/%n_%v.tar.gz
+Source-MD5: 1e8e0628b79258279b1dc1ba57d9b835
 SourceDirectory: %n
 PatchScript: sed -e s,@FINKPREFIX@,%p,g %a/%n.patch | patch -p1
 Depends: python23
@@ -114,4 +115,3 @@
 License: GPL
 Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
 Homepage: http://packages.qa.debian.org/r/reportbug.html
-Source-MD5: aa8ac1c5bca3a7caefddc4f1d7267bf2

Index: devscripts.info
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/devel/devscripts.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- devscripts.info 23 Nov 2004 20:04:25 -  1.2
+++ devscripts.info 24 Jan 2005 00:46:04 -  1.3
@@ -1,19 +1,19 @@
 Package: devscripts
-Version: 2.8.5
+Version: 2.8.10
 Revision: 0
 Depends: libwww-pm581
 BuildDepends: time-date-pm
 Recommends: gnuplot, gnupg, wdiff, digest-md5-pm581, ssh
 Enhances: dpkg, reportbug, debbugs
 Source: mirror:debian:pool/main/d/%n/%n_%v.tar.gz
-Source-MD5: 901f57ad042de48b44a75557fa33a722
-SourceDirectory: %n-%v
+Source-MD5: e0a1baf4aba4202773ea1f438c0bc9bc
+SourceDirectory: %n
 PatchScript: sed -e s,@FINKPREFIX@,%p,g %a/%n.patch | patch -p1
 CompileScript: <<
- make 
+  make 
 <<
 InstallScript: <<
- make install DESTDIR=%d
+  make install DESTDIR=%d
 <<
 DocFiles: COPYING README debian/changelog debian/copyright
 Description: Scripts to make the life of a Fink Package maintainer easier

Index: devscripts.patch
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/devel/devscripts.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- devscripts.patch23 Nov 2004 20:04:25 -  1.2
+++ devscripts.patch24 Jan 2005 00:46:04 -  1.3
@@ -1,6 +1,6 @@
-diff --exclude=*~ -ruN devscripts-2.8.5/Makefile devscripts-2.8.5.new/Makefile
 devscripts-2.8.5/Makefile  Mon Aug 16 23:47:45 2004
-+++ devscripts-2.8.5.new/Makefile  Tue Nov 23 10:23:16 2004
+diff -ruN devscripts/Makefile devscripts.new/Makefile
+--- devscripts/MakefileMon Jan 10 17:12:47 2005
 devscripts.new/MakefileTue Jan 18 22:14:56 2005
 @@ -8,8 +8,6 @@
debrsign.sh debsign.sh dpkg-genbuilddeps.sh mergechanges.sh \
tagpending.sh uscan.sh uupdate.sh wnpp-alert.sh
@@ -10,7 +10,7 @@
  PERL_MODULES = Devscripts
[...1746 lines suppressed...]
-+++ devscripts-2.8.5.new/uupdate.1 Tue Nov 23 01:51:15 2004
+diff -ruN devscripts/uupdate.1 devscripts.new/uupdate.1
+--- devscripts/uupdate.1   Thu Jul 29 18:21:56 2004
 devscripts.new/uupdate.1   Tue Jan 18 22:03:43 2005
 @@ -83,7 +83,7 @@
  .B \-\-version
  Display version and copyright information and exit successfully.
@@ -821,9 +1852,9 @@
  \fI~/.devscripts\fR are sourced in that order to set configuration
  variables.  Command line options can be used to override configuration
  file settings.  Environment variable settings are ignored for this
-diff --exclude=*~ -ruN devscripts-2.8.5/uupdate.sh 
devscripts-2.8.5.new/uupdate.sh
 devscripts-2.8.5/uupdate.shThu Jul 29 18:21:56 2004
-+++ devscripts-2.8.5.new/uupdate.shTue Nov 23 01:51:15 2004
+diff -ruN devscripts/uupdate.sh devscripts.new/uupdate.sh
+--- devscripts/uupdate.sh  Sat Nov 27 20:51:03 2004
 devscripts.new/uupdate.sh  Tue Jan 18 22:03:43 2005
 @@ -126,7 +126,7 @@
eval "$var=\$DEFAULT_$var"
done

Index: reportbug.patch
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/devel/reportbug.patch,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- reportbug.patch 22 Oct 2004 00:06:15 -  1.4
+++ reportbug.patch 24 Jan 2005 00:46:04 -  1.5
@@ -1,6 +1,6 @@
-diff -ruN -x *~ reportbug/README.developers reportbug.new/README.developers
+diff -ruN reportbug/README.developers reportbug.new/README.developers
 --- reportbug/README.developersFri Oct  1 04:09:29 2004
-+++ reportbug.new/README.developersSat Oct  9 22:48:23 2004
 reportbug.new/README.developersTue Jan 18 11:35:44 2005
 @@ -10,7 +10,7 @@
  Template Information & Interaction with the user
  ===

experimental/beren12/finkinfo/graphics glabels.info,1.1,1.2

2005-01-23 Thread Chris Zubrzycki
Update of /cvsroot/fink/experimental/beren12/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32475/graphics

Modified Files:
glabels.info 
Log Message:
updates

Index: glabels.info
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/graphics/glabels.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- glabels.info30 Dec 2004 16:29:30 -  1.1
+++ glabels.info24 Jan 2005 00:46:05 -  1.2
@@ -1,11 +1,12 @@
 Package: glabels
 Version: 2.0.1
 Revision: 1
-Depends: atk1-shlibs, audiofile-shlibs, esound-shlibs, gconf2-shlibs, 
gettext-shlibs, glib2-shlibs, gnome-keyring-shlibs, gnome-vfs2-shlibs, 
gtk+2-shlibs,libart2-shlibs, libbonobo2-shlibs, libbonoboui2-shlibs, 
libglade2-shlibs, libgnome2-shlibs, libgnomecanvas2-shlibs, 
libgnomeprint2.2-shlibs, libgnomeprintui2.2-shlibs, libgnomeui2-shlibs, 
libiconv, libjpeg-shlibs, libxml2-shlibs, orbit2-shlibs, pango1-shlibs, 
popt-shlibs, x11
+Depends: atk1-shlibs, audiofile-shlibs, esound-shlibs, gconf2-shlibs, gettext, 
glib2-shlibs, gnome-keyring-shlibs, gnome-vfs2-shlibs, 
gtk+2-shlibs,libart2-shlibs, libbonobo2-shlibs, libbonoboui2-shlibs, 
libglade2-shlibs, libgnome2-shlibs, libgnomecanvas2-shlibs, 
libgnomeprint2.2-shlibs, libgnomeprintui2.2-shlibs, libgnomeui2-shlibs, 
libiconv, libjpeg-shlibs, libxml2-shlibs, orbit2-shlibs, pango1-shlibs, 
popt-shlibs, x11, libglabels2-shlibs
 BuildDepends: atk1, audiofile, esound, gettext-dev, glib2-dev, 
gnome-keyring-dev, gnome-vfs2-dev, libbonobo2-dev, libbonoboui2-dev, libglade2, 
libgnome2-dev, libgnomecanvas2-dev, libgnomeprint2.2-dev, 
libgnomeprintui2.2-dev, libgnomeui2-dev, libiconv-dev, libjpeg, libxml2, 
orbit2-dev, pango1-dev, popt, x11-dev
 Description: Label and business card creation program for GNOME
 Source: mirror:sourceforge:/%n/%n-%v.tar.gz
 Source-MD5: d6658de86c76f9f333ed28ac11ca22f9
+ConfigureParams: --mandir="%p/share/man"
 DocFiles: AUTHORS COPYING COPYING-DOCS COPYING.LIBGLABELS ChangeLog NEWS 
README TODO
 DescDetail: <<
  gLabels is a lightweight program for creating labels and business cards for
@@ -13,6 +14,24 @@
  laser/ink-jet peel-off label and business card sheets that you'll find at most
  office supply stores.
 <<
+
+Splitoff: <<
+Package: libglabels2-shlibs
+Depends: glib2-shlibs, libiconv, gettext, libxml2-shlibs
+Description: Label and business card creation program for GNOME (runtime libs)
+DocFiles: AUTHORS COPYING COPYING-DOCS COPYING.LIBGLABELS ChangeLog NEWS 
README TODO
+Files: lib/libglabels.1.*
+Shlibs: %p/lib/libglabels.1.dylib 2.0.0 libglabels-shlibs (>= 2.0.1-1)
+<<
+
+Splitoff2: <<
+Package: libglabels2-dev
+Depends: glib2-dev, libiconv-dev, gettext-dev, libxml2, libglabels2-shlibs
+Description: Label and business card creation program for GNOME (development 
files)
+DocFiles: AUTHORS COPYING COPYING-DOCS COPYING.LIBGLABELS ChangeLog NEWS 
README TODO
+Files: lib include
+<<
+
 Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
 Homepage: http://glabels.sourceforge.net/
 License: GPL



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/beren12/finkinfo/base libgettext3.info,1.2,1.3

2005-01-23 Thread Chris Zubrzycki
Update of /cvsroot/fink/experimental/beren12/finkinfo/base
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32475/base

Modified Files:
libgettext3.info 
Log Message:
updates

Index: libgettext3.info
===
RCS file: /cvsroot/fink/experimental/beren12/finkinfo/base/libgettext3.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libgettext3.info9 Jan 2005 22:34:34 -   1.2
+++ libgettext3.info24 Jan 2005 00:46:04 -  1.3
@@ -20,8 +20,16 @@
   Depends: %N (= %v-%r), gettext-bin (>= 0.14-1)
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
gettext-tools/TODO ChangeLog*
   Description: GNU Internationalization utilities (Development Files)
-  Files: bin/a* bin/gettextize bin/m* bin/x* include lib/gettext lib/*.a 
lib/*.la lib/libintl.dylib lib/libintl.3.dylib lib/libgettextsrc.dylib 
lib/libgettextpo.dylib lib/libgettextpo.0.dylib lib/libgettextlib.dylib 
lib/libasprintf.dylib lib/libasprintf.0.dylib share/aclocal share/gettext 
share/info/a* share/locale/*/*/gettext-tools.mo share/man/man1/a* 
share/man/man1/gettextize* share/man/man1/m* share/man/man1/x*
-
+  Files: bin/a* bin/gettextize bin/m* bin/x* include lib/gettext lib/*.a 
lib/*.la lib/libintl.dylib lib/libgettextsrc.dylib lib/libgettextpo.dylib 
lib/libgettextlib.dylib lib/libasprintf.dylib share/aclocal share/gettext 
share/info/a* share/man/man1/a* share/man/man1/gettextize* share/man/man1/m* 
share/man/man1/x*
+  InstallScript: <<
+#!/bin/sh -e
+for local in $(ls %I/share/locale | grep -v alias); do
+  mkdir -p %i/share/locale/$local/LC_MESSAGES
+  if [ -e "%I/share/locale/$local/LC_MESSAGES/gettext-tools.mo" ]; then
+   mv  "%I/share/locale/$local/LC_MESSAGES/gettext-tools.mo" 
"%i/share/locale/$local/LC_MESSAGES/gettext-tools.mo"
+  fi
+done
+  <<
 <<
 
 Splitoff2: <<



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/crypto/finkinfo crypt-ssleay-pm581.info,NONE,1.1 crypt-ssleay-pm581.patch,NONE,1.1 crypt-ssleay-pm581-0.45-4.patch,1.1,NONE crypt-ssleay-pm581-0.45-4.info,1.1,NONE

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

Added Files:
crypt-ssleay-pm581.info crypt-ssleay-pm581.patch 
Removed Files:
crypt-ssleay-pm581-0.45-4.patch crypt-ssleay-pm581-0.45-4.info 
Log Message:
Added missing dependency on openssl

--- NEW FILE: crypt-ssleay-pm581.patch ---
diff -ru2N Crypt-SSLeay-0.45/Makefile.PL Crypt-SSLeay-0.45-patched/Makefile.PL
--- Crypt-SSLeay-0.45/Makefile.PL   Thu Aug  1 17:25:08 2002
+++ Crypt-SSLeay-0.45-patched/Makefile.PL   Mon Dec 16 20:17:09 2002
@@ -9,10 +9,10 @@
 &GetOptions("default", \$opt_default);
 
-$opt_default ||= $ENV{CRYPT_SSLEAY_DEFAULT};
+$opt_default = 1;
 my $currdir = dirname($0) || '.';
 chdir($currdir) || die("can't change to $currdir: $!");
 
 # FIND POSSIBLE SSL INSTALLATIONS
-my @POSSIBLE_SSL_DIRS = qw(/usr/local/openssl /usr/local/ssl /local/ssl 
/opt/ssl /usr/local /local /usr);
+my @POSSIBLE_SSL_DIRS = qw(@PREFIX@);
 my @CANDIDATE;
 my $open_ssl = 0;

--- NEW FILE: crypt-ssleay-pm581.info ---
Package: crypt-ssleay-pm581
Version: 0.45
Revision: 5
Depends: perl581-core | system-perl581, openssl097-shlibs
BuildDepends: fink (>= 0.13.0-1), perl581-core | system-perl581, openssl097-dev
Replaces: crypt-ssleay-pm (<= 0.45-2)
PostInstScript: <<
 rm -rf %p/lib/perl5/darwin/auto/Crypt/SSLeay/
 rm -rf %p/lib/perl5/darwin/Crypt/SSLeay/
 rm -f %p/lib/perl5/darwin/Crypt/SSLeay.pm
 rm -f %p/lib/perl5/darwin/Net/SSL.pm
<<
Source: mirror:cpan:authors/id/C/CH/CHAMAS/Crypt-SSLeay-%v.tar.gz
Source-MD5: af2318519001d9b780ae419bc6c38ac1
PatchScript: sed 's|@PREFIX@|%p|g' < %a/%n.patch | patch -p1
Type: perl 5.8.1
UpdatePOD: true
DocFiles: CHANGES MANIFEST README
Description: Perl module, allows perl to use OpenSSL 
License: Artistic
Maintainer: Max Horn <[EMAIL PROTECTED]>
Homepage: http://search.cpan.org/dist/Crypt-SSLeay

--- crypt-ssleay-pm581-0.45-4.patch DELETED ---

--- crypt-ssleay-pm581-0.45-4.info DELETED ---



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/utils grep.info,NONE,1.1 grep-2.4.2-3.info,1.1,NONE

2005-01-23 Thread Max Horn
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6172

Added Files:
grep.info 
Removed Files:
grep-2.4.2-3.info 
Log Message:
New upstream version

--- grep-2.4.2-3.info DELETED ---

--- NEW FILE: grep.info ---
Package: grep
Version: 2.5.1
Revision: 1
Source: gnu
Source-MD5: 85df024edc9f9689035f6b3de28c7731
BuildDepends: pcre, gettext-dev, gettext-bin, libiconv-dev
Depends: pcre-shlibs
ConfigureParams: --mandir=%p/share/man --infodir=%p/share/info
InstallScript: make install DESTDIR=%d
DocFiles: README COPYING AUTHORS NEWS THANKS
InfoDocs: grep.info
#
Description: Search text files for patterns
DescDetail: <<
GNU grep lets you search for specific words or patterns in text
files.
<<
License: GPL
Homepage: http://www.gnu.org/software/grep/grep.html
Maintainer: Max Horn <[EMAIL PROTECTED]>



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/doc/cvsaccess cvs.ru.html,NONE,1.1 index.ru.php,NONE,1.1

2005-01-23 Thread horsager
Update of /cvsroot/fink/web/doc/cvsaccess
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12163

Added Files:
cvs.ru.html index.ru.php 
Log Message:
new russian translations

--- NEW FILE: index.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cvs.ru.html ---
(This appears to be a binary file; contents omitted.)



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/doc doc.ru.html,NONE,1.1 index.ru.php,NONE,1.1

2005-01-23 Thread horsager
Update of /cvsroot/fink/web/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11282

Added Files:
doc.ru.html index.ru.php 
Log Message:
new russian translations

--- NEW FILE: doc.ru.html ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: index.ru.php ---
(This appears to be a binary file; contents omitted.)



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


web/faq comp-general.ru.php,NONE,1.1 comp-packages.ru.php,NONE,1.1 faq.ru.html,NONE,1.1 general.ru.php,NONE,1.1 header.ru.inc,NONE,1.1 index.ru.php,NONE,1.1 mirrors.ru.php,NONE,1.1 relations.ru.php,NONE,1.1 upgrade-fink.ru.php,NONE,1.1 usage-fink.ru.php,NONE,1.1 usage-general.ru.php,NONE,1.1 usage-packages.ru.php,NONE,1.1

2005-01-23 Thread horsager
Update of /cvsroot/fink/web/faq
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10820

Added Files:
comp-general.ru.php comp-packages.ru.php faq.ru.html 
general.ru.php header.ru.inc index.ru.php mirrors.ru.php 
relations.ru.php upgrade-fink.ru.php usage-fink.ru.php 
usage-general.ru.php usage-packages.ru.php 
Log Message:
new russian translations

--- NEW FILE: comp-packages.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: usage-fink.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: faq.ru.html ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: usage-general.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: general.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: upgrade-fink.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: usage-packages.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: index.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: mirrors.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: relations.ru.php ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: header.ru.inc ---

--- NEW FILE: comp-general.ru.php ---
(This appears to be a binary file; contents omitted.)



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/utils debfoster.info,1.3,1.4

2005-01-23 Thread Remi Mommsen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27534

Modified Files:
debfoster.info 
Log Message:
Add missing dependencies on apt and dpkg

Index: debfoster.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/utils/debfoster.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- debfoster.info  9 Jun 2004 19:53:55 -   1.3
+++ debfoster.info  23 Jan 2005 18:36:33 -  1.4
@@ -1,11 +1,11 @@
 Package: debfoster
 Version: 2.5
-Revision: 22
+Revision: 23
 Description: The ultimate debian pkg mgmt tool
 License: LGPL
 Maintainer: Remi Mommsen <[EMAIL PROTECTED]>
 BuildDepends: gettext-dev, gettext-bin, autoconf | autoconf2.5, automaken
-Depends: gettext
+Depends: gettext, apt, dpkg
 Source: http://www.fruit.eu.org/debfoster/debfoster-%v.tar.gz
 Source-MD5: 718adb9be78af37903f51d602271608b
 SetLIBS: -lintl



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink ChangeLog,1.817,1.818 VirtPackage.pm,1.62,1.63

2005-01-23 Thread Dave Vasilevsky
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8643/perlmod/Fink

Modified Files:
ChangeLog VirtPackage.pm 
Log Message:
Don't write messages from VirtPackage when not in debug.


Index: VirtPackage.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/VirtPackage.pm,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- VirtPackage.pm  17 Jan 2005 06:14:11 -  1.62
+++ VirtPackage.pm  23 Jan 2005 15:10:30 -  1.63
@@ -640,28 +640,31 @@
 This package represents broken versions of the GCC compiler
 as shipped by Apple.
 END
-
-   if (-x '/usr/libexec/gcc/darwin/ppc/3.3/cc1plus') {
-   if (open(GCC, '/usr/libexec/gcc/darwin/ppc/3.3/cc1plus 
--version 2>&1 |')) {
-   while (my $line = ) {
-   if ($line =~ /build (\d+)/gsi) {
-   my $build = $1;
-   print STDERR "  - found build $build" 
if ($options{debug});
-   if (grep(/^${build}$/, @badbuilds)) {
-   print STDERR " (bad)" if 
($options{debug});
-   $hash->{status}  = 
STATUS_PRESENT;
-   $hash->{version} = '3.3-' . 
$build;
+   
+   {
+   my $cc1plus = '/usr/libexec/gcc/darwin/ppc/3.3/cc1plus';
+   if (-x $cc1plus) {
+   if (open(GCC, "$cc1plus --version 2>&1 |")) {
+   while (my $line = ) {
+   if ($line =~ /build (\d+)/gsi) {
+   my $build = $1;
+   print STDERR "  - found build 
$build" if ($options{debug});
+   if (grep(/^${build}$/, 
@badbuilds)) {
+   print STDERR " (bad)" 
if ($options{debug});
+   $hash->{status}  = 
STATUS_PRESENT;
+   $hash->{version} = 
'3.3-' . $build;
+   }
+   print STDERR "\n" if 
($options{debug});
+   last;
}
-   print STDERR "\n" if ($options{debug});
-   last;
}
+   close(GCC);
+   } else {
+   print STDERR "WARNING: couldn't run cc1plus: 
$!\n" if ($options{debug});
}
-   close(GCC);
} else {
-   warn "couldn't run cc1plus: $!\n";
+   print STDERR "WARNING: $cc1plus is not executable!\n" 
if ($options{debug});
}
-   } else {
-   warn "/usr/libexec/gcc/darwin/ppc/3.3/cc1plus is not 
executable!\n";
}
$self->{$hash->{package}} = $hash;
 
@@ -1188,7 +1191,8 @@
}
close(CHECKFILE);
} else {
-   warn "could not read $checkfile: $!\n";
+   print STDERR "WARNING: could not read 
$checkfile: $!\n"
+   if ($options{debug});
return;
}
}

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.817
retrieving revision 1.818
diff -u -d -r1.817 -r1.818
--- ChangeLog   23 Jan 2005 08:48:32 -  1.817
+++ ChangeLog   23 Jan 2005 15:10:29 -  1.818
@@ -1,3 +1,9 @@
+2005-01-23  Dave Vasilevsky  <[EMAIL PROTECTED]>
+
+   * VirtPackage.pm: Don't print messages when not in debug mode (they
+   will be seen every time apt/dpkg is run!). Eliminate repetition of
+   path to cc1plus.
+
 2005-01-23  Daniel Macks  <[EMAIL PROTECTED]>
 
* Engine.pm, Services.pm: Replace do_calls() with



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci pygsl-py.info,NONE,1.1

2005-01-23 Thread Daniel Henninger
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18743

Added Files:
pygsl-py.info 
Log Message:
Adding Sébastien Mare's pygsl package.


--- NEW FILE: pygsl-py.info ---
Info2: <<
Package: pygsl-py%type_pkg[python]
Version: 0.3.0
Revision: 1
Type: python(2.2 2.3 2.4)
Description: Python interface for the GNU Scientific Library
License: GPL
Maintainer: Sebastien Maret <[EMAIL PROTECTED]>
Depends: python%type_pkg[python] | python%type_pkg[python]-nox, gsl-shlibs 
(>=1.4), numeric-py%type_pkg[python]
BuildDepends: gsl (>=1.4)
Source: mirror:sourceforge:pygsl/pygsl-%v.tar.gz
Source-MD5: b6a2ca0d479184acc3ef671dd87168ff
CompileScript: <<
   python%type_raw[python] setup.py build
<<
InstallScript: <<
   python%type_raw[python] setup.py install --root=%d
   install -d %i/share/doc/%n/examples %i/share/doc/%n/tests
   install -m 644 examples/*.py %i/share/doc/%n/examples
   install -m 644 tests/*.py %i/share/doc/%n/tests
 <<
DocFiles: README CREDITS TODO ChangeLog
Homepage: http://pygsl.sourceforge.net
DescDetail: <<
Pygsl is a Python interface for the GNU Scientific Library (GSL). It 
grants Python users access to the GSL. 
<<
DescUsage: <<
See %p/share/doc/pygsl-py%type_pkg[python]/examples for pygsl usage examples. 
Some tests are available in %p/share/doc/pygsl-py%type_pkg[python]/tests.
<<
<<


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.2-gcc3.3/unstable/main/finkinfo/libs avalon-logkit.info,NONE,1.1

2005-01-23 Thread Daniel Henninger
Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15936

Added Files:
avalon-logkit.info 
Log Message:
Adding to 10.2 tree as well.


--- NEW FILE: avalon-logkit.info ---
Package: avalon-logkit
Version: 2.0.dev-0
Revision: 1
Description: Secure, performance-oriented logging toolkit
Type: java
License: OSI-Approved
Maintainer: Trevor Harmon <[EMAIL PROTECTED]>
Depends: system-java13-dev | system-java14-dev, avalon-framework
Source: mirror:apache:excalibur/%n/binaries/%n-%v.tar.gz
Source-MD5: 7b692648295ad1029161b35b74e5ae6b
JarFiles: %n-%v.jar
Homepage: http://excalibur.apache.org/
CompileScript: # Binary package; no compilation required
InstallScript: <<
 # Copy the doc files (because Fink's DocFiles field can't recurse on a 
directory)
 mkdir -p %i/share/doc/%n/docs/
 cp -p *.txt %i/share/doc/%n/
 cp -Rp docs/ %i/share/doc/%n/docs/
<<
DescDetail: <<
LogKit is a logging toolkit designed for secure performance oriented logging
in applications.

The LogKit provides the following features:
  - Decouples LogEvent generation from LogEvent handling.
  - Is simple to use and simple to configure.
  - Designed with security in mind.
  - Allow users fine control of logging based on priority and/or category.
  - Has hierarchical logging namespace to enable inheritance of LogTargets and
Priorities.
  - Lightweight.
  - Designed to be integrated into existing products.
  - Performance oriented.
  - Enables users to plug in filters to filter out or modify LogEvents before
they are written out.
  - Allow users to specify the serialization format of LogEvents via
Formatters.
  - Comes with a number of existing LogTargets to ease integration.
  - The LogKit has existed for a number years and been used in a number of
different environments which demonstrates it's reliability and stability.
<<



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/libs avalon-logkit.info,NONE,1.1

2005-01-23 Thread Daniel Henninger
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15186

Added Files:
avalon-logkit.info 
Log Message:
Adding Trevor Harmon's other avalon package.


--- NEW FILE: avalon-logkit.info ---
Package: avalon-logkit
Version: 2.0.dev-0
Revision: 1
Description: Secure, performance-oriented logging toolkit
Type: java
License: OSI-Approved
Maintainer: Trevor Harmon <[EMAIL PROTECTED]>
Depends: system-java13-dev | system-java14-dev, avalon-framework
Source: mirror:apache:excalibur/%n/binaries/%n-%v.tar.gz
Source-MD5: 7b692648295ad1029161b35b74e5ae6b
JarFiles: %n-%v.jar
Homepage: http://excalibur.apache.org/
CompileScript: # Binary package; no compilation required
InstallScript: <<
 # Copy the doc files (because Fink's DocFiles field can't recurse on a 
directory)
 mkdir -p %i/share/doc/%n/docs/
 cp -p *.txt %i/share/doc/%n/
 cp -Rp docs/ %i/share/doc/%n/docs/
<<
DescDetail: <<
LogKit is a logging toolkit designed for secure performance oriented logging
in applications.

The LogKit provides the following features:
  - Decouples LogEvent generation from LogEvent handling.
  - Is simple to use and simple to configure.
  - Designed with security in mind.
  - Allow users fine control of logging based on priority and/or category.
  - Has hierarchical logging namespace to enable inheritance of LogTargets and
Priorities.
  - Lightweight.
  - Designed to be integrated into existing products.
  - Performance oriented.
  - Enables users to plug in filters to filter out or modify LogEvents before
they are written out.
  - Allow users to specify the serialization format of LogEvents via
Formatters.
  - Comes with a number of existing LogTargets to ease integration.
  - The LogKit has existed for a number years and been used in a number of
different environments which demonstrates it's reliability and stability.
<<



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.2-gcc3.3/unstable/main/finkinfo/libs avalon-framework.info,NONE,1.1 jacorb.info,NONE,1.1

2005-01-23 Thread Daniel Henninger
Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8655

Added Files:
avalon-framework.info jacorb.info 
Log Message:
Moving to supported tree.


--- NEW FILE: avalon-framework.info ---
Package: avalon-framework
Version: 4.2.0
Revision: 1
Description: Interfaces for component interaction
Type: java
License: OSI-Approved
Maintainer: Trevor Harmon <[EMAIL PROTECTED]>
Depends: system-java13-dev | system-java14-dev
Source: mirror:apache:excalibur/%n/binaries/%n-%v.tar.gz
Source-MD5: 8ff312175554a7199769fad71a04cde4
SourceDirectory: %n
JarFiles: jars/%n-%v.jar jars/%n-api-%v.jar jars/%n-impl-%v.jar
Homepage: http://excalibur.apache.org/
CompileScript: # Binary package; no compilation required
InstallScript: <<
 # Copy the doc files (because Fink's DocFiles field can't recurse on a 
directory)
 mkdir -p %i/share/doc/%n/docs/
 cp -p LICENSE.txt %i/share/doc/%n/
 cp -p NOTICE.TXT %i/share/doc/%n/
 cp -Rp docs/ %i/share/doc/%n/docs/
<<
DescDetail: <<
Avalon-Framework is a small but vital jar file distributed by the Avalon
project, and some associated documentation. Avalon-Framework (often
abbreviated as AF, or even AF4 for version 4 of the framework) defines several
"lifecycle interfaces" that provide a common way for components to be created,
initialized, configured, started, etcetera.
<<

--- NEW FILE: jacorb.info ---
Package: jacorb
Version: 2.2.1
Revision: 1
Description: Java-based CORBA Object Request Broker (ORB)
Type: java
License: GPL
Maintainer: Trevor Harmon <[EMAIL PROTECTED]>
Depends: system-java13-dev | system-java14-dev, avalon-framework
BuildDepends: dos2unix
Source: http://www.jacorb.org/releases/%v/JacORB_2_2_1-compact.tar.gz
SourceDirectory: JacORB_2_2_1
Source-MD5: 1cbd91b33c278869b38fd961531d56be
JarFiles: lib/jacorb.jar
Homepage: http://www.jacorb.org/
CompileScript: # Binary package; no compilation required
InstallScript: <<
 #!/bin/sh -ev
 
 # Copy the etc files into the doc dir
 mkdir -p %i/share/doc/%n/etc/
 cp -Rp etc/ %i/share/doc/%n/etc/

 install -d %i/bin/  # Create a bin directory in the install directory
 
 # Generate the jaco file
 echo \#!/bin/sh > jaco
 echo java -Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB 
-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton \"[EMAIL 
PROTECTED]" >> jaco
 install -p jaco %i/bin/
 
 for JACORB_COMMAND in appligator bindns dior ds fixior idltemplate imr imr_mg 
imr_ssd ir jacapplet ks lsns nmg ns ntfy pingo qir trader ts unbindns ; do
  dos2unix %b/bin/$JACORB_COMMAND
  install -p %b/bin/$JACORB_COMMAND %i/bin
 done
<<
DocFiles: doc/*
DescDetail: <<
JacORB is a Java-based ORB (Object Request Broker) that complies with the
CORBA 2.3 standard. It is a full-featured ORB that offers:
* Support for IIOP 1.1
* Java Bindings
* Open Source (LGPL)
* Zero Cost Licensing
* 100% Pure Java, JDK 1.1 and above, any platform with Java Virtual Machine
* High-performance, Fully Multithreaded ORB
* POA (Portable Object Adapter)
* Support for the following CORBA Services:
* Naming
* Trading
* Transaction
* COS Event
* Collection
* Concurrency
* Both Implementation and Interface Repositories
* Portable Interceptors
* GUI tools for POA, Interface Repository, Implementation Repository, Naming
  Service, Domain Management
* HTTP Tunneling and IIOP Proxy
* IIOP over SSL
<<



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.2/unstable/main/finkinfo/libs avalon-framework.info,1.1,NONE jacorb.info,1.1,NONE

2005-01-23 Thread Daniel Henninger
Update of /cvsroot/fink/dists/10.2/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8378

Removed Files:
avalon-framework.info jacorb.info 
Log Message:
Moving to tree that is actually supported.  ;D


--- avalon-framework.info DELETED ---

--- jacorb.info DELETED ---



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/michga docbook-dtd.info,1.3,1.4

2005-01-23 Thread Michèle Garoche
Update of /cvsroot/fink/experimental/michga
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12658

Modified Files:
docbook-dtd.info 
Log Message:
Finally returned to copy, fop does not like symlinks at all

Index: docbook-dtd.info
===
RCS file: /cvsroot/fink/experimental/michga/docbook-dtd.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- docbook-dtd.info23 Jan 2005 01:19:06 -  1.3
+++ docbook-dtd.info23 Jan 2005 11:20:40 -  1.4
@@ -1,6 +1,6 @@
 Package: docbook-dtd
 Version: 4.3.0
-Revision: 1.3
+Revision: 1.4
 Maintainer: Lukas Westermann <[EMAIL PROTECTED]>
 Depends: sgml-entities-iso8879, libxml2-bin
 Source: http://www.oasis-open.org/docbook/sgml/1.0/docbk10.zip
@@ -125,19 +125,12 @@
 mv docbook-xml-4_2_0 %i/share/xml/dtd/docbookx/4.2.0
 mv docbook-xml-4_3_0 %i/share/xml/dtd/docbookx/4.3.0
 
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/2.3/$file.gml; done
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/2.4.1/$file.gml; done
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/3.0/$file.gml; done
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/3.1/$file.gml; done
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/4.0/$file.gml; done
-for file in iso-amsa iso-amsb iso-amsc iso-amsn iso-amso iso-amsr iso-box 
iso-cyr1 iso-cyr2 iso-dia iso-grk1 iso-grk2 iso-grk3 iso-grk4 iso-lat1 iso-lat2 
iso-num iso-pub iso-tech isomath; do ln -sf 
%p/share/sgml/entities/iso8879/$file.gml 
%i/share/sgml/dtd/docbook/4.1/$file.gml; done
-
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/2.3
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/2.4.1
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/3.0
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/3.1
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/4.0
-#cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/4.1
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/2.3
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/2.4.1
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/3.0
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/3.1
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/4.0
+cp %p/share/sgml/entities/iso8879/*.gml %i/share/sgml/dtd/docbook/4.1
 
 mkdir -p %i/etc/xml/catalog.d
 cp docbook-dtd-* %i/etc/xml/catalog.d/
@@ -172,7 +165,7 @@
 The DocBook DTD (both SGML and XML) are maintained by OASIS.
 DocBook  provides a system for writing structured documents using  SGML
 or XML. It is particularly well-suited to books and  papers about computer
-hardware and software, though it  is by no means limited to them.
+hardware and software, though it is by no means limited to them.
 <<
 DescUsage: <<
 This package only completes some of the tasks you need to make DocBook useful.



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/perlmod/Fink Engine.pm,1.222,1.223 Services.pm,1.145,1.146 ChangeLog,1.816,1.817

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13572

Modified Files:
Engine.pm Services.pm ChangeLog 
Log Message:
Replace Services::do_calls() with call_queue_clear() and call_queue_add().


Index: Services.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Services.pm,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -d -r1.145 -r1.146
--- Services.pm 20 Jan 2005 03:28:50 -  1.145
+++ Services.pm 23 Jan 2005 08:48:31 -  1.146
@@ -50,7 +50,7 @@
  &file_MD5_checksum &get_arch 
&get_sw_vers &enforce_gcc
  &get_system_perl_version &get_path
  &eval_conditional &count_files
- &growl &do_calls);
+ &growl &call_queue_clear 
&call_queue_add);
 }
 our @EXPORT_OK;
 
@@ -1355,59 +1355,83 @@
return 1;
 }
 
-=item do_calls
+=item call_queue_clear
 
-   &do_calls([EMAIL PROTECTED]);
+=item call_queue_add
 
-Loop through the method and function calls specified in @call_list,
-running each one in turn. Each element of @call_list is a ref to a
-list having one of two forms:
+   &call_queue_clear;
+   # some loop {
+   &call_queue_add [EMAIL PROTECTED];
+   # }
+   &call_queue_clear;
 
-  $call_list[n] = [ $object, $method, @params ]
+This implements a primitive function/method call queue for potential
+future parallelization. Using this model, there is a single queue. One
+calls call_queue_clear to make sure there are no calls left from a
+previous queue usage, then call_queue_add to add calls to the queue,
+then call_queue_clear to make sure all the calls are complete.
+
+call_queue_clear blocks until there are no calls pending.
+
+call_queue_add blocks until there is an agent available to handle the
+call, then hands it off to the agent. Each call is specified by a ref
+to a list having one of two forms:
+
+  [ $object, $method, @params ]
 
 In this form, a call will be made to the specified $method name
 (given as a string, i.e., a symbolic ref) of (blessed) object
 $obj, that is, $object->$method(@params).
 
-  $call_list[n] = [ \&function, @params ]
+  [ \&function, @params ]
 
 In this form, a call will be made to function &function (unblessed
 CODE ref), that is, &$function(@params).
 
 In both cases, the thing is called with parameter list @params (if
-given, otherwise an empty list). Return values are discarded.
-
-The anonymous list referenced from $call_list[n] will be clobbered. At
-some point, this function may be rewritten using fork(), so you should
-not expect sane results if your functions and methods change
-parameters passed by reference, (object) instance variables, or other
-runtime data structures.
+given, otherwise an empty list). Return values are discarded. The lis
[EMAIL PROTECTED] will be clobbered. Unless you are extremely careful to check 
the
+underlying function or method for thread safety and the use of
+whatever var are declared "shared", you should not expect sane results
+if your functions and methods change parameters passed by reference,
+(object) instance variables, or other runtime data structures.
 
 =cut
 
-# should rewrite this as a queue where the API is an add_call function
-# that blocks until an agent is available to run it (to save memory in
-# the parent).
+# At this time, there is no parallelization. Each call is handled in
+# the main thread and call_queue_add does not return until the call
+# returns.
 
-sub do_calls {
-   my $call_list = shift;
-   my( $object, $method, $function );
+# Should rewrite using multithreading with the pdb and aptdb as shared
+# vars. But perl doesn't implement modern threading until 5.8 so can't
+# do it until we drop support for OS X 10.2.
 
-   foreach my $call (@$call_list) {
-   $function = shift @$call;
-   if (ref($function) ne 'CODE') {
-   # not an unblessed CODE ref so assume it is an object
-   $object = $function;
-   $method = shift @$call;
-   $function = $object->can($method);  # CODE ref for pkg 
function
-   unshift @$call, $object;  # handle $obj->$method as 
&function($obj)
-   if (not defined $function) {
-   warn "$object does not appear to have a 
\"$method\" method...will skip\n";
-   next;
-   }
+# If we get a real queue and use it for many purposes, should rewrite
+# it as a queue object so can have multiple queues
+
+sub call_queue_clear {
+   return;
+}
+
+sub call_queue_add {
+   my $call = shift;
+
+   # get function CODE ref and convert object form to function form
+   

experimental/gnome/2.8/main/finkinfo/libs libxml2.info,1.1,1.2

2005-01-23 Thread Daniel Macks
Update of /cvsroot/fink/experimental/gnome/2.8/main/finkinfo/libs
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11826/2.8/main/finkinfo/libs

Modified Files:
libxml2.info 
Log Message:
Shuffling field order to make it easier to debug this thing.


Index: libxml2.info
===
RCS file: /cvsroot/fink/experimental/gnome/2.8/main/finkinfo/libs/libxml2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libxml2.info24 Sep 2004 13:46:39 -  1.1
+++ libxml2.info23 Jan 2005 08:37:37 -  1.2
@@ -1,32 +1,17 @@
 Package: libxml2
 Version: 2.6.13
 Revision: 9
-Maintainer: GNOME core team <[EMAIL PROTECTED]>
-Description: XML parsing library
-BuildDependsOnly: false
-DescPort: <<
-   The Makefile is too stupid to link the executables against the right 
copy of the library, so we help by setting LDFLAGS.
-<<
-DescPackaging: <<
-   libxml2 uses XML/SGML super catalog to know location of DTDs installed 
on   local system. They are managed by update-xml-catalog and 
update-sgml-catalog script. Each package that provides DTDs should also provide 
configuration  file(s) for these script and call them within Pre/PostInstScript.
-   
-   When update-xml-catalog is called, it reads every configuration file 
belongs to %p/etc/xml/catalog.d/. Each line of them contain 3 fields, TYPE, 
ORIG and REPLACE, correspond to arguments of `xmlcatalog --add'. See 
xmlcatalog(1) for detail.
-   
-   Also, update-sgml-catalog reads every configuration file belongs to 
%p/etc/ sgml/catalog.d/ when it is called. Each line of them contain only 1 
field, reference to other SGML catalog file.
-   
-   Makefile.in is patched to not set LDFLAGS to avoid linking problems 
when an older version of libxml2 is already installed while building.
-   
-   Libtool gets patched to fix bundle (loadable module, .so file) building.
-   
-   Previous versions by Christoph Pfisterer <[EMAIL PROTECTED]>
-<<
-License: LGPL
-Homepage: http://www.xmlsoft.org/
-
+Maintainer: The Gnome Core Team <[EMAIL PROTECTED]>
 Replaces: %N (<< 2.6.13), %N-bin
 Conflicts: %N-bin
 Provides: %N-bin
-
+Depends: <<
+   %N-shlibs (= %v-%r),
+   libiconv
+<<
+BuildDepends: <<
+   libiconv-dev
+<<
 Source: mirror:gnome:sources/%n/2.6/%n-%v.tar.bz2
 Source-MD5: feee8b092d5e9e77d50622a5639076fc
 PatchScript: <<
@@ -67,17 +52,10 @@
 esac
 <<
 DocFiles: AUTHORS Copyright NEWS README TODO
-
-Depends: <<
-   %N-shlibs (= %v-%r),
-   libiconv
-<<
-BuildDepends: <<
-   libiconv-dev
-<<
+BuildDependsOnly: false
 SplitOff: <<
Package: %N-shlibs
-   Description: Shared libraries
+   Description: Shared libraries for %N
Depends: libiconv
Replaces: <<
%N-shlibs (<< %v-%r),
@@ -91,7 +69,7 @@
 <<
 SplitOff2: <<
Package: %N-dev
-   Description: Development resources
+   Description: Development resources for %N
Depends: <<
%N-shlibs (= %v-%r),
pkgconfig
@@ -109,4 +87,35 @@
share/aclocal/libxml.m4
share/man/man1/xml2-config.1
<<
-<<
\ No newline at end of file
+<<
+Description: XML parsing library, version 2
+DescPort: <<
+The Makefile is too stupid to link the executables against the right
+copy of the library, so we help by setting LDFLAGS.
+
+THIS PACKAGE IS NOT READY FOR PUBLIC CONSUMPTION!
+<<
+DescPackaging: <<
+libxml2 uses XML/SGML super catalog to know location of DTDs installed on
+local system. They are managed by update-xml-catalog and update-sgml-catalog
+script. Each package that provides DTDs should also provide configuration
+file(s) for these script and call them within Pre/PostInstScript.
+   
+When update-xml-catalog is called, it reads every configuration file belongs
+to %p/etc/xml/catalog.d/. Each line of them contain 3 fields, TYPE, ORIG and
+REPLACE, correspond to arguments of `xmlcatalog --add'. See xmlcatalog(1) for
+detail.
+   
+Also, update-sgml-catalog reads every configuration file belongs to %p/etc/
+sgml/catalog.d/ when it is called. Each line of them contain only 1 field,
+reference to other SGML catalog file.
+   
+Makefile.in is patched to not set LDFLAGS to avoid linking problems when an 
older
+version of libxml2 is already installed while building.
+   
+Libtool gets patched to fix bundle (loadable module, .so file) building.
+   
+Previous versions by Christoph Pfisterer <[EMAIL PROTECTED]>
+<<
+License: LGPL
+Homepage: http://www.xmlsoft.org/



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl