[cvs] experimental/gecko2/finkinfo dpkg.info, 1.1, 1.2 dpkg.patch, 1.1, 1.2

2013-06-21 Thread Andreas Gockel
Update of /cvsroot/fink/experimental/gecko2/finkinfo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19146

Modified Files:
dpkg.info dpkg.patch 
Log Message:
Add buildflags.conf with debian hardening buildflags


Index: dpkg.patch
===
RCS file: /cvsroot/fink/experimental/gecko2/finkinfo/dpkg.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dpkg.patch  20 Jun 2013 22:51:33 -  1.1
+++ dpkg.patch  21 Jun 2013 19:02:13 -  1.2
@@ -3018,3 +3018,37 @@
 + }
 + 
 + system(rm -f $admindir/diversions-new; mkdir $admindir/diversions-old);
+diff -rauN dpkg-1.16.10/buildflags.conf dpkg-1.16.10-p1/buildflags.conf
+--- dpkg-1.16.10/buildflags.conf   1970-01-01 01:00:00.0 +0100
 dpkg-1.16.10-p1/buildflags.conf2013-06-21 20:33:33.0 +0200
+@@ -0,0 +1,30 @@
++# defaults
++APPEND CFLAGS -g -O2
++APPEND CXXFLAGS -g -O2
++APPEND FFLAGS -g -O2
++
++# debian stackprotector
++APPEND CFLAGS -fstack-protector 
++APPEND CXXFLAGS -fstack-protector 
++
++# debian pie
++APPEND CFLAGS -fPIE
++APPEND CXXFLAGS -fPIE
++APPEND LDFLAGS -fPIE -Wl,-pie
++
++# debian relro
++APPEND LDFLAGS -Wl,-read_only_stubs
++
++# debian bindnow
++APPEND LDFLAGS -Wl,-bind_at_load
++
++# debian fortify
++APPEND CPPFLAGS -D_FORTIFY_SOURCE=2
++
++# debian format
++PREPEND CFLAGS -Wformat -Werror=format-security
++PREPEND CXXFLAGS -Wformat -Werror=format-security
++
++# fink defaults
++PREPEND CPPFLAGS -I@FINKPREFIX@/include
++PREPEND LDFLAGS -L@FINKPREFIX@/lib

Index: dpkg.info
===
RCS file: /cvsroot/fink/experimental/gecko2/finkinfo/dpkg.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- dpkg.info   20 Jun 2013 22:51:33 -  1.1
+++ dpkg.info   21 Jun 2013 19:02:13 -  1.2
@@ -1,6 +1,6 @@
 Package: dpkg
 Version: 1.16.10
-Revision: 1.1
+Revision: 1.2
 GCC: 4.0
 ## Remove po4a
 ### Comment out libncursesw5 for bootstrap version, and don't make dselect
@@ -35,7 +35,7 @@
 Source-MD5: a20a06a5272717274a8b009368f237da
 
 PatchFile: dpkg.patch
-PatchFile-MD5: 679fac285c950c873d3fbd2d74a42f34
+PatchFile-MD5: 25be5c5c6c795a630d3545cad5322a20
 
 PatchScript: 
 sed -e 's,@FINKPREFIX@,%p,g' %{PatchFile} | patch -p1
@@ -134,6 +134,7 @@
   ## currently in fink
   # install -c -p -m 644 debian/shlibs.default %i/etc/dpkg
   install -c -p -m 644 debian/shlibs.override %i/etc/dpkg
+  install -c -p -m 644 buildflags.conf %i/etc/dpkg/
   rm -rf %i/lib/dpkg/methods/*
 
   install -m 0755 fink/md5sum %i/bin


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/gecko2/finkinfo - New directory

2013-06-20 Thread Andreas Gockel
Update of /cvsroot/fink/experimental/gecko2/finkinfo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6739/finkinfo

Log Message:
Directory /cvsroot/fink/experimental/gecko2/finkinfo added to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/gecko2/finkinfo dpkg.info, NONE, 1.1 dpkg.patch, NONE, 1.1

2013-06-20 Thread Andreas Gockel
Update of /cvsroot/fink/experimental/gecko2/finkinfo
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6815/finkinfo

Added Files:
dpkg.info dpkg.patch 
Log Message:
Improved dpkg based on thesin version of dpkg


--- NEW FILE: dpkg.patch ---
diff -ruN dpkg-1.16.10.orig/fink/md5sum dpkg-1.16.10/fink/md5sum
--- dpkg-1.16.10.orig/fink/md5sum   1969-12-31 17:00:00.0 -0700
+++ dpkg-1.16.10/fink/md5sum2013-05-28 08:30:00.0 -0600
@@ -0,0 +1,322 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+
+## md5sum wrapper for Mac md5 tool ##
+# This wrapper should be installed in bin/md5sum. Since dpkg 1.10, md5sum was
+# removed, this script is intended to replace it for fink systems.
+#
+# Written by Sjors Gielen, licensed under the same license as dpkg, the
+# GNU General Public License version 2.
+
+my $md5_bin = /sbin/md5;
+my $binary_mode = ;
+my $check_mode = 0;
+my $quiet = 0;
[...2981 lines suppressed...]
+diff -ruN dpkg-1.16.4.3.orig/src/t/100_dpkg_divert.t 
dpkg-1.16.4.3/src/t/100_dpkg_divert.t
+--- dpkg-1.16.4.3.orig/src/t/100_dpkg_divert.t 2012-06-13 23:12:34.0 
-0600
 dpkg-1.16.4.3/src/t/100_dpkg_divert.t  2012-07-02 16:14:45.0 
-0600
+@@ -593,6 +593,7 @@
+ expect_failure = 1, expect_stderr_like = qr/Permission 
denied/);
+ diversions_eq('');
+ 
++system(chmod 755 $testdir/nadir);
+ cleanup();
+ }
+ 
+@@ -606,7 +607,7 @@
+ system(chmod 500 $admindir);
+ call_divert([$testdir/foo], expect_failure = 1, expect_stderr_like = 
qr/create.*new/);
+ system(chmod 755 $admindir; ln -s /dev/full $admindir/diversions-new);
+-call_divert([$testdir/foo], expect_failure = 1, expect_stderr_like = 
qr/(write|flush|close).*new/);
++call_divert([$testdir/foo], expect_failure = 1, expect_stderr_like = 
qr/create.*new/);
+ }
+ 
+ system(rm -f $admindir/diversions-new; mkdir $admindir/diversions-old);

--- NEW FILE: dpkg.info ---
Package: dpkg
Version: 1.16.10
Revision: 1.1
GCC: 4.0
## Remove po4a
### Comment out libncursesw5 for bootstrap version, and don't make dselect
BuildDepends: 
  fink (= 0.32),
  libgettext8-dev,
  gettext-tools (= 0.18),
  liblzma5,
  libncursesw5,
  bzip2-dev

BuildConflicts: 
  ( %m = powerpc ) gcc45, 
  ( %m = powerpc ) gcc46, 
  ( %m = powerpc ) gcc47,
  ( %m = powerpc ) gcc48

Depends: 
  bzip2-shlibs,
  libgettext8-shlibs,
  liblzma5-shlibs,
  tar

Conflicts: dpkg-bootstrap
Replaces: dpkg-bootstrap
Suggests: apt
Essential: yes
Maintainer: Fink Core Group fink-c...@lists.sourceforge.net

Source: mirror:debian:/pool/main/d/%n/%n_%v.tar.xz
SourceDirectory: dpkg-%v
Source-MD5: a20a06a5272717274a8b009368f237da

PatchFile: dpkg.patch
PatchFile-MD5: 679fac285c950c873d3fbd2d74a42f34

PatchScript: 
sed -e 's,@FINKPREFIX@,%p,g' %{PatchFile} | patch -p1

patch -p1  fink/patches/add-BOD.patch
patch -p1  fink/patches/build-fix.patch
patch -p1  fink/patches/c++filt-defaults.patch
patch -p1  fink/patches/dselect-methods.patch
patch -p1  fink/patches/fink-triggers.patch
patch -p1  fink/patches/fink-virtuals.patch
patch -p1  fink/patches/full-path-calls.patch
patch -p1  fink/patches/gzip-rsyncable-fix.patch
patch -p1  fink/patches/location-fixes.patch
patch -p1  fink/patches/protect-system-dirs.patch
patch -p1  fink/patches/so-to-dylib.patch
patch -p1  fink/patches/test-fix.patch
patch -p1  fink/patches/fink-as-vendor.patch

# Remove po4a and make sure it can't be found if it's installed
# this is to keep fink policy happy since it has to build the same
# everytime on all systems
perl -pi -e 's,po4a,notpo4a,g' m4/dpkg-progs.m4

# Make sure all scripts have use lib %p/lib/perl5 to find the modules it needs
perl -pi -e 's,^(\#\!/usr/bin/perl.*)$,$1\nuse lib %p/lib/perl5;,' 
%b/scripts/*.pl

# fix paths
for i in %b/po/*.po %b/po/*.pot %b/doc/triggers.txt %b/man/*.[13578] 
%b/man/*/*.[13578]; do \
  perl -pi -e 's,/usr,%p,g' $i; \
  perl -pi -e 's,/var,%p/var,g' $i; \
  perl -pi -e 's,/etc,%p/etc,g' $i; \
  perl -pi -e 's,amd64,x86_64,g' $i; \
done 

cp scripts/t/200_Dpkg_Shlibs/objdump.basictags-amd64 
scripts/t/200_Dpkg_Shlibs/objdump.basictags-x86_64

# Fink uses x86_64 instead of amd64
perl -pi -e 's,amd64,x86_64,g' *table debian/archtable scripts/Makefile.am 
scripts/t/200_Dpkg_Shlibs/basictags.c 
scripts/t/200_Dpkg_Shlibs/basictags.symbols 
scripts/t/200_Dpkg_Shlibs/objdump.basictags-x86_64 scripts/t/200_Dpkg_Shlibs.t

# Fix for gnutar (Slightly modified for bootstrap version)
#perl -pi -e 's,\tar\,\/usr/bin/gnutar\,g' dpkg-deb/build.c 
dpkg-deb/extract.c lib/dpkg/dpkg.h lib/dpkg/subproc.c
#perl -pi -e 's,--warning=no-timestamp,--format=gnu,g' dpkg-deb/extract.c
# Fix for gnutar
perl -pi -e 's,\tar\,\%p/bin/gnutar\,g' dpkg-deb/build.c dpkg-deb/extract.c 
lib/dpkg/dpkg.h lib/dpkg/subproc.c

# Fix for older gcc ie: 10.5
perl -pi -e 's,-Wvla ,,g' m4/dpkg-compiler.m4


SetCFLAGS: -g -O2 -fstack-protector -Wformat -fPIE 
-F/System/Library/Frameworks/CoreFoundation.framework -Wno-unused-parameter 

[cvs] dists/10.7/stable/main/finkinfo/sci xraylib-pm.info, 1.10, 1.11 xraylib-python.info, 1.7, 1.8

2013-06-20 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6956

Modified Files:
xraylib-pm.info xraylib-python.info 
Log Message:
Fix Source url


Index: xraylib-pm.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/xraylib-pm.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- xraylib-pm.info 20 Jun 2013 05:55:09 -  1.10
+++ xraylib-pm.info 20 Jun 2013 22:57:07 -  1.11
@@ -21,7 +21,7 @@
 perl%type_pkg[perl]-core
 
 
-Source: http://lvserver.ugent.be/xraylib/%type_pkg[base]-%v.tar.gz
+Source: http://lvserver.ugent.be/xraylib/xraylib-%v.tar.gz
 Source-MD5: 317b462090f3b47775671555bca80851
 
 UseMaxBuildJobs: false

Index: xraylib-python.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/xraylib-python.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- xraylib-python.info 20 Jun 2013 05:55:09 -  1.7
+++ xraylib-python.info 20 Jun 2013 22:57:07 -  1.8
@@ -31,7 +31,7 @@
 python%type_pkg[python]-shlibs
 
 
-Source: http://lvserver.ugent.be/xraylib/%type_pkg[base]-%v.tar.gz
+Source: http://lvserver.ugent.be/xraylib/xraylib-%v.tar.gz
 Source-MD5: 317b462090f3b47775671555bca80851
 
 PatchScript: perl -pi -e 's|/usr/bin/env 
python|%p/bin/python%type_raw[python]|' python/xraylib


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci xraylib-pm.info, 1.7, 1.8 xraylib-python.info, 1.6, 1.7

2013-06-20 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7212

Modified Files:
xraylib-pm.info xraylib-python.info 
Log Message:
fixed source url


Index: xraylib-pm.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/xraylib-pm.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- xraylib-pm.info 20 Jun 2013 05:55:09 -  1.7
+++ xraylib-pm.info 20 Jun 2013 23:03:36 -  1.8
@@ -21,7 +21,7 @@
 perl%type_pkg[perl]-core
 
 
-Source: http://lvserver.ugent.be/xraylib/%type_pkg[base]-%v.tar.gz
+Source: http://lvserver.ugent.be/xraylib/xraylib-%v.tar.gz
 Source-MD5: 317b462090f3b47775671555bca80851
 
 UseMaxBuildJobs: false

Index: xraylib-python.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/xraylib-python.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- xraylib-python.info 20 Jun 2013 05:55:09 -  1.6
+++ xraylib-python.info 20 Jun 2013 23:03:36 -  1.7
@@ -31,7 +31,7 @@
 python%type_pkg[python]-shlibs
 
 
-Source: http://lvserver.ugent.be/xraylib/%type_pkg[base]-%v.tar.gz
+Source: http://lvserver.ugent.be/xraylib/xraylib-%v.tar.gz
 Source-MD5: 317b462090f3b47775671555bca80851
 
 PatchScript: perl -pi -e 's|/usr/bin/env 
python|%p/bin/python%type_raw[python]|' python/xraylib


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs gdal.info,1.17,1.18

2013-06-20 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7500/10.7/stable/main/finkinfo/libs

Modified Files:
gdal.info 
Log Message:
fix source url


Index: gdal.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/gdal.info,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- gdal.info   19 Jun 2013 16:31:10 -  1.17
+++ gdal.info   20 Jun 2013 23:08:18 -  1.18
@@ -45,7 +45,7 @@
 
 # (%type_raw[mysql] = -mysql) mysql-unified-dev,
 
-Source: http://download.osgeo.org/%n/%v/%n-%v.tar.gz
+Source: http://download.osgeo.org/gdal/%v/%n-%v.tar.gz
 Source-MD5: a2062d6ad09250e2ade40064bcd1a384
 
 # http://trac.macports.org/ticket/39214


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/shells mksh.info,1.10,1.11

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/shells
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1621/dists/10.4/stable/main/finkinfo/shells

Modified Files:
mksh.info 
Log Message:
sync mksh versions


Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- mksh.info   28 Feb 2012 21:05:19 -  1.10
+++ mksh.info   9 Jun 2013 10:56:35 -   1.11
@@ -1,7 +1,7 @@
 Package: mksh
-Version: 40
-Revision: 4
-Description: Enhanced version of the Korn shell
+Version: 46
+Revision: 1
+Description: MirBSD Korn Shell
 License: OSI-Approved
 Maintainer: Andreas Gockel fink-m...@unixforge.de
 Replaces: mirbsdksh ( 29.5-1), mksh, mksh-cur, mksh-llvm
@@ -10,19 +10,19 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R%vd.cpio.gz
-SourceRename: mksh-%v-%r.cpio.gz
-Source-md5: c6428401103367730a95b99284bf47dc
+Source: mirror:custom:mksh-R%v.tgz
+SourceRename: mksh-%v.tgz
+Source-md5: 77c108d8143a6e7670954d77517d216d
 NoSourceDirectory: true
-PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v-%r.cpio.gz -r
+#PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.tgz -r
 CompileScript: 
  #!/bin/sh -e -x
- cd %f
+ cd %n
  /bin/sh ./Build.sh -r -Q -j
 
 InstallScript: 
 #!/bin/sh -e -x
- cd %f
+ cd %n
  /usr/bin/install -d -m 755 %i/{bin,share/man/man1,etc/profile.d}
  /usr/bin/install -c -s -m 555 mksh %i/bin/mksh
  /usr/bin/install -c -m 444 mksh.1 %i/share/man/man1/mksh.1
@@ -43,22 +43,25 @@
 EOF
  /bin/chmod 755 %i/etc/profile.d/*
 
-DocFiles: %f/dot.mkshrc
+DocFiles: %n/dot.mkshrc
 ConfFiles: %p/etc/mkshrc
 Homepage: http://mirbsd.de/mksh
 DescDetail: 
- mksh is the MirBSD enhanced version of the Public Domain Korn
- shell (pdksh), a bourne-compatible and loosely POSIX compliant
- shell which is largely similar to the original ATT Korn shell.
- It includes bug fixes and feature improvements in order to produce
- a modern, robust shell good for interactive and especially script
- use; emacs mode command line editing and input/script processing
- have been made UTF-8 safe.
+ mksh is the successor of the Public Domain Korn shell (pdksh),
+ a Bourne/POSIX compatible shell which is largely similar to the
+ original ATT Korn Shell (ksh88/ksh93).
+ It includes bug fixes and feature improvements, in order to produce a
+ modern, robust shell good for interactive and especially script use.
+ mksh has UTF-8 support (in string operations and the Emacs editing
+ mode). The code has been cleaned up and simplified, bugs fixed,
+ standards compliance added, and several enhancements (for extended
+ compatibility to other modern shells, as well as a couple of its
+ own) are available.
 
 DescUsage: 
  Add '%p/bin/mksh' to your /etc/shells so users can use
  mksh as their default shell
 
 InfoTest: 
- TestScript: cd %f; ./test.sh -v || exit 2
+ TestScript: cd %n; ./test.sh -v || exit 2
 


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/shells mksh.info, 1.2, 1.3

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/shells
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1621/dists/10.4/stable/main/finkinfo/10.4-EOL/shells

Modified Files:
mksh.info 
Log Message:
sync mksh versions


Index: mksh.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/shells/mksh.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mksh.info   28 Feb 2012 21:07:04 -  1.2
+++ mksh.info   9 Jun 2013 10:56:35 -   1.3
@@ -1,7 +1,7 @@
 Package: mksh
-Version: 40
-Revision: 4
-Description: Enhanced version of the Korn shell
+Version: 46
+Revision: 1
+Description: MirBSD Korn Shell
 License: OSI-Approved
 Maintainer: Andreas Gockel fink-m...@unixforge.de
 Replaces: mirbsdksh ( 29.5-1), mksh, mksh-cur, mksh-llvm
@@ -10,19 +10,19 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R%vd.cpio.gz
-SourceRename: mksh-%v-%r.cpio.gz
-Source-md5: c6428401103367730a95b99284bf47dc
+Source: mirror:custom:mksh-R%v.tgz
+SourceRename: mksh-%v.tgz
+Source-md5: 77c108d8143a6e7670954d77517d216d
 NoSourceDirectory: true
-PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v-%r.cpio.gz -r
+#PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.tgz -r
 CompileScript: 
  #!/bin/sh -e -x
- cd %f
+ cd %n
  /bin/sh ./Build.sh -r -Q -j
 
 InstallScript: 
 #!/bin/sh -e -x
- cd %f
+ cd %n
  /usr/bin/install -d -m 755 %i/{bin,share/man/man1,etc/profile.d}
  /usr/bin/install -c -s -m 555 mksh %i/bin/mksh
  /usr/bin/install -c -m 444 mksh.1 %i/share/man/man1/mksh.1
@@ -43,22 +43,25 @@
 EOF
  /bin/chmod 755 %i/etc/profile.d/*
 
-DocFiles: %f/dot.mkshrc
+DocFiles: %n/dot.mkshrc
 ConfFiles: %p/etc/mkshrc
 Homepage: http://mirbsd.de/mksh
 DescDetail: 
- mksh is the MirBSD enhanced version of the Public Domain Korn
- shell (pdksh), a bourne-compatible and loosely POSIX compliant
- shell which is largely similar to the original ATT Korn shell.
- It includes bug fixes and feature improvements in order to produce
- a modern, robust shell good for interactive and especially script
- use; emacs mode command line editing and input/script processing
- have been made UTF-8 safe.
+ mksh is the successor of the Public Domain Korn shell (pdksh),
+ a Bourne/POSIX compatible shell which is largely similar to the
+ original ATT Korn Shell (ksh88/ksh93).
+ It includes bug fixes and feature improvements, in order to produce a
+ modern, robust shell good for interactive and especially script use.
+ mksh has UTF-8 support (in string operations and the Emacs editing
+ mode). The code has been cleaned up and simplified, bugs fixed,
+ standards compliance added, and several enhancements (for extended
+ compatibility to other modern shells, as well as a couple of its
+ own) are available.
 
 DescUsage: 
  Add '%p/bin/mksh' to your /etc/shells so users can use
  mksh as their default shell
 
 InfoTest: 
- TestScript: cd %f; ./test.sh -v || exit 2
+ TestScript: cd %n; ./test.sh -v || exit 2
 


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh.info,1.6,1.7

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1621/dists/10.7/stable/main/finkinfo/shells

Modified Files:
mksh.info 
Log Message:
sync mksh versions


Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- mksh.info   3 May 2013 17:38:43 -   1.6
+++ mksh.info   9 Jun 2013 10:56:35 -   1.7
@@ -1,7 +1,7 @@
 Package: mksh
 Version: 46
 Revision: 1
-Description: Enhanced version of the Korn shell
+Description: MirBSD Korn Shell
 License: OSI-Approved
 Maintainer: Andreas Gockel fink-m...@unixforge.de
 Replaces: mirbsdksh ( 29.5-1), mksh, mksh-cur, mksh-llvm
@@ -47,13 +47,16 @@
 ConfFiles: %p/etc/mkshrc
 Homepage: http://mirbsd.de/mksh
 DescDetail: 
- mksh is the MirBSD enhanced version of the Public Domain Korn
- shell (pdksh), a bourne-compatible and loosely POSIX compliant
- shell which is largely similar to the original ATT Korn shell.
- It includes bug fixes and feature improvements in order to produce
- a modern, robust shell good for interactive and especially script
- use; emacs mode command line editing and input/script processing
- have been made UTF-8 safe.
+ mksh is the successor of the Public Domain Korn shell (pdksh),
+ a Bourne/POSIX compatible shell which is largely similar to the
+ original ATT Korn Shell (ksh88/ksh93).
+ It includes bug fixes and feature improvements, in order to produce a
+ modern, robust shell good for interactive and especially script use.
+ mksh has UTF-8 support (in string operations and the Emacs editing
+ mode). The code has been cleaned up and simplified, bugs fixed,
+ standards compliance added, and several enhancements (for extended
+ compatibility to other modern shells, as well as a couple of its
+ own) are available.
 
 DescUsage: 
  Add '%p/bin/mksh' to your /etc/shells so users can use


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/shells mksh.info, 1.1, NONE

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/shells
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1621/dists/10.4/unstable/main/finkinfo/10.4-EOL/shells

Removed Files:
mksh.info 
Log Message:
sync mksh versions


--- mksh.info DELETED ---


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/web lynx-cur.info, NONE, 1.1 lynx-cur.patch, NONE, 1.1

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv2448

Added Files:
lynx-cur.info lynx-cur.patch 
Log Message:
Add the current development version from lynx


--- NEW FILE: lynx-cur.info ---
Package: lynx-cur
Version: 2.8.8dev.15
Revision: 1
Description: Text-mode WWW Browser with NLS (dev version)
License: GPL
Maintainer: gecko2 gec...@users.sourceforge.net
Depends: libncursesw5-shlibs (= 5.4-20041023-1001), gettext-tools
BuildDepends: libncursesw5 (= 5.4-20041023-1001), libgettext8-dev, 
gettext-bin, libiconv-dev, system-openssl-dev, fink (= 0.24.12-1), pkgconfig
Provides: www-browser, news-reader
Replaces: lynx-ssl ( 2.8.5-6), lynx
BuildConflicts: coreutils-default
Recommends: mime-support
Source: http://lynx.isc.org/current/lynx%v.tar.bz2
Source-MD5: 3dbf5699cc987598139634350a514592
SourceDirectory: lynx2-8-8
PatchFile: %n.patch
PatchFile-MD5: 4aac299fdfe06f4fcebea5b34621f3bb
SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include 
-I%p/include/ncursesw
SetCXXFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
ConfigureParams: 
 --libexecdir=%p/lib \
 --sysconfdir=%p/etc/lynx-cur --localstatedir=%p/var \
 --libdir=%p/etc/lynx-cur --enable-8bit-toupper --enable-externs \
 --enable-nsl-fork --enable-cgi-links --enable-exec-links \
 --enable-exec-scripts --enable-persistent-cookies --enable-nls \
 --enable-gzip-help --enable-prettysrc --enable-source-cache \
 --enable-cjk --enable-default-colors --enable-nested-tables \
 --enable-japanese-utf8 --enable-ipv6 \
 --enable-forms-options --enable-justify-elts --enable-partial \
 --enable-read-eta --enable-scrollbar --enable-syslog \
 --with-zlib --with-bzlib --without-included-gettext \
 --with-screen=ncursesw --enable-justify-elts \
 --with-ssl --enable-persistent-cookies \
 --with-mime-libdir=%p/etc/ --enable-locale-charset

PatchScript: sed -e 's,FINKPREFIX,%p,g' %{PatchFile} | patch -p1
CompileScript: 
 DESTDIR=%d ./configure %c
 make

InstallScript: 
#!/bin/sh -e -x
 make install-full docdir=%p/share/doc/%n helpdir=%p/share/doc/%n/help
 cd %i/share/doc/%n
 /bin/rm -f COPYING help/COPYING help/COPYHEADER CHANGES COPYING.asc 
COPYHEADER.asc

DocFiles: userdefs.h cfg_defs.h
PostInstScript: 
if [ $1 != configure ]; then exit 0; fi
update-alternatives \
--install %p/bin/www-browser www-browser \
%p/bin/lynx 40 \
--slave %p/share/man/man1/www-browser.1.gz www-browser.1.gz \
%p/share/man/man1/lynx.1.gz

PreRmScript: 
case $1 in
remove|deconfigure)
update-alternatives --remove www-browser %p/bin/lynx
;;
failed-upgrade|upgrade)
;;
*)
echo prerm called with unknown argument \`$1' 2
exit 0
;;
esac

PostRmScript: 
if [ $1 = purge ]; then
rm -f %p/etc/%n/local.cfg
fi

ConfFiles: %p/etc/%n/lynx.cfg %p/etc/%n/lynx.lss
Homepage: http://lynx.browser.org/
DescDetail: 
 Lynx is a fully-featured World Wide Web (WWW) client for users running
 cursor-addressable, character-cell display devices.
 It is very fast and easy to use. It will display HTML documents
 containing links to files residing on the local system,
 as well as files residing on remote systems running Gopher, HTTP, FTP,
 WAIS, and NNTP servers.
 .
 This package contains a development version of lynx.
 .
 This package builds Lynx with SSL/https support using Apple's 
 openssl implementation.

DescPackaging: 
 Putting lynx.cfg in etc/ and the documentation elsewhere is a problem
 because the configure script uses libdir for both. Fortunately, only
 the path to lynx.cfg is hardcoded into the executable. So we set
 libdir to etc/ and override the doc and help directories in the
 install step. The Makefile edits lynx.cfg on the fly in the install
 step, so all paths are correct.

DescPort: 
 Imported debian patches, prerm, postrm and postinst script.
 .
 If you want to change global settings, do not edit the global lynx.cfg,
 but create a local.cfg in the global cfg dir.


--- NEW FILE: lynx-cur.patch ---
diff -rauN lynx2-8-8/lynx.cfg lynx2-8-8-p1/lynx.cfg
--- lynx2-8-8/lynx.cfg  2012-11-19 01:20:40.0 +0100
+++ lynx2-8-8-p1/lynx.cfg   2013-04-16 00:56:56.0 +0200
@@ -90,7 +90,7 @@
 #
 # Normally we expect you will connect to a remote site, e.g., the Lynx starting
 # site:
-STARTFILE:http://lynx.isc.org/
+#STARTFILE:http://lynx.isc.org/
 #
 # As an alternative, you may want to use a local URL.  A good choice for this 
is
 # the user's home directory:
@@ -114,9 +114,9 @@
 # This definition will be overridden if the LYNX_HELPFILE environment
 # variable has been set.
 #
-HELPFILE:http://lynx.isc.org/release/lynx2-8-7/lynx_help/lynx_help_main.html

[cvs] dists/10.7/stable/main/finkinfo/net socat.info,1.3,1.4

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5459/dists/10.7/stable/main/finkinfo/net

Modified Files:
socat.info 
Log Message:
Update from upstream
sync versions


Index: socat.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/socat.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- socat.info  7 Jul 2012 11:02:55 -   1.3
+++ socat.info  9 Jun 2013 11:38:38 -   1.4
@@ -1,6 +1,6 @@
 Package: socat
-Version: 2.0.0
-Revision: b5+1
+Version: 2.0.0-b6
+Revision: 1
 Description: Multipurp. relay for bidirect. data transfer
 License: GPL
 Maintainer: Andreas Gockel fink-so...@unixforge.de
@@ -8,8 +8,8 @@
 BuildDepends: fink (= 0.24.12), readline5, system-openssl-dev
 Replaces: %n, %n-ssl
 Conflicts: %n, %n-ssl
-Source: http://www.dest-unreach.org/%n/download/%n-%v-b5.tar.bz2
-Source-MD5: f94beed5bdc5f8ffd21c760045992532
+Source: http://www.dest-unreach.org/%n/download/%n-%v.tar.gz
+Source-MD5: d559bc51a0c2148c5518acc6b2068502
 PatchFile: %n.patch
 PatchFile-MD5: 69fa98b7dc95b020b630720a8e14746d
 SetCFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector -Wformat 
-Werror=format-security -fPIE


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/net socat.info, 1.5, 1.6 socat.patch, 1.2, 1.3

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/net
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5459/dists/10.4/stable/main/finkinfo/net

Modified Files:
socat.info socat.patch 
Log Message:
Update from upstream
sync versions


Index: socat.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/net/socat.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- socat.patch 17 Nov 2011 03:36:36 -  1.2
+++ socat.patch 9 Jun 2013 11:38:38 -   1.3
@@ -363,3 +363,87 @@
 ip4_mreqn.mreq.imr_multiaddr,
 ip4_mreqn.mreq.imr_interface,
 sizeof(ip4_mreqn.mreq),
+diff -rauN socat-2.0.0-b4/doc/index.html socat-2.0.0-b4-p1/doc/index.html
+--- socat-2.0.0-b4/doc/index.html  1970-01-01 02:00:00.0 +0200
 socat-2.0.0-b4-p1/doc/index.html   2012-07-07 01:04:22.0 +0200
+@@ -0,0 +1,16 @@
++html
++head
++titleIndex of socat online documentation/title
++/head
++body
++div align=left
++h1Index of socat online documentation/h1
++a href=socat.htmlSocat Manual Page/abrbr
++a href=socat-genericsocket.htmlGeneric sockets with Socat/abrbr
++a href=socat-multicast.htmlIP Multicasting with Socat/abrbr
++a href=socat-openssltunnel.htmlSecuring Traffic Between two Socat 
Instances Using SSL/abrbr
++a href=socat-tun.htmlBuilding TUN based virtual networks with 
socat/abrbr
++a href=socat-addresschain.htmlSocat address chains/abrbr
++a href=socat-exec.htmlExecute programs using soca/abrbr
++/body
++/html
+diff -rauN socat-2.0.0-b4/sslcls.c socat-2.0.0-b4-p1/sslcls.c
+--- socat-2.0.0-b4/sslcls.c1970-01-01 02:00:00.0 +0200
 socat-2.0.0-b4-p1/sslcls.c 2012-07-07 01:04:22.0 +0200
+@@ -35,6 +35,7 @@
+return result;
+ }
+ 
++#ifndef OPENSSL_NO_SSL2
+ SSL_METHOD *sycSSLv2_client_method(void) {
+SSL_METHOD *result;
+Debug(SSLv2_client_method());
+@@ -50,6 +51,7 @@
+Debug1(SSLv2_server_method() - %p, result);
+return result;
+ }
++#endif
+ 
+ SSL_METHOD *sycSSLv3_client_method(void) {
+SSL_METHOD *result;
+diff -rauN socat-2.0.0-b4/xio-openssl.c socat-2.0.0-b4-p1/xio-openssl.c
+--- socat-2.0.0-b4/xio-openssl.c   1970-01-01 02:00:00.0 +0200
 socat-2.0.0-b4-p1/xio-openssl.c2012-07-07 01:04:22.0 +0200
+@@ -798,9 +798,12 @@
+ 
+if (!server) {
+   if (me_str != 0) {
++#ifndef OPENSSL_NO_SSL2
+if (!strcasecmp(me_str, SSLv2) || !strcasecmp(me_str, SSL2)) {
+   method = sycSSLv2_client_method();
+-   } else if (!strcasecmp(me_str, SSLv3) || !strcasecmp(me_str, 
SSL3)) {
++   } else
++#endif
++   if (!strcasecmp(me_str, SSLv3) || !strcasecmp(me_str, SSL3)) {
+   method = sycSSLv3_client_method();
+} else if (!strcasecmp(me_str, SSLv23) || !strcasecmp(me_str, 
SSL23) ||
+   !strcasecmp(me_str, SSL)) {
+@@ -817,9 +820,12 @@
+   }
+} else /* server */ {
+   if (me_str != 0) {
++#ifndef OPENSSL_NO_SSL2
+if (!strcasecmp(me_str, SSLv2) || !strcasecmp(me_str, SSL2)) {
+   method = sycSSLv2_server_method();
+-   } else if (!strcasecmp(me_str, SSLv3) || !strcasecmp(me_str, 
SSL3)) {
++   } else
++#endif
++   if (!strcasecmp(me_str, SSLv3) || !strcasecmp(me_str, SSL3)) {
+   method = sycSSLv3_server_method();
+} else if (!strcasecmp(me_str, SSLv23) || !strcasecmp(me_str, 
SSL23) ||
+   !strcasecmp(me_str, SSL)) {
+diff -rauN socat-2.0.0-b4/sslcls.h socat-2.0.0-b4-p1/sslcls.h
+--- socat-2.0.0-b4/sslcls.h1970-01-01 02:00:00.0 +0200
 socat-2.0.0-b4-p1/sslcls.h 2012-07-07 01:04:22.0 +0200
+@@ -10,8 +10,10 @@
+ 
+ void sycSSL_load_error_strings(void);
+ int sycSSL_library_init(void);
++#ifndef OPENSSL_NO_SSL2
+ SSL_METHOD *sycSSLv2_client_method(void);
+ SSL_METHOD *sycSSLv2_server_method(void);
++#endif
+ SSL_METHOD *sycSSLv3_client_method(void);
+ SSL_METHOD *sycSSLv3_server_method(void);
+ SSL_METHOD *sycSSLv23_client_method(void);

Index: socat.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/net/socat.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- socat.info  17 Nov 2011 03:36:36 -  1.5
+++ socat.info  9 Jun 2013 11:38:38 -   1.6
@@ -1,6 +1,6 @@
 Package: socat
-Version: 2.0.0
-Revision: b4
+Version: 2.0.0-b6
+Revision: 1
 Description: Multipurp. relay for bidirect. data transfer
 License: GPL
 Maintainer: Andreas Gockel fink-so...@unixforge.de
@@ -8,12 +8,15 @@
 BuildDepends: fink (= 0.24.12), readline5, system-openssl-dev
 Replaces: %n, %n-ssl
 Conflicts: %n, %n-ssl
-Source: http://www.dest-unreach.org/%n/download/%n-%v-%r.tar.bz2
-Source-MD5: b51a00937d0a56fc8eccd36175e9d068
+Source: http://www.dest-unreach.org/%n/download/%n-%v.tar.gz
+Source-MD5

[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/net socat.patch, NONE, 1.1 socat.info, 1.1, 1.2

2013-06-09 Thread Andreas Gockel
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/net/socat.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- socat.info  11 Jul 2011 04:08:34 -  1.1
+++ socat.info  9 Jun 2013 11:38:38 -   1.2
@@ -1,19 +1,40 @@
 Package: socat
-Version: 1.7.0.0
-Revision: 1002
-Maintainer: None fink-de...@lists.sourceforge.net
-DescPort: Initial port by Pepe Barbe pepe.ba...@gmail.com
-Source: http://www.dest-unreach.org/socat/download/%n-%v.tar.bz2
-Source-MD5: be5f942c44dafefa58365e9dc3ada81f
-Depends: readline-shlibs (= 4.3-1028)
-BuildDepends: readline (= 4.3-1028), system-openssl-dev
-ConfigureParams: --enable-openssl
-Conflicts: socat, socat-ssl
-Replaces: socat, socat-ssl
-SetLDFLAGS: -L%p/lib/system-openssl/lib
-SetCPPFLAGS: -I%p/lib/system-openssl/include
-DocFiles: BUGREPORTS COPYING EXAMPLES FAQ README SECURITY
-Description: Relay for data transfer between two sockets
+Version: 2.0.0-b6
+Revision: 1
+Description: Multipurp. relay for bidirect. data transfer
 License: GPL
+Maintainer: Andreas Gockel fink-so...@unixforge.de
+Depends: readline5-shlibs
+BuildDepends: fink (= 0.24.12), readline5, system-openssl-dev
+Replaces: %n, %n-ssl
+Conflicts: %n, %n-ssl
+Source: http://www.dest-unreach.org/%n/download/%n-%v.tar.gz
+Source-MD5: d559bc51a0c2148c5518acc6b2068502
+PatchFile: %n.patch
+PatchFile-MD5: 69fa98b7dc95b020b630720a8e14746d
+SetCFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector -Wformat 
-Werror=format-security -fPIE
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include 
-D__APPLE_USE_RFC_2292
+SetCXXFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
+ConfigureParams: --disable-maintainer-mode --disable-dependency-tracking
+DocFiles: BUGREPORTS COPYING EXAMPLES FAQ README SECURITY
 Homepage: http://www.dest-unreach.org/socat/
-
+Descdetail: 
+ %n (for SOcket CAT) establishes two bidirectional byte streams
+ and transfers data between them. Data channels may be files, pipes,
+ devices (terminal or modem, etc.), or sockets (Unix, IPv4, IPv6, raw,
+ UDP, TCP, SSL). It provides forking, logging and tracing, different
+ modes for interprocess communication and many more options.
+ .
+ It can be used, for example, as a TCP relay (one-shot or daemon),
+ as an external socksifier, as a shell interface to Unix sockets,
+ as an IPv6 relay, as a netcat and rinetd replacement, to redirect
+ TCP-oriented programs to a serial line, or to establish a relatively
+ secure environment (su and chroot) for running client or server shell
+ scripts inside network connections. %n supports sctp as of 1.7.0.
+
+DescPort: 
+ This build includes debian patches
+ .
+ Initial port by Pepe Barbe pepe.ba...@gmail.com
+


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/10.4-EOL/net socat.info, 1.1, NONE socat.patch, 1.1, NONE

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/10.4-EOL/net
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5459/dists/10.4/unstable/main/finkinfo/10.4-EOL/net

Removed Files:
socat.info socat.patch 
Log Message:
Update from upstream
sync versions


--- socat.patch DELETED ---

--- socat.info DELETED ---


--
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.4-EOL/editors nano-cur.patch, 1.1, 1.2 nano-cur.info, 1.1, 1.2

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/editors
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5580/dists/10.4/stable/main/finkinfo/10.4-EOL/editors

Modified Files:
nano-cur.patch nano-cur.info 
Log Message:
Sync with svn version
sync versions


Index: nano-cur.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/editors/nano-cur.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.info   16 Oct 2011 09:25:58 -  1.1
+++ nano-cur.info   9 Jun 2013 11:39:33 -   1.2
@@ -1,6 +1,6 @@
 Package: nano-cur
-Version: 2.3.1
-Revision: 4546
+Version: 2.3.2+svn4575
+Revision: 1
 Description: Free Pico clone with some new features (dev)
 License: GPL
 Maintainer: Andreas Gockel fink-n...@unixforge.de
@@ -9,22 +9,19 @@
 
 BuildDepends: 
  libgettext8-dev, libiconv-dev, libncursesw5 (= 5.4-20041023-1001),
- fink (= 0.24.12), gettext-tools, automake1.11
+ fink (= 0.24.12), gettext-tools, automake1.11, autoconf2.6
 
 Replaces: nano-unstable, nano-small, nano-noutf8, nano
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
-Source: http://www.nano-editor.org/dist/v2.3/nano-%v.tar.gz
-Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
-#PatchFile: %n.patch
-#PatchFile-MD5: 0f5a4d49c9530d18332a5b769b093aaf
-#PatchScript: patch -p2 %{PatchFile}
-SetCPPFLAGS: -I%p/include/ncursesw
-ConfigureParams: --disable-dependency-tracking --enable-utf8
-###
-# Debugging:
-#SetCFLAGS: -Wall -Wextra -std=gnu99 -pedantic
-#ConfigureParams: --enable-dependency-tracking --enable-utf8 --enable-debug
-###
+Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.2.tar.gz
+Source-MD5: 6451aeae836471cadea8567c44a46c99
+PatchFile: %n.patch
+PatchFile-MD5: 905ac98122f474a71b2cf40502f5a157
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
+ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root 
--enable-utf8
 InstallScript: 
  /usr/bin/make install prefix=%i
  /usr/bin/install -d -m 755 %i/{etc,share/doc/%n/man-html/fr}
@@ -58,11 +55,11 @@
 
 DescPort: 
  This version of nano includes all changes from svn since 2.2.6 release.
- Current svn version is: r4546
+ Current svn version is: r4575
  .
  Create patchfile:
   cd into svn checkout
-  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_1 trunk/nano
+  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_2 trunk/nano
   remove rcsid from patchfile
 
 InfoTest:   

Index: nano-cur.patch
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/editors/nano-cur.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.patch  16 Oct 2011 09:25:58 -  1.1
+++ nano-cur.patch  9 Jun 2013 11:39:33 -   1.2
@@ -0,0 +1,52 @@
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/ChangeLog 
trunk/nano/ChangeLog
+--- nano_2_3_2/ChangeLog   2013-06-09 13:15:58.0 +0200
 trunk/nano/ChangeLog   2013-06-09 13:14:53.0 +0200
+@@ -0,0 +1,12 @@
++2013-04-12 Chris Allegretta chr...@asty.org
++* src/files.c (do_insertfile): Check for saved cursor position when 
inserting a
++  file as well.  Fixes Savannah bug 38600 reported by Craig Barnes.
++  * src/files.c (write_file): Don't re-stat() the file if we're writing 
out
++a marked file (especially that would give it the wrong stat info).  
Part
++2 of issue reported by Benno Schulenberg.
++
++2013-04-07 Michael Berg m...@berg-net.us
++  * do_cut_text - Fix copying (not cutting) text setting Modified state.  
Fixes
++issue reported by Benno Schulenberg.
++
++GNU nano 2.3.2 - 2011.03.23
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/configure.ac 
trunk/nano/configure.ac
+--- nano_2_3_2/configure.ac2013-06-09 13:15:58.0 +0200
 trunk/nano/configure.ac2013-06-09 13:14:53.0 +0200
+@@ -23 +23 @@
+-AC_INIT([GNU nano], [2.3.2], [nano-de...@gnu.org], [nano])
++AC_INIT([GNU nano], [2.3.2-svn], [nano-de...@gnu.org], [nano])
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/src/cut.c 
trunk/nano/src/cut.c
+--- nano_2_3_2/src/cut.c   2013-06-09 13:15:57.0 +0200
 trunk/nano/src/cut.c   2013-06-09 13:14:51.0 +0200
+@@ -212 +212,3 @@
+-  set_modified();
++  if (!copy_text) {
++set_modified();
++  }
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/src/files.c 
trunk/nano/src/files.c
+--- nano_2_3_2/src/files.c 2013-06-09 13:15:57.0 +0200
 trunk/nano/src/files.c 2013-06-09 13:14:51.0 +0200

[cvs] dists/10.7/stable/main/finkinfo/editors nano-cur.patch, 1.3, 1.4 nano-cur.info, 1.5, 1.6

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5580/dists/10.7/stable/main/finkinfo/editors

Modified Files:
nano-cur.patch nano-cur.info 
Log Message:
Sync with svn version
sync versions


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- nano-cur.info   10 Jan 2013 18:58:26 -  1.5
+++ nano-cur.info   9 Jun 2013 11:39:32 -   1.6
@@ -1,5 +1,5 @@
 Package: nano-cur
-Version: 2.3.1+svn4562
+Version: 2.3.2+svn4575
 Revision: 1
 Description: Free Pico clone with some new features (dev)
 License: GPL
@@ -13,10 +13,10 @@
 
 Replaces: nano-unstable, nano-small, nano-noutf8, nano
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
-Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.1.tar.gz
-Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
+Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.2.tar.gz
+Source-MD5: 6451aeae836471cadea8567c44a46c99
 PatchFile: %n.patch
-PatchFile-MD5: b55addbcd0d153d1ec4387313b9296b9
+PatchFile-MD5: 905ac98122f474a71b2cf40502f5a157
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
@@ -55,11 +55,11 @@
 
 DescPort: 
  This version of nano includes all changes from svn since 2.2.6 release.
- Current svn version is: r4547
+ Current svn version is: r4575
  .
  Create patchfile:
   cd into svn checkout
-  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_1 trunk/nano
+  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_2 trunk/nano
   remove rcsid from patchfile
 
 InfoTest:   

Index: nano-cur.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- nano-cur.patch  10 Jan 2013 18:58:26 -  1.3
+++ nano-cur.patch  9 Jun 2013 11:39:32 -   1.4
@@ -1,657 +1,52 @@
-diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/ChangeLog 
nano/ChangeLog
 nano_2_3_1/ChangeLog   2011-12-18 22:20:12.0 +0100
-+++ nano/ChangeLog 2013-01-10 19:47:33.0 +0100
-@@ -0,0 +1,33 @@
-+2013-01-02 Mike Frysinger vap...@gentoo.org
-+* configure.ac: Check for ncursesw5-config and base $CPPFLAGS based 
on it.
-+
-+2013-01-09 Fabian Groffen grobian@Savannah
-+* configure.ac, src/nano.h: Make search for ncursesw more generalized.
-+
-+2013-01-02 David Benjamin davidben@Savannah
-+* src/search.c (parse_syntax): Fix blatantly and dangerously 
incorrect  code for 
-+  deleting old syntaxes.
-+
-+2013-01-02 Mike Frysinger vap...@gentoo.org
-+* src/files.c (cwd_tab_completion): Remove unnecessary variables
-+* src/search.c (search_init): Fix gcc complaints on certain versions
-+
-+2013-01-02 Eitan Adler li...@eitanadler.com
-+* configure.ac: Remove unnecessary checks
-+* src/nano.h, NEWS: Fix redundant wording
-+
-+2012-12-31 Chris Allegretta chr...@asty.org
-+* src/*: Introduce (basic) vim-style file locks.  Does not allow vim 
to recover
-+  our changes, and just lets a vim user know we're editing a file.  
Commands line -G 
-+  or --locking, nanorc option locking.  New functions 
-+  src/files.c:do_lockfile(), write_lockfile(), and delete_lockfile().
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/ChangeLog 
trunk/nano/ChangeLog
+--- nano_2_3_2/ChangeLog   2013-06-09 13:15:58.0 +0200
 trunk/nano/ChangeLog   2013-06-09 13:14:53.0 +0200
+@@ -0,0 +1,12 @@
++2013-04-12 Chris Allegretta chr...@asty.org
++* src/files.c (do_insertfile): Check for saved cursor position when 
inserting a
++  file as well.  Fixes Savannah bug 38600 reported by Craig Barnes.
++  * src/files.c (write_file): Don't re-stat() the file if we're writing 
out
++a marked file (especially that would give it the wrong stat info).  
Part
++2 of issue reported by Benno Schulenberg.
 +
-+2012-02-05 Chris Allegretta chr...@asty.org
-+  * src/*: Fix overlapping strings highlighting each other.  new 
variables in edit_draw 
-+(slmatcharray, pbegin, paintok), new logic (with repeated setting od 
values in the 
-+array but its BFI after all).  FIXME: Need to create a new 'overlap'
-+  * src/*: Fix a silly issue with the argument to nregcomp, as it's 
confusing to the caller
-+  * src/nano.h: Change the color types to a compiler macro (COLORWIDTH), 
may not actually 
-+even be worth doing, but someday who knows how wide a color curses 

[cvs] dists/10.4/stable/main/finkinfo/editors nano-cur.patch, 1.1, 1.2 nano-cur.info, 1.1, 1.2

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/editors
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5580/dists/10.4/stable/main/finkinfo/editors

Modified Files:
nano-cur.patch nano-cur.info 
Log Message:
Sync with svn version
sync versions


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.info   16 Oct 2011 09:25:58 -  1.1
+++ nano-cur.info   9 Jun 2013 11:39:33 -   1.2
@@ -1,6 +1,6 @@
 Package: nano-cur
-Version: 2.3.1
-Revision: 4546
+Version: 2.3.2+svn4575
+Revision: 1
 Description: Free Pico clone with some new features (dev)
 License: GPL
 Maintainer: Andreas Gockel fink-n...@unixforge.de
@@ -9,22 +9,19 @@
 
 BuildDepends: 
  libgettext8-dev, libiconv-dev, libncursesw5 (= 5.4-20041023-1001),
- fink (= 0.24.12), gettext-tools, automake1.11
+ fink (= 0.24.12), gettext-tools, automake1.11, autoconf2.6
 
 Replaces: nano-unstable, nano-small, nano-noutf8, nano
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
-Source: http://www.nano-editor.org/dist/v2.3/nano-%v.tar.gz
-Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
-#PatchFile: %n.patch
-#PatchFile-MD5: 0f5a4d49c9530d18332a5b769b093aaf
-#PatchScript: patch -p2 %{PatchFile}
-SetCPPFLAGS: -I%p/include/ncursesw
-ConfigureParams: --disable-dependency-tracking --enable-utf8
-###
-# Debugging:
-#SetCFLAGS: -Wall -Wextra -std=gnu99 -pedantic
-#ConfigureParams: --enable-dependency-tracking --enable-utf8 --enable-debug
-###
+Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.2.tar.gz
+Source-MD5: 6451aeae836471cadea8567c44a46c99
+PatchFile: %n.patch
+PatchFile-MD5: 905ac98122f474a71b2cf40502f5a157
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
+ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root 
--enable-utf8
 InstallScript: 
  /usr/bin/make install prefix=%i
  /usr/bin/install -d -m 755 %i/{etc,share/doc/%n/man-html/fr}
@@ -58,11 +55,11 @@
 
 DescPort: 
  This version of nano includes all changes from svn since 2.2.6 release.
- Current svn version is: r4546
+ Current svn version is: r4575
  .
  Create patchfile:
   cd into svn checkout
-  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_1 trunk/nano
+  diff --unidirectional-new-file -U 0 -rx .svn tags/nano_2_3_2 trunk/nano
   remove rcsid from patchfile
 
 InfoTest:   

Index: nano-cur.patch
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/editors/nano-cur.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.patch  16 Oct 2011 09:25:58 -  1.1
+++ nano-cur.patch  9 Jun 2013 11:39:33 -   1.2
@@ -0,0 +1,52 @@
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/ChangeLog 
trunk/nano/ChangeLog
+--- nano_2_3_2/ChangeLog   2013-06-09 13:15:58.0 +0200
 trunk/nano/ChangeLog   2013-06-09 13:14:53.0 +0200
+@@ -0,0 +1,12 @@
++2013-04-12 Chris Allegretta chr...@asty.org
++* src/files.c (do_insertfile): Check for saved cursor position when 
inserting a
++  file as well.  Fixes Savannah bug 38600 reported by Craig Barnes.
++  * src/files.c (write_file): Don't re-stat() the file if we're writing 
out
++a marked file (especially that would give it the wrong stat info).  
Part
++2 of issue reported by Benno Schulenberg.
++
++2013-04-07 Michael Berg m...@berg-net.us
++  * do_cut_text - Fix copying (not cutting) text setting Modified state.  
Fixes
++issue reported by Benno Schulenberg.
++
++GNU nano 2.3.2 - 2011.03.23
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/configure.ac 
trunk/nano/configure.ac
+--- nano_2_3_2/configure.ac2013-06-09 13:15:58.0 +0200
 trunk/nano/configure.ac2013-06-09 13:14:53.0 +0200
+@@ -23 +23 @@
+-AC_INIT([GNU nano], [2.3.2], [nano-de...@gnu.org], [nano])
++AC_INIT([GNU nano], [2.3.2-svn], [nano-de...@gnu.org], [nano])
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/src/cut.c 
trunk/nano/src/cut.c
+--- nano_2_3_2/src/cut.c   2013-06-09 13:15:57.0 +0200
 trunk/nano/src/cut.c   2013-06-09 13:14:51.0 +0200
+@@ -212 +212,3 @@
+-  set_modified();
++  if (!copy_text) {
++set_modified();
++  }
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_2/src/files.c 
trunk/nano/src/files.c
+--- nano_2_3_2/src/files.c 2013-06-09 13:15:57.0 +0200
 trunk/nano/src/files.c 2013-06-09 13:14:51.0 +0200
+@@ -1198 +1198 @@
+-  if (ISSET

[cvs] dists/10.7/stable/main/finkinfo/web nginx-cur.info, NONE, 1.1 nginx.info, 1.2, 1.3

2013-06-09 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7222

Modified Files:
nginx.info 
Added Files:
nginx-cur.info 
Log Message:
Update to latest stable version
Add current mainline version


Index: nginx.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/web/nginx.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nginx.info  10 Jan 2013 21:20:36 -  1.2
+++ nginx.info  9 Jun 2013 12:00:53 -   1.3
@@ -1,5 +1,5 @@
 Package: nginx
-Version: 1.3.11
+Version: 1.4.1
 Revision: 1
 Description: Small, powerful, scalable web/proxy server
 License: BSD
@@ -8,7 +8,7 @@
 BuildDepends: fink (= 0.24.12), pcre, system-openssl-dev, gd2, geoip-dev
 Provides: httpd
 Source: http://nginx.org/download/%n-%v.tar.gz
-Source-MD5: 4d29bca4d2cecfbe48e51684a345
+Source-MD5: fea7dfab995545ce27fe4c49dc21a972
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE

--- NEW FILE: nginx-cur.info ---
Package: nginx-cur
Version: 1.5.1
Revision: 1
Description: Small, powerful, scalable web/proxy server
License: BSD
Maintainer: Andreas Gockel fink-ng...@unixforge.de
Depends: daemonic, pcre-shlibs, gd2-shlibs, gd2-bin, geoip, geoip-shlibs
BuildDepends: fink (= 0.24.12), pcre, system-openssl-dev, gd2, geoip-dev
Provides: httpd
Replaces: nginx
Conflicts: nginx
Source: http://nginx.org/download/nginx-%v.tar.gz
Source-MD5: de43ddea9d7447d6ab640436eca98960
SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
ConfigureParams: 
 --conf-path=%p/etc/nginx/nginx.conf\
 --error-log-path=%p/var/log/nginx/error.log\
 --http-client-body-temp-path=%p/var/lib/nginx/body\
 --http-fastcgi-temp-path=%p/var/lib/nginx/fastcgi\
 --http-log-path=%p/var/log/nginx/access.log\
 --http-proxy-temp-path=%p/var/lib/nginx/proxy\
 --http-scgi-temp-path=%p/var/lib/nginx/scgi\
 --http-uwsgi-temp-path=%p/var/lib/nginx/uwsgi\
 --lock-path=%p/var/lock/nginx/nginx.lock\
 --pid-path=%p/var/run/nginx.pid\
 --with-pcre-jit\
 --with-debug\
 --with-http_addition_module\
 --with-http_dav_module\
 --with-http_flv_module\
 --with-http_geoip_module\
 --with-http_gzip_static_module\
 --with-http_image_filter_module\
 --with-http_realip_module\
 --with-http_stub_status_module\
 --with-http_ssl_module\
 --with-http_sub_module\
 --with-http_xslt_module\
 --with-ipv6\
 --with-mail\
 --with-mail_ssl_module\
 --user=www\
 --group=www\
 --with-ld-opt=-L%p/lib\
 --with-cc-opt=-I%p/include

InstallScript: 
 make install prefix=%p DESTDIR=%d
 /usr/bin/install -d -m 775 %i/var/nginx/www
 /usr/bin/install -d -m 755 
%i/var/{lib/nginx{,/body,/fastcgi,/proxy,/scgi,/uwsgi},lock/nginx}
 /bin/mv %i/html/* %i/var/nginx/www/
 /bin/rmdir %i/html
 /usr/bin/sed -i .removeme -e 's1log  logs1log  %p/var/log/nginx1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1pidlogs1pid%p/var/run/1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1#user  nobody;1user  www;1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1root   html;1root   %p/var/nginx/www;1g' 
%i/etc/nginx/nginx.conf{,.default}
 /usr/bin/find %i -name \*.removeme -delete

DocFiles: CHANGES CHANGES.ru LICENSE README
PostInstScript: 
#/bin/sh -ex
 if [ $1 = configure ]; then
  /usr/sbin/chown -R www:www %p/var/log/nginx %p/var/lib/nginx %p/var/nginx/www 
%p/var/lock/nginx
  %p/bin/daemonic install net.nginx.nginx
 fi
 if [ $1 = upgrade ]; then
  %p/bin/daemonic update net.nginx.nginx
 fi
 %p/bin/daemonic enable net.nginx.nginx
 if [ -f %p/var/run/nginx.pid ]; then
  echo Stopping nginx
  killall nginx 2/dev/null
  echo Starting nginx
  %p/sbin/nginx
fi

PreRmScript: 
#/bin/sh -ex
 if [ $1 != upgrade ]; then
  if [ -f %p/var/run/nginx.pid ]; then
   echo Stopping nginx
   killall nginx 2/dev/null
  fi
 %p/bin/daemonic disable net.nginx.nginx
fi

ConfFiles: 
 %p/etc/nginx/fastcgi_params %p/etc/nginx/fastcgi_params.default 
%p/etc/nginx/koi-utf
 %p/etc/nginx/koi-win %p/etc/nginx/mime.types %p/etc/nginx/mime.types.default
 %p/etc/nginx/nginx.conf %p/etc/nginx/nginx.conf.default %p/etc/nginx/win-utf

DaemonicName: net.nginx.nginx
DaemonicFile: 
service
  descriptionNginx web server/description
  messageNginx %v/message
 
daemon name=net.nginx.nginx
executable background=yes%p/sbin/nginx/executable

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods io-any-pm.info, 1.3, 1.4

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29936/10.7/stable/main/finkinfo/libs/perlmods

Modified Files:
io-any-pm.info 
Log Message:
new version usually means changing the version field =)


Index: io-any-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/io-any-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- io-any-pm.info  21 May 2013 17:35:02 -  1.3
+++ io-any-pm.info  24 May 2013 17:44:55 -  1.4
@@ -1,6 +1,6 @@
 Info2: 
 Package: io-any-pm%type_pkg[perl]
-Version: 0.04
+Version: 0.06
 Revision: 1
 Source: mirror:cpan:authors/id/J/JK/JKUTEJ/IO-Any-%v.tar.gz
 Source-MD5: 83b8781f6987d39891b35d53467e009d


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci r-cran-kernsmooth.info, 1.1, 1.2

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30226/10.7/stable/main/finkinfo/sci

Modified Files:
r-cran-kernsmooth.info 
Log Message:
Upstream moved 2.23-9 already to the archive dir


Index: r-cran-kernsmooth.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/r-cran-kernsmooth.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- r-cran-kernsmooth.info  9 Mar 2013 06:36:36 -   1.1
+++ r-cran-kernsmooth.info  24 May 2013 17:53:08 -  1.2
@@ -5,7 +5,7 @@
 Homepage: http://cran.r-project.org/web/packages/KernSmooth/index.html
 License: GPL
 Maintainer: David Fang fang...@users.sourceforge.net
-Source: http://cran.r-project.org/src/contrib/KernSmooth_%v.tar.gz
+Source: 
http://cran.r-project.org/src/contrib/00Archive/KernSmooth/KernSmooth_%v.tar.gz
 Source-MD5: f7760f181839fbc86505105baa60102f
 SourceDirectory: KernSmooth
 Depends: r-base


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci r-cran-mass.info,1.1,1.2

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30373/10.7/stable/main/finkinfo/sci

Modified Files:
r-cran-mass.info 
Log Message:
Upstream moved 7.3-23 already into archive


Index: r-cran-mass.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/r-cran-mass.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- r-cran-mass.info14 Feb 2013 09:19:19 -  1.1
+++ r-cran-mass.info24 May 2013 17:56:06 -  1.2
@@ -5,7 +5,7 @@
 Homepage: http://cran.r-project.org/web/packages/MASS/index.html
 License: GPL
 Maintainer: David Fang fang...@users.sourceforge.net
-Source: http://cran.r-project.org/src/contrib/MASS_%v.tar.gz
+Source: http://cran.r-project.org/src/contrib/00Archive/MASS/MASS_%v.tar.gz
 Source-MD5: 51e6c0bd70b0cbfb55a3f0df9a972ee2
 SourceDirectory: MASS
 Depends: r-base


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods test-spelling-pm.info, 1.2, 1.3

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv4849/10.7/stable/main/finkinfo/libs/perlmods

Modified Files:
test-spelling-pm.info 
Log Message:
new version usually also means changing version field =)


Index: test-spelling-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/test-spelling-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- test-spelling-pm.info   19 May 2013 06:16:00 -  1.2
+++ test-spelling-pm.info   24 May 2013 20:02:14 -  1.3
@@ -1,6 +1,6 @@
 Info2: 
 Package: test-spelling-pm
-Version: 0.15
+Version: 0.19
 Revision: 1
 
 Distribution: 10.7, 10.8


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci nco430-shlibs.info,1.1,1.2

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5573/10.7/stable/main/finkinfo/sci

Modified Files:
nco430-shlibs.info 
Log Message:
same md5 as in nco426-shlibs.info? i think not... =)


Index: nco430-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/nco430-shlibs.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nco430-shlibs.info  3 May 2013 05:00:37 -   1.1
+++ nco430-shlibs.info  24 May 2013 20:18:33 -  1.2
@@ -19,7 +19,7 @@
 
 # Unpack Phase:
 Source: http://nco.sourceforge.net/src/%type_pkg[base]-%v.tar.gz
-Source-MD5: a0c4dc60ae7c40ff5e25f4fa5d2406b8
+Source-MD5: 7dc000805441cc30ff9de837e088df34
 
 # Patch Phase:
 PatchScript:  


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci nco430-shlibs.info,1.1,1.2

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5573/10.4/stable/main/finkinfo/sci

Modified Files:
nco430-shlibs.info 
Log Message:
same md5 as in nco426-shlibs.info? i think not... =)


Index: nco430-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/nco430-shlibs.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nco430-shlibs.info  3 May 2013 05:00:36 -   1.1
+++ nco430-shlibs.info  24 May 2013 20:18:34 -  1.2
@@ -19,7 +19,7 @@
 
 # Unpack Phase:
 Source: http://nco.sourceforge.net/src/%type_pkg[base]-%v.tar.gz
-Source-MD5: a0c4dc60ae7c40ff5e25f4fa5d2406b8
+Source-MD5: 7dc000805441cc30ff9de837e088df34
 
 # Patch Phase:
 PatchScript:  


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci netcdf-cxx4.info,1.6,1.7

2013-05-24 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6005/10.4/stable/main/finkinfo/sci

Modified Files:
netcdf-cxx4.info 
Log Message:
fix typo


Index: netcdf-cxx4.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/netcdf-cxx4.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- netcdf-cxx4.info23 May 2013 15:09:22 -  1.6
+++ netcdf-cxx4.info24 May 2013 20:27:47 -  1.7
@@ -1,4 +1,4 @@
-sPackage: netcdf-cxx4
+Package: netcdf-cxx4
 Version: 4.2
 Revision: 5
 BuildDependsOnly: true


--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh.info,1.5,1.6

2013-05-03 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14224

Modified Files:
mksh.info 
Log Message:
The current version of mksh is mksh R46 from 2 May 2013.


Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- mksh.info   2 May 2013 20:53:09 -   1.5
+++ mksh.info   3 May 2013 17:38:43 -   1.6
@@ -1,5 +1,5 @@
 Package: mksh
-Version: 45
+Version: 46
 Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
@@ -12,7 +12,7 @@
 
 Source: mirror:custom:mksh-R%v.tgz
 SourceRename: mksh-%v.tgz
-Source-md5: d3d90973119ae689d5300b690600e1dc
+Source-md5: 77c108d8143a6e7670954d77517d216d
 NoSourceDirectory: true
 #PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.tgz -r
 CompileScript: 


--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh.info,1.4,1.5

2013-05-02 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8800

Modified Files:
mksh.info 
Log Message:
update to R45


Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- mksh.info   10 Jan 2013 18:33:54 -  1.4
+++ mksh.info   2 May 2013 20:53:09 -   1.5
@@ -1,5 +1,5 @@
 Package: mksh
-Version: 41.1
+Version: 45
 Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
@@ -10,9 +10,9 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R41.tgz
+Source: mirror:custom:mksh-R%v.tgz
 SourceRename: mksh-%v.tgz
-Source-md5: 70eca50d9340412714ef09b7060ebde9
+Source-md5: d3d90973119ae689d5300b690600e1dc
 NoSourceDirectory: true
 #PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.tgz -r
 CompileScript: 


--
Get 100% visibility into Java/.NET code with AppDynamics Lite
It's a free troubleshooting tool designed for production
Get down to code-level detail for bottlenecks, with 2% overhead.
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap2
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/news/rdf index.php,1.4,1.5

2013-04-21 Thread Andreas Gockel
Update of /cvsroot/fink/web/news/rdf
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19134

Modified Files:
index.php 
Log Message:
Add backup Feeds, if feeds2.feedburner.com gets no updates


Index: index.php
===
RCS file: /cvsroot/fink/web/news/rdf/index.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- index.php   26 Mar 2009 19:26:48 -  1.4
+++ index.php   21 Apr 2013 09:12:28 -  1.5
@@ -1,5 +1,5 @@
-?
-$title = Fink Package RDF Feeds;
+?php
+$title = Fink Package RDF/RSS Feeds;
 $cvs_author = 'Author: dmrrsn';
 $cvs_date = 'Date: 2004/09/20 15:56:45';
 $metatags = '';
@@ -9,8 +9,7 @@
 ?
 
 table border=0 cellpadding=0 cellspacing=0 width=100%
-tr
-td
+trtd
 h1Fink Package RDF Feeds/h1
 
 h2Updated Packages By OS/h2
@@ -19,11 +18,24 @@
  li10.4-transitional (a 
href=http://feeds2.feedburner.com/FinkProjectNews-104-transitional-stable;Stable/a)
 (a 
href=http://feeds2.feedburner.com/FinkProjectNews-104-transitional-unstable;Unstable/a)/li
  li10.4+ (a 
href=http://feeds2.feedburner.com/FinkProjectNews-104-stable;Stable/a) (a 
href=http://feeds2.feedburner.com/FinkProjectNews-104-unstable;Unstable/a)/li
 /ul
+
 h2Updated Packages By Tree/h2
 ul
  lia 
href=http://feeds2.feedburner.com/FinkProjectNews-stable;Stable/a/li
  lia 
href=http://feeds2.feedburner.com/FinkProjectNews-unstable;Unstable/a/li
 /ul
 
-/td/tr/table
-? include_once footer.inc; ?
+h2Backup Feeds, if feeds2.feedburner.com gets no updates/h2
+ul
+ lia href=feed://?php print $_SERVER[SERVER_NAME]; 
?/news/rdf/fink-stable.rssStable/a/li
+ lia href=feed://?php print $_SERVER[SERVER_NAME]; 
?/news/rdf/fink-stable-no-splitoffs.rssStable without splitoffs/a/li
+!-- lia href=feed://?php print $_SERVER[SERVER_NAME]; 
?/news/rdf/fink-stable.rssUnstable/a/li --
+!-- lia href=feed://?php print $_SERVER[SERVER_NAME]; 
?/news/rdf/fink-unstable-no-splitoffs.rssUnstable without splitoffs/a/li 
--
+ lia href=feed://?php print $_SERVER[SERVER_NAME]; 
?/news/rdf/fink-experimental.rssExperimental/a/li
+/ul
+
+/td/tr
+/table
+?php
+include_once footer.inc;
+?


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/news/rdf index.php,1.5,1.6

2013-04-21 Thread Andreas Gockel
Update of /cvsroot/fink/web/news/rdf
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19183

Modified Files:
index.php 
Log Message:
hm...


Index: index.php
===
RCS file: /cvsroot/fink/web/news/rdf/index.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- index.php   21 Apr 2013 09:12:28 -  1.5
+++ index.php   21 Apr 2013 09:13:52 -  1.6
@@ -1,7 +1,7 @@
 ?php
 $title = Fink Package RDF/RSS Feeds;
-$cvs_author = 'Author: dmrrsn';
-$cvs_date = 'Date: 2004/09/20 15:56:45';
+$cvs_author = 'Author: gecko2';
+$cvs_date = 'Date: 2013/04/21 09:13:45';
 $metatags = '';
 
 include_once header.inc;
@@ -10,7 +10,7 @@
 
 table border=0 cellpadding=0 cellspacing=0 width=100%
 trtd
-h1Fink Package RDF Feeds/h1
+h1Fink Package RDF/RSS Feeds/h1
 
 h2Updated Packages By OS/h2
 ul


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci octave-3.6.2.info, 1.18, 1.19

2013-04-18 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9860/10.7/stable/main/finkinfo/sci

Modified Files:
octave-3.6.2.info 
Log Message:
fix md5 ... =)


Index: octave-3.6.2.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/octave-3.6.2.info,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- octave-3.6.2.info   18 Apr 2013 02:37:40 -  1.18
+++ octave-3.6.2.info   18 Apr 2013 21:40:36 -  1.19
@@ -69,7 +69,7 @@
 
 
 Source: mirror:gnu:%{Ni}/%{Ni}-%v.tar.gz
-Source-MD5: 58f249c1522478956e432ea7ee2178d9
+Source-MD5: b466c111e8926b89f0519c491f6ebb45
 
 PatchFile: %{ni}-glpk.patch
 PatchFile-MD5: a4861a0803cf8892019cd5f217d2


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web package-updates.php,1.6,1.7

2013-04-18 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17245

Modified Files:
package-updates.php 
Log Message:
change feed to from unstable to stable


Index: package-updates.php
===
RCS file: /cvsroot/fink/web/package-updates.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- package-updates.php 5 Feb 2013 23:47:26 -   1.6
+++ package-updates.php 18 Apr 2013 23:25:24 -  1.7
@@ -18,7 +18,7 @@
 if (file_exists($incfile)) {
 include $incfile;
 
-   $rss = new XML_RSS(news/rdf/fink-unstable-no-splitoffs.rdf);
+   $rss = new XML_RSS(news/rdf/fink-stable-no-splitoffs.rdf);
$rss-parse();
 
$count = 0;


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web package-updates.php,1.7,1.8

2013-04-18 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17499

Modified Files:
package-updates.php 
Log Message:
http://validator.w3.org fixes


Index: package-updates.php
===
RCS file: /cvsroot/fink/web/package-updates.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- package-updates.php 18 Apr 2013 23:25:24 -  1.7
+++ package-updates.php 18 Apr 2013 23:31:29 -  1.8
@@ -25,7 +25,7 @@
foreach($rss-getItems() as $item) {
$date = $item['dc:date'];
$date = preg_replace('|T.*$|', '', $date);
-   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ style=\text-decoration: underline\ . $item['title'] 
. /span/abr /\n;
+   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ style=\text-decoration: underline\ . $item['title'] 
. /span/abr\n;
echo $item['description'];
}
 } else {


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci nco421-shlibs.info, 1.2, 1.3 nco426-shlibs.info, 1.3, 1.4

2013-04-16 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23194/10.7/stable/main/finkinfo/sci

Modified Files:
nco421-shlibs.info nco426-shlibs.info 
Log Message:
Fixing version in 421 and md5 in 426


Index: nco421-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/nco421-shlibs.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nco421-shlibs.info  31 Mar 2013 00:21:54 -  1.2
+++ nco421-shlibs.info  16 Apr 2013 20:32:20 -  1.3
@@ -1,6 +1,6 @@
 Info2: 
 Package: nco421-shlibs
-Version: 4.2.0
+Version: 4.2.1
 Revision: 5
 Type: base (nco), v (4.2.1)
 Description: The NetCDF Operators, shared libraries

Index: nco426-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/nco426-shlibs.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- nco426-shlibs.info  31 Mar 2013 00:38:09 -  1.3
+++ nco426-shlibs.info  16 Apr 2013 20:32:20 -  1.4
@@ -19,7 +19,7 @@
 
 # Unpack Phase:
 Source: http://nco.sourceforge.net/src/%type_pkg[base]-%v.tar.gz
-Source-MD5: 8bb89217ac1dadb62679d1b08ea19025
+Source-MD5: a0c4dc60ae7c40ff5e25f4fa5d2406b8
 
 # Patch Phase:
 PatchScript:  


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci nco421-shlibs.info, 1.2, 1.3 nco426-shlibs.info, 1.3, 1.4

2013-04-16 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23194/10.4/stable/main/finkinfo/sci

Modified Files:
nco421-shlibs.info nco426-shlibs.info 
Log Message:
Fixing version in 421 and md5 in 426


Index: nco421-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/nco421-shlibs.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nco421-shlibs.info  31 Mar 2013 00:21:54 -  1.2
+++ nco421-shlibs.info  16 Apr 2013 20:32:20 -  1.3
@@ -1,6 +1,6 @@
 Info2: 
 Package: nco421-shlibs
-Version: 4.2.0
+Version: 4.2.1
 Revision: 5
 Type: base (nco), v (4.2.1)
 Description: The NetCDF Operators, shared libraries

Index: nco426-shlibs.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/nco426-shlibs.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- nco426-shlibs.info  31 Mar 2013 00:38:09 -  1.3
+++ nco426-shlibs.info  16 Apr 2013 20:32:20 -  1.4
@@ -19,7 +19,7 @@
 
 # Unpack Phase:
 Source: http://nco.sourceforge.net/src/%type_pkg[base]-%v.tar.gz
-Source-MD5: 8bb89217ac1dadb62679d1b08ea19025
+Source-MD5: a0c4dc60ae7c40ff5e25f4fa5d2406b8
 
 # Patch Phase:
 PatchScript:  


--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis  visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web index.en.php, 1.51, 1.52 index.fr.php, 1.45, 1.46 index.it.php, 1.18, 1.19 index.ja.php, 1.23, 1.24 index.pt.php, 1.14, 1.15 index.ru.php, 1.18, 1.19 index.zh.php, 1.20, 1.21

2013-02-05 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21731

Modified Files:
index.en.php index.fr.php index.it.php index.ja.php 
index.pt.php index.ru.php index.zh.php 
Log Message:
Cleanup


Index: index.pt.php
===
RCS file: /cvsroot/fink/web/index.pt.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- index.pt.php19 Apr 2012 21:28:24 -  1.14
+++ index.pt.php5 Feb 2013 23:46:04 -   1.15
@@ -8,7 +8,7 @@
 meta name=keywords content=Mac OS X, Darwin, GNU, Unix, GNOME, KDE, 
software, distribuição, Fink
 ';
 
-include header.inc;
+require dirname(__FILE__) . /header.inc;
 ?
 
 
@@ -32,7 +32,7 @@
 nbsp;Notícias/h1
 ?
 // Include news items
-include dirname(__FILE__) . /news/news.pt.inc;
+require dirname(__FILE__) . /news/news.pt.inc;
 ?
 div align=righta href=? print $root; 
?news/index.php?phpLang=ptNotícias Antigas.../a/div
 

Index: index.it.php
===
RCS file: /cvsroot/fink/web/index.it.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- index.it.php19 Apr 2012 21:28:24 -  1.18
+++ index.it.php5 Feb 2013 23:46:04 -   1.19
@@ -8,7 +8,7 @@
 meta name=keywords content=Mac OS X, Darwin, GNU, Unix, GNOME, KDE, 
software, distribuzione, Fink
 ';
 
-include dirname(__FILE__) . /header.inc;
+require dirname(__FILE__) . /header.inc;
 ?
 
 
@@ -34,7 +34,7 @@
 nbsp;Notizie/h1
 ?
 // Include news items
-include dirname(__FILE__) . /news/news.inc;
+require dirname(__FILE__) . /news/news.inc;
 ?
 div align=righta href=? print $root; 
?news/index.php?phpLang=itVecchie notizie.../a/div
 

Index: index.zh.php
===
RCS file: /cvsroot/fink/web/index.zh.php,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- index.zh.php19 Apr 2012 21:28:24 -  1.20
+++ index.zh.php5 Feb 2013 23:46:04 -   1.21
@@ -8,7 +8,7 @@
 meta name=keywords content=Mac OS X, Darwin, GNU, Unix, GNOME, KDE, 
软件, 发布, Fink
 ';
 
-include dirname(__FILE__) . /header.inc;
+require dirname(__FILE__) . /header.inc;
 ?
 
 p
@@ -31,7 +31,7 @@
 
 ?
 // Include news items
-include dirname(__FILE__) . /news/news.zh.inc;
+require dirname(__FILE__) . /news/news.zh.inc;
 ?
 div align=righta href=? print $root; 
?news/index.php?phpLang=zh以前的消息…/a/div
 

Index: index.ja.php
===
RCS file: /cvsroot/fink/web/index.ja.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- index.ja.php19 Apr 2012 21:28:24 -  1.23
+++ index.ja.php5 Feb 2013 23:46:04 -   1.24
@@ -8,7 +8,7 @@
 meta name=keywords content=Mac OS X, Darwin, GNU, Unix, GNOME, KDE, 
software, distribution, Fink
 ';
 
-include dirname(__FILE__) . /header.inc;
+require dirname(__FILE__) . /header.inc;
 ?
 
 
@@ -33,7 +33,7 @@
 
 ?
 // Include news items
-include dirname(__FILE__) . /news/news.ja.inc;
+require dirname(__FILE__) . /news/news.ja.inc;
 ?
 div align=righta href=? print $root; ?news/index.php?phpLang=jaOlder 
News.../a/div
 

Index: index.ru.php
===
RCS file: /cvsroot/fink/web/index.ru.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- index.ru.php19 Apr 2012 21:28:24 -  1.18
+++ index.ru.php5 Feb 2013 23:46:04 -   1.19
@@ -8,7 +8,7 @@
 meta name=keywords2013 23:46:04 -  
1.19==jaOlder 
News.../a/divnk\+rÙiÕ\+‚›îÿƒ›îÿuZiÕ\+€zjÕ\+uŠÕ\+’h†Ö\+ƒ›îÿ€€¨Ö\+ðw›îÿÀv›îÿkpiÕ\+6
 
èè!è!‚›îÿƒ›îÿx$†Ö\+ðx›îÿ’RiÕ\+†piÕ\+‚›îÿ`RiÕ\+ς›îÿÀêÖ\+uZiÕ\+êÖ\+ØêÖ\+¨êÖ\+€zjÕ\+x$†Ö\+ðx›îÿÀw›îÿkpiÕ\+à!à!‚›îÿƒ›îÿHîeÖ\+Ðy›îÿ’RiÕ\+†piÕ\+‚›îÿ`RiÕ\+ς›îÿÀ‚›îÿ¸‚›îÿ8{ŠÕ\+Œp˜ƒ›îÿuZiÕ\+€zjÕ\+Ðy›îÿ
 
x›îÿkpiÕ\+GHIJKMNOP‚›îÿƒ›îÿH¥Ö\+p{›îÿ’RiÕ\+†piÕ\+‚›îÿ0êÖ\+uZiÕ\+0†Ö\+
 
ÙÖ\+êÖ\+ØêÖ\+¨êÖ\+€zjÕ\+H¥Ö\+p{›îÿ°y›îÿkpiÕ\+8¥Ö\+p{›îÿày›îÿkpiÕ\+(¥Ö\+p{›îÿz›îÿkpiÕ\+¥Ö\+p{›îÿ@z›îÿkpiÕ\+

¨

[cvs] web package-updates.inc,1.6,1.7 package-updates.php,1.5,1.6

2013-02-05 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv21854

Modified Files:
package-updates.inc package-updates.php 
Log Message:
Get a nice warning, when php-xml-rss is not installed.


Index: package-updates.php
===
RCS file: /cvsroot/fink/web/package-updates.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- package-updates.php 16 Sep 2010 19:42:35 -  1.5
+++ package-updates.php 5 Feb 2013 23:47:26 -   1.6
@@ -9,21 +9,27 @@
 ';
 
 include header.inc;
-include XML/RSS.php;
 ?
 
 h1Recent Package Updates/h1
 
 ?
-$rss = new XML_RSS(news/rdf/fink-unstable-no-splitoffs.rdf);
-$rss-parse();
+$incfile = /usr/share/php/XML/RSS.php;
+if (file_exists($incfile)) {
+include $incfile;
 
-$count = 0;
-foreach($rss-getItems() as $item) {
-   $date = $item['dc:date'];
-   $date = preg_replace('|T.*$|', '', $date);
-   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ style=\text-decoration: underline\ . $item['title'] 
. /span/abr /\n;
-   echo $item['description'];
+   $rss = new XML_RSS(news/rdf/fink-unstable-no-splitoffs.rdf);
+   $rss-parse();
+
+   $count = 0;
+   foreach($rss-getItems() as $item) {
+   $date = $item['dc:date'];
+   $date = preg_replace('|T.*$|', '', $date);
+   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ style=\text-decoration: underline\ . $item['title'] 
. /span/abr /\n;
+   echo $item['description'];
+   }
+} else {
+echo XML/RSS.php is missing. Please install php-xml-rss.br/;
 }
 
 include footer.inc;

Index: package-updates.inc
===
RCS file: /cvsroot/fink/web/package-updates.inc,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- package-updates.inc 19 Apr 2012 20:07:38 -  1.6
+++ package-updates.inc 5 Feb 2013 23:47:26 -   1.7
@@ -1,18 +1,23 @@
 ?
 
-include XML/RSS.php;
+$incfile = /usr/share/php/XML/RSS.php;
 
-$rss = new XML_RSS(news/rdf/fink-stable-no-splitoffs.rdf);
-$rss-parse();
+if (file_exists($incfile)) {
+   include $incfile;
 
-$count = 0;
-foreach($rss-getItems() as $item) {
-   $date = $item['dc:date'];
-   $date = preg_replace('|T.*$|', '', $date);
-   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ . $item['title'] . /span/abr\n;
-   if (++$count  20) {
-   break;
+   $rss = new XML_RSS(news/rdf/fink-stable-no-splitoffs.rdf);
+   $rss-parse();
+
+   $count = 0;
+   foreach($rss-getItems() as $item) {
+   $date = $item['dc:date'];
+   $date = preg_replace('|T.*$|', '', $date);
+   echo a style=\text-decoration: none\ href=\ . 
htmlentities($item['link']) . \ name=\ . urlencode($item['title']) . 
\span class=\news-date\ . $date . : /spanspan 
class=\news-headline\ . $item['title'] . /span/abr\n;
+   if (++$count  20) {
+   break;
+   }
}
+} else {
+   echo XML/RSS.php is missing. Please install php-xml-rss.br/;
 }
-
 ?


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/pdb nomaintainer.php,1.19,1.20 list.php,1.13,1.14

2013-02-05 Thread Andreas Gockel
Update of /cvsroot/fink/web/pdb
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22021/pdb

Modified Files:
nomaintainer.php list.php 
Log Message:
Some isset fixes


Index: list.php
===
RCS file: /cvsroot/fink/web/pdb/list.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- list.php6 Dec 2007 22:03:22 -   1.13
+++ list.php5 Feb 2013 23:48:30 -   1.14
@@ -3,7 +3,11 @@
 $cvs_author = '$Author$';
 $cvs_date = '$Date$';
 
-$server = $_SERVER['SERVER_NAME'];
+if (isset($_SERVER['SERVER_NAME'])) {
+   $server = $_SERVER['SERVER_NAME'];
+} else {
+   $server = localhost;
+}
 $location = http://$server/pdb/browse.php;;
 
 // This page is obsolete. We redirect to browse.php

Index: nomaintainer.php
===
RCS file: /cvsroot/fink/web/pdb/nomaintainer.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- nomaintainer.php6 Dec 2007 22:03:22 -   1.19
+++ nomaintainer.php5 Feb 2013 23:48:30 -   1.20
@@ -3,7 +3,11 @@
 $cvs_author = '$Author$';
 $cvs_date = '$Date$';
 
-$server = $_SERVER['SERVER_NAME'];
+if (isset($_SERVER['SERVER_NAME'])) {
+   $server = $_SERVER['SERVER_NAME'];
+} else {
+   $server = localhost;
+}
 $location = http://$server/pdb/browse.php?maintainer=Nonenochildren=on;;
 
 // This page is obsolete. We redirect to browse.php


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/pdb browse.php,1.37,1.38

2013-02-05 Thread Andreas Gockel
Update of /cvsroot/fink/web/pdb
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22096/web/pdb

Modified Files:
browse.php 
Log Message:
Remove those \n =)


Index: browse.php
===
RCS file: /cvsroot/fink/web/pdb/browse.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- browse.php  26 Jul 2012 16:17:02 -  1.37
+++ browse.php  5 Feb 2013 23:49:17 -   1.38
@@ -238,8 +238,8 @@
}
if (!is_array($packages)) {
print 'tr class=package';
-   print 'Invalid query\n';
-   print 'Please try again: a 
href=http://pdb.finkproject.org/pdb/browse.php?nolist=on;Search/a/tr\n';
+   print 'Invalid query: ';
+   print 'Please try again: a 
href=http://pdb.finkproject.org/pdb/browse.php?nolist=on;Search/a/trbr/';
} else {
foreach ($packages as $id = $package) {
if (!isset($package['version_stable'])) 
$package['version_stable'] = ;


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/pdb header.inc,1.27,1.28

2013-02-05 Thread Andreas Gockel
Update of /cvsroot/fink/web/pdb
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22164/web/pdb

Modified Files:
header.inc 
Log Message:
Fix response, when PATH_INFO is broken


Index: header.inc
===
RCS file: /cvsroot/fink/web/pdb/header.inc,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- header.inc  27 Mar 2012 14:26:13 -  1.27
+++ header.inc  5 Feb 2013 23:50:07 -   1.28
@@ -46,8 +46,9 @@
 $title .= $pispec;
 $pdbroot = ../../;
   } else {
-print 'p class=attentionbPATH_INFO not in expected format!/b/p';
-exit;
+$pispec = -;
+$title .= (none);
+$pdbroot = ../;
   }
   $root = -.$pdbroot;
 }


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] pdb create-finkdb.pl,1.47,1.48

2013-02-04 Thread Andreas Gockel
Update of /cvsroot/fink/pdb
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30020

Modified Files:
create-finkdb.pl 
Log Message:
This should fix the pdb restart after update


Index: create-finkdb.pl
===
RCS file: /cvsroot/fink/pdb/create-finkdb.pl,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- create-finkdb.pl11 Jan 2013 18:42:07 -  1.47
+++ create-finkdb.pl4 Feb 2013 22:43:46 -   1.48
@@ -330,7 +330,7 @@
# start solr back up
$ENV{'SOLR_OPTS'} = '-Dfink.production.solr=1';
info(- starting production solr\n);
-   system('solr/start.sh') == 0 or die unable to start production solr: 
$?;
+   system(getcwd() . '/solr/start.sh') == 0 or die unable to start 
production solr: $?;
 }
 
 sub check_out_release


--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/xml/cvsaccess Makefile,1.13,1.14

2013-02-02 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/cvsaccess
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17376

Modified Files:
Makefile 
Log Message:
We have ja available


Index: Makefile
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- Makefile25 Oct 2011 01:55:44 -  1.13
+++ Makefile2 Feb 2013 13:31:09 -   1.14
@@ -9,7 +9,7 @@
 WANT_HTML = 1
 DESTDIR = doc/cvsaccess
 
-LANGUAGES_AVAILABLE = fr en zh es ru pt
+LANGUAGES_AVAILABLE = fr en zh es ru pt ja
 LANGUAGES = $(LANGUAGES_AVAILABLE)
 include $(basedir)/Makefile.common
 


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/xml/netiquette netiquette.es.xml,1.3,1.4

2013-02-02 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/netiquette
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19716/netiquette

Modified Files:
netiquette.es.xml 
Log Message:
Rebuild doc


Index: netiquette.es.xml
===
RCS file: /cvsroot/fink/web/xml/netiquette/netiquette.es.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- netiquette.es.xml   11 Nov 2012 15:20:15 -  1.3
+++ netiquette.es.xml   2 Feb 2013 14:16:41 -   1.4
@@ -11,8 +11,8 @@
 pUsted puede haber sido mandado a esta página en respuesta a algún 
mensaje. Por favor, no se ofenda. Lo más posible es que es necesario que 
provee más información con el objeto de aclarar la causa de su problema, y 
que dicha información se encuentre listada aquí./p
   /preface
   chapter filename=before-post
-title¿Qué hacer antes de postear?/title
-shorttitleAntes de Postear/shorttitle
+title¿Qué hacer antes de 'postear'?/title
+shorttitleAntes de 'Postear'/shorttitle
 section name=research
   titleInvestige su pregunta. /title
   pSiempre es importante hacer algo de investigación antes de postear, 
dado que es posible que ya se haya dado una respuesta a su pregunta. Algunos 
ejemplos de los lugares donde buscar son:/p


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] web/doc/netiquette before-post.es.php, 1.7, 1.8 first-post.es.php, 1.3, 1.4 header.es.inc, 1.5, 1.6 index.es.php, 1.4, 1.5 netiquette.es.html, 1.13, 1.14

2013-02-02 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/netiquette
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19716/web/doc/netiquette

Modified Files:
before-post.es.php first-post.es.php header.es.inc 
index.es.php netiquette.es.html 
Log Message:
Rebuild doc


Index: netiquette.es.html
===
RCS file: /cvsroot/fink/web/doc/netiquette/netiquette.es.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- netiquette.es.html  2 Jan 2013 03:44:06 -   1.13
+++ netiquette.es.html  2 Feb 2013 14:16:42 -   1.14
@@ -22,7 +22,7 @@
 pEste documento pretende ser una guía para los nuevos miembros de las 
Listas de 
 Correo de Fink. La idea principal es indicar a los usuarios como mandar 
mensajes efectivamente, con el fin de solucionar efectivamente cualquier 
problema. /p
 pUsted puede haber sido mandado a esta página en respuesta a algún 
mensaje. Por favor, no se ofenda. Lo más posible es que es necesario que 
provee más información con el objeto de aclarar la causa de su problema, y 
que dicha información se encuentre listada aquí./p
-  h2Contents/h2ullia href=#before-postb1 ¿Qué hacer antes de 
postear?/b/aullia href=#before-post.research1.1 Investige su 
pregunta. /a/li/ul/lilia href=#first-postb2 Primer 
Post/b/aullia href=#first-post.system2.1 ¿Qué has 
instalado?/a/lilia href=#first-post.problem-description2.2 ¿Qué es 
lo que esta mal?/a/lilia href=#first-post.remedies2.3 ¿Qué has 
intentado?/a/lilia href=#first-post.future-plans2.4 ¿Qué 
intentarás ahora?/a/li/ul/lilia href=#replyb3 Respondiendo a 
los posts/b/aullia href=#reply.reply-to-list3.1 Asegurate de 
responder a la Lista./a/li/ul/lilia href=#unsubscribeb4 ¿Cómo 
desuscribirse de las Listas?/b/aullia 
href=#unsubscribe.unsubscribing4.1 ¿Cómo me 
desuscribo?/a/li/ul/li/ulh2a name=before-post1 ¿Qué hacer 
antes de postear?/a/h2
+  h2Contents/h2ullia href=#before-postb1 ¿Qué hacer antes de 
'postear'?/b/aullia href=#before-post.research1.1 Investige su 
pregunta. /a/li/ul/lilia href=#first-postb2 Primer 
Post/b/aullia href=#first-post.system2.1 ¿Qué has 
instalado?/a/lilia href=#first-post.problem-description2.2 ¿Qué es 
lo que esta mal?/a/lilia href=#first-post.remedies2.3 ¿Qué has 
intentado?/a/lilia href=#first-post.future-plans2.4 ¿Qué 
intentarás ahora?/a/li/ul/lilia href=#replyb3 Respondiendo a 
los posts/b/aullia href=#reply.reply-to-list3.1 Asegurate de 
responder a la Lista./a/li/ul/lilia href=#unsubscribeb4 ¿Cómo 
desuscribirse de las Listas?/b/aullia 
href=#unsubscribe.unsubscribing4.1 ¿Cómo me 
desuscribo?/a/li/ul/li/ulh2a name=before-post1 ¿Qué hacer 
antes de 'postear'?/a/h2
 
 
 h3a name=before-post.research1.1 Investige su pregunta. /a/h3

Index: header.es.inc
===
RCS file: /cvsroot/fink/web/doc/netiquette/header.es.inc,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- header.es.inc   26 Jan 2012 10:25:22 -  1.5
+++ header.es.inc   2 Feb 2013 14:16:42 -   1.6
@@ -5,7 +5,7 @@
 $parents = array(doc/index.php, Document List);
 $navbox = array(
   doc/netiquette/index.php?phpLang=es, Contents,
-  doc/netiquette/before-post.php?phpLang=es, Antes de quot;Postearquot;,
+  doc/netiquette/before-post.php?phpLang=es, Antes de 
quot;Postearquot;,stear'?/b/aullia 
href=#before-post.research1.1 Investige su pregunta. 
/a/li/ul/lilia href=#first-postb2 Primer 
Post/b/aullia href=#first-post.system2.1 ¿Qué has 
instalado?/a/lilia href=#first-post.problem-description2.2 ¿Qué es 
lo que esta mal?/a/lilia href=#first-post.remedies2.3 ¿Qué has 
intentado?/a/lilia href=#first-post.future-plans2.4 ¿Qué 
intentarás ahora?/a/li/ul/lilia href=#replyb3 Respondiendo a 
los posts/b/aullia href=#reply.reply-to-list3.1 Asegurate de 
responder a la Lista./a/li/ul/lilia href=#unsubscribeb4 ¿Cómo 
desuscribirse de las Listas?/b/aullia 
href=#unsubscribe.unsubscribing4.1 ¿Cómo me 
desuscribo?/a/li/ul/li/ulh2a name=before-post1 ¿Qué hacer 
antes de 
'postear'?/a/h29.ƒ+€š¢,ƒ+HÅt-ƒ+ЀO·ÿO·ÿk¡,ƒ+8Åt-ƒ+ЀO·ÿ@O·ÿk¡,ƒ+(Åt-ƒ+ЀO·ÿpO·ÿk¡,ƒ+Åt-ƒ+ЀO·ÿ
 O·ÿk¡,ƒ+ ¨.ƒ+uz¡,ƒ+¨9.ƒ+ 
zO·ÿŠHR-ƒ+ey¡,ƒ+Ø4.ƒ+@€O·ÿyHR-ƒ+ey¡,ƒ+0.ƒ+p€O·ÿZHR-ƒ+ey¡,ƒ+ØôQ-ƒ+P¾-ƒ+
 
ùQ-ƒ+0.ƒ+ØT¾-ƒ+Ø4.ƒ+¨9.ƒ+€š¢,ƒ+8›Â,ƒ+½-ƒ+`ˆO·ÿp‹Q-ƒ+
 
‚O·ÿð€O·ÿk¡,ƒ+5678:=?@BDð‡O·ÿ`ˆO·ÿ
 Á-ƒ+`ˆO·ÿuz¡,ƒ+•Â,ƒ+ 
€O·ÿ½-ƒ+ey¡,ƒ+•Â,ƒ+Õ_@fÆS 
Qöl±íìÓé,ƒ+`ˆO·ÿ 

[cvs] web/news news.de.rdf, 1.104, 1.105 news.en.rdf, 1.209, 1.210 news.es.rdf, 1.101, 1.102 news.fr.rdf, 1.101, 1.102 news.ja.rdf, 1.110, 1.111 news.pt.rdf, 1.31, 1.32 news.rdf, 1.342, 1.343 news.zh.

2013-02-02 Thread Andreas Gockel
Update of /cvsroot/fink/web/news
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv19716/web/news

Modified Files:
news.de.rdf news.en.rdf news.es.rdf news.fr.rdf news.ja.rdf 
news.pt.rdf news.rdf news.zh.rdf 
Log Message:
Rebuild doc


Index: news.pt.rdf
===
RCS file: /cvsroot/fink/web/news/news.pt.rdf,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- news.pt.rdf 28 Jan 2013 18:37:35 -  1.31
+++ news.pt.rdf 2 Feb 2013 14:16:43 -   1.32
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagept/dc:language
-dc:date2013-01-28T11:36:49-07:00/dc:date
+dc:date2013-02-02T15:11:15+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.de.rdf
===
RCS file: /cvsroot/fink/web/news/news.de.rdf,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- news.de.rdf 28 Jan 2013 18:37:35 -  1.104
+++ news.de.rdf 2 Feb 2013 14:16:42 -   1.105
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagede/dc:language
-dc:date2013-01-28T11:36:49-07:00/dc:date
+dc:date2013-02-02T15:11:15+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.rdf
===
RCS file: /cvsroot/fink/web/news/news.rdf,v
retrieving revision 1.342
retrieving revision 1.343
diff -u -d -r1.342 -r1.343
--- news.rdf29 Jan 2013 04:46:26 -  1.342
+++ news.rdf2 Feb 2013 14:16:43 -   1.343
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languageen/dc:language
-dc:date2013-01-28T21:45:52-07:00/dc:date
+dc:date2013-02-02T15:11:15+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2013-01-28%20fink-0.34.5%20released;
   titlefink-0.34.5 released/title

Index: news.es.rdf
===
RCS file: /cvsroot/fink/web/news/news.es.rdf,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- news.es.rdf 28 Jan 2013 18:37:35 -  1.101
+++ news.es.rdf 2 Feb 2013 14:16:42 -   1.102
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagees/dc:language
-dc:date2013-01-28T11:36:49-07:00/dc:date
+dc:date2013-02-02T15:11:15+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.fr.rdf
===
RCS file: /cvsroot/fink/web/news/news.fr.rdf,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- news.fr.rdf 28 Jan 2013 18:37:35 -  1.101
+++ news.fr.rdf 2 Feb 2013 14:16:35 -  
1.101=fink-0.32.5.5%20released’Ò·nç*rY¸nç*K$ÄÿL$ÄÿuÚ·nç*€ú¸nç*õØnç*’èÔoç*L$Äÿ€÷oç*ð@$ÄÿÀ?$Äÿkð·nç*6
 
èè!è!K$ÄÿL$Äÿx¤Ôoç*ðA$Äÿ’Ò·nç*†ð·nç*K$Äÿ`Ò·nç*ÏK$ÄÿÀŸ8pç*uÚ·nç*8pç*ؔ8pç*¨™8pç*€ú¸nç*x¤Ôoç*ðA$ÄÿÀ@$Äÿkð·nç*à!à!K$ÄÿL$ÄÿHn´oç*ÐB$Äÿ’Ò·nç*†ð·nç*K$Äÿ`Ò·nç*ÏK$ÄÿÀK$Äÿ¸K$Äÿ8ûØnç*Œp˜L$ÄÿuÚ·nç*€ú¸nç*ÐB$Äÿ
 
A$Äÿkð·nç*GHIJKMNOPK$ÄÿL$ÄÿH%‹oç*pD$Äÿ’Ò·nç*†ð·nç*K$Äÿ0Ÿ8pç*uÚ·nç*°Ôoç*
 
Yhoç*8pç*ؔ8pç*¨™8pç*€ú¸nç*H%‹oç*pD$Äÿ°B$Äÿkð·nç*8%‹oç*pD$ÄÿàB$Äÿkð·nç*(%‹oç*pD$ÄÿC$Äÿkð·nç*%‹oç*pD$Äÿ@C$Äÿkð·nç*

¨ž8pç*uÚ·nç*¨™8pç*À=$ÄÿŠ¨hoç*eÙ·nç*ؔ8pç*àC$Äÿy¨hoç*eÙ·nç*8pç*D$ÄÿZ¨hoç*eÙ·nç*ØThoç*°Ôoç*
 

[cvs] web/doc/porting footer.inc, 1.1, 1.2 gcc3_errs.php, 1.4, 1.5 header.inc, 1.11, 1.12

2013-01-30 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/porting
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27221

Modified Files:
footer.inc gcc3_errs.php header.inc 
Log Message:
Fix somw php warnings in some old files


Index: header.inc
===
RCS file: /cvsroot/fink/web/doc/porting/header.inc,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- header.inc  3 Apr 2004 18:54:54 -   1.11
+++ header.inc  30 Jan 2013 21:36:21 -  1.12
@@ -1 +1,8 @@
-? include_once header. . phpLang_current . .inc; ?
+?
+/* $Id$ */
+
+$fsroot = $root = ../;
+
+include $fsroot.doc/nav.inc;
+include $fsroot.header.inc;
+?

Index: gcc3_errs.php
===
RCS file: /cvsroot/fink/web/doc/porting/gcc3_errs.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gcc3_errs.php   1 Jul 2002 02:33:03 -   1.4
+++ gcc3_errs.php   30 Jan 2013 21:36:21 -  1.5
@@ -3,7 +3,7 @@
 $cvs_author = 'Author: dmrrsn';
 $cvs_date = 'Date: 2002/06/28 01:36:55';
 
-include header.inc;
+include_once header.en.inc;
 ?
 
 h1Packages with errors when compiling under gcc3/h1
@@ -135,5 +135,5 @@
 xpdf
 /pre
 ?
-include footer.inc;
+include ../../footer.inc;
 ?

Index: footer.inc
===
RCS file: /cvsroot/fink/web/doc/porting/footer.inc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- footer.inc  30 Jul 2001 11:28:03 -  1.1
+++ footer.inc  30 Jan 2013 21:36:21 -  1.2
@@ -1,4 +1,4 @@
 ?
 /* $Id$ */
-include $fsroot.footer.inc;
+include ../../footer.inc;
 ?


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/doc/netiquette before-post.es.php,1.6,1.7

2013-01-30 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/netiquette
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29200/doc/netiquette

Modified Files:
before-post.es.php 
Log Message:
Fix: PHP Parse error:  syntax error, unexpected T_STRING


Index: before-post.es.php
===
RCS file: /cvsroot/fink/web/doc/netiquette/before-post.es.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- before-post.es.php  11 Nov 2012 16:04:54 -  1.6
+++ before-post.es.php  30 Jan 2013 22:06:52 -  1.7
@@ -1,5 +1,5 @@
 ?
-$title = Netiquette - Antes de Postear;
+$title = Netiquette - Antes de 'Postear';
 $cvs_author = 'Author: gecko2';
 $cvs_date = 'Date: 2012/11/11 15:20:15';
 $metatags = 'link rel=contents href=index.php?phpLang=es 
title=Netiquette Contentslink rel=next href=first-post.php?phpLang=es 
title=\'Primer Post\'link rel=prev href=index.php?phpLang=es 
title=Netiquette Contents';


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci nco.info,1.17,1.18

2013-01-25 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11503/dists/10.4/stable/main/finkinfo/sci

Modified Files:
nco.info 
Log Message:
Fixing md5


Index: nco.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/nco.info,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- nco.info23 Jan 2013 21:52:36 -  1.17
+++ nco.info25 Jan 2013 21:29:56 -  1.18
@@ -21,7 +21,7 @@
 Replaces: %N ( 4.0.8-1), %N-dap ( 4.0.8-1), %N-netcdf ( 4.0.9-1), 
%N-opendap
 # Unpack Phase:
 Source: http://%N.sourceforge.net/src/%N-%v.tar.gz
-Source-MD5: 4b1e476ea56df2048edf9f35b4d62111
+Source-MD5: 3d4b023b8c6299d5f825acbbb69bc659
 
 # Patch Phase:
 PatchScript:  


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sound qtplay.info,NONE,1.1

2013-01-12 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sound
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv16206

Added Files:
qtplay.info 
Log Message:
qtplay for 10.7 and newer


--- NEW FILE: qtplay.info ---
Package: qtplay
Version: 1.3.1
Revision: 4
Description: Utility to play music files with QuickTime
License: BSD
Maintainer: Andreas Gockel fink-qtp...@unixforge.de
BuildDepends: system-sdk-10.7
Source: http://rainbowflight.googlepages.com/qtplay%v.tar.gz
Source-MD5: f6cb47521afbfc5b40efdd2d8433830d
NoSourceDirectory: true
CompileScript: 
#!/bin/sh -ev
  env -i gcc -m32 -mmacosx-version-min=10.5 -Os -prebind -isysroot 
$(xcode-select 
-print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -framework 
QuickTime -framework Carbon qtplay.c -o qtplay

InstallScript: 
 /usr/bin/install -d -m 755 %i/{bin,share/man/man1}
 /usr/bin/install -m 755 qtplay %i/bin/qtplay
 /usr/bin/install -m 644 qtplay.1 %i/share/man/man1/

DocFiles: Readme.rtf
Homepage: http://rainbowflight.googlepages.com/#qtplay
DescDetail: 
 Quicktime player is a command line utility to play
 Audio CD's, MP3's, and other music files.

 Features
 * Plays any audio file supported by Quicktime, including
   Audio CDs, AIFF, MIDI, and MP3.
 * Special flag for simply playing CDs, for lazy people.
 * Playlist features such as loop, shuffle, and random.
 * Special flag for reading playlist via standard input.
 * Support for playing files in a random order while keeping
   playlists (i.e. symphonies) in tact.
 * Support for process signals: SIGINT, SIGTSTP, and SIGCONT.

 What's New
 * Fixed bug so playing Aliases works again.
 * Fixed bug when playing playlist so correctly interprets
   relative (as well as absolute) paths within a file.
 * Un-hardcoded mount point for Audio CDs.
 * Added -- flag to force stop processing options.
 * Fixed bugs for error messages when use flags incorrectly.

 Created by Sarah Childers rainbowfli...@gmail.com
 Copyright (c) 2002 Rainbow Flight. All rights reserved.

DescUsage: See 'man qtplay' for usage info.
DescPackaging: 
 Command-line tool built using Apple '-framework' and '-prebind' flags.
 .
 Previous versions (=1.2-1) by Carsten Klapp



--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122912
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] pdb/solr start.sh,1.4,1.5

2013-01-11 Thread Andreas Gockel
Update of /cvsroot/fink/pdb/solr
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27120/solr

Modified Files:
start.sh 
Log Message:
Improve pdb logging and start script a bit =)


Index: start.sh
===
RCS file: /cvsroot/fink/pdb/solr/start.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- start.sh20 Jul 2011 18:07:51 -  1.4
+++ start.sh11 Jan 2013 18:42:07 -  1.5
@@ -1,27 +1,6 @@
 #!/bin/sh
 
-if [ -z $JAVA_HOME ]; then
-   for dir in \
-   
/System/Library/Frameworks/JavaVM.framework/Versions/1.6*/Home \
-   
/System/Library/Frameworks/JavaVM.framework/Versions/1.5*/Home \
-   /opt/jdk1.6* \
-   /opt/jdk1.5* \
-   /usr/java/jdk1.6* \
-   /usr/java/jdk1.5* \
-   /usr/lib/jvm/java-6-sun \
-   /usr/lib/jvm/java-1.6*-sun \
-   /usr/lib/jvm/java-1.5*-sun \
-   ; do
-   if [ -x $dir/bin/java ]; then
-   export JAVA_HOME=$dir
-   break;
-   fi
-   done
-fi
-
-LOGFILE=/dev/null
-MYDIR=`dirname $0`
-TOPDIR=`cd $MYDIR; pwd`
+BASEDIR=$(dirname $0)
 
-cd $TOPDIR
-exec $JAVA_HOME/bin/java -Xms128m -Xmx512m -XX:MaxHeapFreeRatio=80 
-XX:MinHeapFreeRatio=20 -Djava.net.preferIPv4Stack=true $SOLR_OPTS -jar 
$TOPDIR/start.jar $LOGFILE 21 
+cd $BASEDIR
+( java -Xms128m -Xmx512m -XX:MaxHeapFreeRatio=80 -XX:MinHeapFreeRatio=20 
-Djava.net.preferIPv4Stack=true -Djava.awt.headless=true $SOLR_OPTS -jar 
$BASEDIR/start.jar 21 | logger -t solr ) 


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] pdb create-finkdb.pl,1.46,1.47

2013-01-11 Thread Andreas Gockel
Update of /cvsroot/fink/pdb
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27120

Modified Files:
create-finkdb.pl 
Log Message:
Improve pdb logging and start script a bit =)


Index: create-finkdb.pl
===
RCS file: /cvsroot/fink/pdb/create-finkdb.pl,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- create-finkdb.pl11 Nov 2012 15:02:20 -  1.46
+++ create-finkdb.pl11 Jan 2013 18:42:07 -  1.47
@@ -365,7 +365,9 @@
}
}
 
+   system('chmod', '-f', '00750', 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-powerpc-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-powerpc-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-powerpc-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-powerpc-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-x86_64-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-x86_64-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-x86_64-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-x86_64-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL');
run_command($workingdir, @command);
+   system('chmod', '-f', '0', 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-i386-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-powerpc-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.5-x86_64-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-unstable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-unstable/fink/dists/stable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-stable/fink/dists/unstable/main/finkinfo/10.4-EOL',
 
'/home/pdb/cvs/pdb/work/basepath/10.6-i386-current-stable/fink/dists/stable/main/finkinfo/10.4-EOL',
 

[cvs] pdb/solr/etc logging.properties,NONE,1.1 jetty.xml,1.7,1.8

2013-01-11 Thread Andreas Gockel
Update of /cvsroot/fink/pdb/solr/etc
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27120/solr/etc

Modified Files:
jetty.xml 
Added Files:
logging.properties 
Log Message:
Improve pdb logging and start script a bit =)


Index: jetty.xml
===
RCS file: /cvsroot/fink/pdb/solr/etc/jetty.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- jetty.xml   11 Nov 2012 14:59:55 -  1.7
+++ jetty.xml   11 Jan 2013 18:42:07 -  1.8
@@ -204,9 +204,9 @@
 Ref id=RequestLog
   Set name=requestLog
 New id=RequestLogImpl class=org.mortbay.jetty.NCSARequestLog
-  Set name=filenameSystemProperty name=jetty.logs 
default=./logs//_mm_dd.request.log/Set
+  Set name=filenameSystemProperty name=jetty.logs 
default=/var/log/pdb//_mm_dd.request.log/Set
   Set name=filenameDateFormat_MM_dd/Set
-  Set name=retainDays30/Set
+  Set name=retainDays14/Set
   Set name=appendtrue/Set
   Set name=extendedfalse/Set
   Set name=logCookiesfalse/Set
@@ -222,4 +222,9 @@
 Set name=sendDateHeaderfalse/Set
 Set name=gracefulShutdown1000/Set
 
+Call class=java.lang.System name=setProperty
+  Argjava.util.logging.config.file/Arg
+  Arg./etc/logging.properties/Arg
+/Call
+
 /Configure

--- NEW FILE: logging.properties ---
# Default global logging level:
.level = WARNING

# Write to a file:
handlers = java.util.logging.FileHandler

# Log to the current working directory, with log files named solrxxx.log
java.util.logging.FileHandler.pattern = /var/log/pdb/solr%u.log


--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh.info,1.3,1.4

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28699

Modified Files:
mksh.info 
Log Message:
Update to R41


Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- mksh.info   7 Jul 2012 16:59:53 -   1.3
+++ mksh.info   10 Jan 2013 18:33:54 -  1.4
@@ -1,5 +1,5 @@
 Package: mksh
-Version: 40.6
+Version: 41.1
 Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
@@ -10,19 +10,19 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R40f.cpio.gz
-SourceRename: mksh-%v.cpio.gz
-Source-md5: 22c9570660c2efadf36de7b620d06966
+Source: mirror:custom:mksh-R41.tgz
+SourceRename: mksh-%v.tgz
+Source-md5: 70eca50d9340412714ef09b7060ebde9
 NoSourceDirectory: true
-PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.cpio.gz -r
+#PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.tgz -r
 CompileScript: 
  #!/bin/sh -e -x
- cd %f
+ cd %n
  /bin/sh ./Build.sh -r -Q -j
 
 InstallScript: 
 #!/bin/sh -e -x
- cd %f
+ cd %n
  /usr/bin/install -d -m 755 %i/{bin,share/man/man1,etc/profile.d}
  /usr/bin/install -c -s -m 555 mksh %i/bin/mksh
  /usr/bin/install -c -m 444 mksh.1 %i/share/man/man1/mksh.1
@@ -43,7 +43,7 @@
 EOF
  /bin/chmod 755 %i/etc/profile.d/*
 
-DocFiles: %f/dot.mkshrc
+DocFiles: %n/dot.mkshrc
 ConfFiles: %p/etc/mkshrc
 Homepage: http://mirbsd.de/mksh
 DescDetail: 
@@ -60,5 +60,5 @@
  mksh as their default shell
 
 InfoTest: 
- TestScript: cd %f; ./test.sh -v || exit 2
+ TestScript: cd %n; ./test.sh -v || exit 2
 


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh-cur.info, 1.2, 1.3 mksh-cur.patch, 1.2, 1.3

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28757

Modified Files:
mksh-cur.info mksh-cur.patch 
Log Message:
Update to R41 + cvs HEAD


Index: mksh-cur.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh-cur.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mksh-cur.patch  7 Jul 2012 16:59:53 -   1.2
+++ mksh-cur.patch  10 Jan 2013 18:34:48 -  1.3
@@ -1,2468 +1,1385 @@
 Index: src/bin/mksh/Build.sh
-diff -u src/bin/mksh/Build.sh:1.484.2.14 src/bin/mksh/Build.sh:1.579
 src/bin/mksh/Build.sh:1.484.2.14   Fri Apr  6 23:10:45 2012
-+++ src/bin/mksh/Build.sh  Sun Jul  1 15:54:49 2012
+diff -u src/bin/mksh/Build.sh:1.590.2.1 src/bin/mksh/Build.sh:1.612
+--- src/bin/mksh/Build.sh:1.590.2.1Fri Nov 30 20:49:10 2012
 src/bin/mksh/Build.sh  Tue Jan  1 21:19:36 2013
 @@ -1,5 +1,5 @@
  #!/bin/sh
--srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.484.2.14 2012/04/06 23:10:45 tg 
Exp $'
-+srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.579 2012/07/01 15:54:49 tg Exp 
$'
[...6947 lines suppressed...]
--  oaat1_addmem_impl(h, lcg_state, sizeof(lcg_state));
-+  NZATUpdateMem(h, lcg_state, sizeof(lcg_state));
- #endif
++  mkssert(val != NULL);
++
+   namelen = strlen(vp-name);
+   vallen = strlen(val) + 1;
  
--  oaat1_fini_impl(h);
-+  NZAATFinish(h);
-   lcg_state = h;
- }
+@@ -704,7 +710,6 @@
+   val = skip_varname(var, false);
+   if (val == var)
+   return (NULL);
+-  mkssert(var != NULL);
+   if (*val == '[') {
+   if (set_refflag != SRF_NOP)
+   errorf(%s: %s, var,

Index: mksh-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh-cur.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mksh-cur.info   7 Jul 2012 16:59:53 -   1.2
+++ mksh-cur.info   10 Jan 2013 18:34:48 -  1.3
@@ -1,5 +1,5 @@
 Package: mksh-cur
-Version: 40.6+cvs201207071853
+Version: 41.1+cvs201301101818
 Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
@@ -11,26 +11,26 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R40f.cpio.gz
-SourceRename: mksh-%v.cpio.gz
-Source-MD5: 22c9570660c2efadf36de7b620d06966
+Source: mirror:custom:mksh-R41.tgz
+SourceRename: mksh-%v.tgz
+Source-MD5: 70eca50d9340412714ef09b7060ebde9
 PatchFile: mksh-cur.patch
-PatchFile-MD5: 8babdbb562c558d4573736e202e11793
+PatchFile-MD5: 8f45a38733a1eebc826ade123d0add5d
 NoSourceDirectory: true
 PatchScript: 
- #!/bin/sh -ev
-  /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.cpio.gz -r
-  cd %f
+ #!/bin/sh -e -x
+#  /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.cpio.gz -r
+  cd mksh
   /usr/bin/patch -p3 %{PatchFile}
 
 CompileScript: 
- #!/bin/sh -ev
- cd %f
+ #!/bin/sh -e -x
+ cd mksh
  /bin/sh ./Build.sh -r -Q -j
 
 InstallScript: 
-#!/bin/sh -ev
- cd %f
+#!/bin/sh -e -x
+ cd mksh
  /usr/bin/install -d -m 755 %i/{bin,share/man/man1,etc/profile.d}
  /usr/bin/install -c -s -m 555 mksh %i/bin/mksh
  /usr/bin/install -c -m 444 mksh.1 %i/share/man/man1/mksh.1
@@ -51,7 +51,7 @@
 EOF
  /bin/chmod 755 %i/etc/profile.d/*
 
-DocFiles: %f/dot.mkshrc
+DocFiles: mksh/dot.mkshrc
 ConfFiles: %p/etc/mkshrc
 Homepage: http://mirbsd.de/mksh
 DescDetail: 
@@ -69,12 +69,12 @@
 
 DescPackaging: 
  Create the patchfile:
- cvs -qd _anon...@anoncvs.mirbsd.org:/cvs rdiff -u -rmksh-R39c -rHEAD mksh 
mksh-cur.patch
+ cvs -qd _anon...@anoncvs.mirbsd.org:/cvs rdiff -u -rmksh-R41 -rHEAD mksh 
mksh-cur.patch
  .
  Remove Makefile from patchfile
  Update PatchFile-MD5
  Update Revision
 
 InfoTest: 
- TestScript: cd %f; ./test.sh -v || exit 2
+ TestScript: cd mksh; ./test.sh -v || exit 2
 


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info, 1.6, 1.7 openvpn.patch, 1.3, NONE

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28887

Modified Files:
openvpn.info 
Removed Files:
openvpn.patch 
Log Message:
Update to 2.3.0
Caution: easy-rsa is no longer part of this package (upstream moved it to a 
separate project)


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- openvpn.info7 Jul 2012 15:51:55 -   1.6
+++ openvpn.info10 Jan 2013 18:37:17 -  1.7
@@ -1,50 +1,33 @@
 Package: openvpn
-Version: 2.2.2
-Revision: 5
+Version: 2.3.0
+Revision: 1
 Description: Virtual private network daemon
 License: GPL
 Maintainer: Andreas Gockel fink-open...@unixforge.de
 Depends: lzo2-shlibs, tuntap
-BuildDepends: autoconf2.6, automaken, fink (= 0.24.12), lzo2, 
system-openssl-dev
-Suggests: gawk
+BuildDepends: autoconf2.6, automake1.11 (=1.11.1), fink (= 0.24.12), lzo2, 
system-openssl-dev
+Suggests: gawk, man2html
 Source: http://swupdate.openvpn.net/community/releases/%n-%v.tar.gz
-Source-MD5: c5181e27b7945fa6276d21873329c5c7
-PatchFile: %n.patch
-Patchfile-MD5: e4f02c8d21fc3d6294a753974702acba
+Source-MD5: 56cffde5d5320e0b1ec364d3e486aca9
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
 SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
 ConfigureParams: 
  --disable-dependency-tracking\
- --disable-pkcs11\
- --disable-selinux\
  --enable-password-save\
  --enable-x509-alt-username\
- --mandir=%i/share/man\
+ --mandir=%p/share/man\
  --with-ifconfig-path=/sbin/ifconfig\
  --with-route-path=/sbin/route
 
-CompileScript: 
- autoreconf
- automake -af
- ./configure %c
- /usr/bin/make prefix=%i
- /usr/bin/make -C plugin/auth-pam/ prefix=%i
- /usr/bin/make -C plugin/down-root/ prefix=%i
-
 InstallScript: 
 #!/bin/sh -e -x
- /usr/bin/make install prefix=%i
- /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/2.0
- chmod a-x %i/share/doc/%n/examples/easy-rsa/2.0/{vars,openssl-*.cnf}
- /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/1.0
- install -d -m 755 %i/{etc,include,lib,share{,/doc}}/%n
- install -m 755 sample-scripts/verify-cn %i/share/%n
- install -m 644 plugin/auth-pam/%n-auth-pam.so %i/lib/%n
- install -m 644 plugin/down-root/%n-down-root.so %i/lib/%n
- install -m 644 %n-plugin.h %i/include/%n/%n-plugin.h
- cp -a sample-{config-files,keys,scripts} %i/share/doc/%n/examples/
+ /usr/bin/make install DESTDIR=%d
+ install -d -m 744 %i/share/%n/tests
+ cp -a sample/sample-* %i/share/doc/%n/sample/
+ cp -a contrib %i/share/%n/
+ cp -a tests/*.sh %i/share/%n/tests/
  /bin/cat %i/share/doc/%n/org.%n.client.plist 'EOF'
 ?xml version=1.0 encoding=UTF-8?
 !DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN 
http://www.apple.com/DTDs/PropertyList-1.0.dtd;
@@ -76,10 +59,8 @@
 EOF
 
 DocFiles: 
- AUTHORS COPYRIGHT.GPL:copyright ChangeLog
- PORTS README ChangeLog.IPv6 README.ipv6 README-payload.IPv6
- plugin/auth-pam/README:README.auth-pam TODO-payload.IPv6
- plugin/down-root/README:README.down-root TODO.ipv6
+ AUTHORS COPYING COPYRIGHT.GPL:copyright ChangeLog INSTALL
+ doc/README.plugins PORTS README README.IPv6 TODO.IPv6
 
 Homepage: http://openvpn.net/
 DescDetail: 
@@ -95,6 +76,10 @@
  also supports VPNs with dynamic endpoints (DHCP or dial-up clients), tunnels
  over NAT or connection-oriented stateful firewalls (such as Linux's iptables).
  .
+ Caution:
+  easy-rsa was moved to https://github.com/OpenVPN/easy-rsa and is no longer
+  included in the %n source tarball.
+ .
  Previous Maintainer:
   = 2.0.7 ASARI Takashi as...@users.sourceforge.net
 
@@ -108,8 +93,3 @@
  After configuring your %n.conf, place the example plist into
  /Library/LaunchDaemons/ or ~/Library/LaunchDaemons/ .
 
-DescPort: 
- Includes all applicable patches from debian
- Backported some fixes from 2.3alpha1
- Include easy-rsa
-

--- openvpn.patch DELETED ---


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/editors nano-cur.info, 1.4, 1.5 nano-cur.patch, 1.2, 1.3

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30081

Modified Files:
nano-cur.info nano-cur.patch 
Log Message:
update to svn4562


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- nano-cur.info   7 Jul 2012 09:29:19 -   1.4
+++ nano-cur.info   10 Jan 2013 18:58:26 -  1.5
@@ -1,5 +1,5 @@
 Package: nano-cur
-Version: 2.3.1+svn4547
+Version: 2.3.1+svn4562
 Revision: 1
 Description: Free Pico clone with some new features (dev)
 License: GPL
@@ -9,14 +9,14 @@
 
 BuildDepends: 
  libgettext8-dev, libiconv-dev, libncursesw5 (= 5.4-20041023-1001),
- fink (= 0.24.12), gettext-tools, automake1.11
+ fink (= 0.24.12), gettext-tools, automake1.11, autoconf2.6
 
 Replaces: nano-unstable, nano-small, nano-noutf8, nano
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
 Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.1.tar.gz
 Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
 PatchFile: %n.patch
-PatchFile-MD5: c134a8b792eeaf9c57e09964d7a5d455
+PatchFile-MD5: b55addbcd0d153d1ec4387313b9296b9
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE

Index: nano-cur.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nano-cur.patch  6 Jul 2012 23:53:11 -   1.2
+++ nano-cur.patch  10 Jan 2013 18:58:26 -  1.3
@@ -1,7 +1,31 @@
 diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/ChangeLog 
nano/ChangeLog
 --- nano_2_3_1/ChangeLog   2011-12-18 22:20:12.0 +0100
-+++ nano/ChangeLog 2012-07-07 01:41:55.0 +0200
-@@ -0,0 +1,9 @@
 nano/ChangeLog 2013-01-10 19:47:33.0 +0100
+@@ -0,0 +1,33 @@
++2013-01-02 Mike Frysinger vap...@gentoo.org
++* configure.ac: Check for ncursesw5-config and base $CPPFLAGS based 
on it.
++
++2013-01-09 Fabian Groffen grobian@Savannah
++* configure.ac, src/nano.h: Make search for ncursesw more generalized.
++
++2013-01-02 David Benjamin davidben@Savannah
++* src/search.c (parse_syntax): Fix blatantly and dangerously 
incorrect  code for 
++  deleting old syntaxes.
++
++2013-01-02 Mike Frysinger vap...@gentoo.org
++* src/files.c (cwd_tab_completion): Remove unnecessary variables
++* src/search.c (search_init): Fix gcc complaints on certain versions
++
++2013-01-02 Eitan Adler li...@eitanadler.com
++* configure.ac: Remove unnecessary checks
++* src/nano.h, NEWS: Fix redundant wording
++
++2012-12-31 Chris Allegretta chr...@asty.org
++* src/*: Introduce (basic) vim-style file locks.  Does not allow vim 
to recover
++  our changes, and just lets a vim user know we're editing a file.  
Commands line -G 
++  or --locking, nanorc option locking.  New functions 
++  src/files.c:do_lockfile(), write_lockfile(), and delete_lockfile().
++
 +2012-02-05 Chris Allegretta chr...@asty.org
 +  * src/*: Fix overlapping strings highlighting each other.  new 
variables in edit_draw 
 +(slmatcharray, pbegin, paintok), new logic (with repeated setting od 
values in the 
@@ -11,53 +35,562 @@
 +even be worth doing, but someday who knows how wide a color curses 
implementation might 
 +be, and maybe we'll even start checking for it in autoconf!
 +
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/NEWS nano/NEWS
+--- nano_2_3_1/NEWS2011-12-18 22:20:12.0 +0100
 nano/NEWS  2013-01-10 19:47:33.0 +0100
+@@ -748 +748 @@
+-  Fixes are included included for justification,
++  Fixes are included for justification,
+@@ -751 +751 @@
+-  updated, and the the --quotestr and --regexp really work
++  updated, and the --quotestr and --regexp really work
+@@ -1076 +1076 @@
+-  a fix for the the nasty bug in -k mode that could create
++  a fix for the nasty bug in -k mode that could create
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/configure.ac 
nano/configure.ac
+--- nano_2_3_1/configure.ac2011-12-18 22:20:12.0 +0100
 nano/configure.ac  2013-01-10 19:47:33.0 +0100
+@@ -23 +23 @@
+-AC_INIT([GNU nano], [2.3.1], [nano-de...@gnu.org], [nano])
++AC_INIT([GNU nano], [2.3.1-svn], [nano-de...@gnu.org], [nano])
+@@ -25 +25 @@
+-AC_CANONICAL_TARGET([])
++AC_CANONICAL_HOST
+@@ -52 +51,0 @@
+-AC_HEADER_STDC
+@@ -445 +444,10 @@
+-  AC_CHECK_LIB(ncursesw, get_wch, 

[cvs] dists/10.7/stable/main/finkinfo/web netrik.info,NONE,1.1

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv32330

Added Files:
netrik.info 
Log Message:
Add netrik to = 10.7
Add debian hardening build flags


--- NEW FILE: netrik.info ---
Package: netrik
Version: 1.16.1
Revision: 2
Description: Text mode WWW browser + vi like keybindings
License: GPL
Maintainer: Andreas Gockel fink-net...@unixforge.de
Depends: bzip2, gzip, libgnugetopt-shlibs, libncursesw5-shlibs, 
readline5-shlibs, wget
BuildDepends: libgnugetopt, libncursesw5, readline5
Provides: www-browser
Source: mirror:sourceforge:%n/%n-%v.tar.gz
Source-MD5: 73e4603491d185b0580a8fad83518f42
SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
ConfigureParams: --disable-dependency-tracking
Homepage: http://netrik.sourceforge.net/
DescDetail: 
 Netrik is an advanced text mode WWW browser. Its purpose is to give access to
 as much of the Web as possible in text mode, without forsaking any comfort.
 The user interface is looking roughly like a combination of gVim and PINE.
 Some of the core ideas (not all implemented yet):
   Context-(URL-)sensitive setup
   Partially loaded pages
   Half-graphical mode
   Efficient navigation
   Key mapping and macros (similar to vi and mutt)
   Command prompt, menus and online help
 .
  Author: Olaf D. Buddenhagen AKA antrik ant...@users.sourceforge.net



--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/web nginx.info,NONE,1.1

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6895

Added Files:
nginx.info 
Log Message:
Add nginx 1.3.11


--- NEW FILE: nginx.info ---
Package: nginx
Version: 1.3.11
Revision: 1
Description: Small, powerful, scalable web/proxy server
License: BSD
Maintainer: Andreas Gockel fink-ng...@unixforge.de
Depends: daemonic, pcre-shlibs, gd2-shlibs, gd2-bin, geoip, geoip-shlibs
BuildDepends: fink (= 0.24.12), pcre, system-openssl-dev, gd2, geoip-dev
Provides: httpd
Source: http://nginx.org/download/%n-%v.tar.gz
Source-MD5: 4d29bca4d2cecfbe48e51684a345
#PatchFile: %n.patch
#PatchFile-MD5: 52d779f3555201169ce9676e58a0a9b3
#PatchScript: /usr/bin/sed 's|@PREFIX@|%p|g' %{PatchFile} | patch -p1
SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
ConfigureParams: 
 --conf-path=%p/etc/%n/%n.conf\
 --error-log-path=%p/var/log/%n/error.log\
 --http-client-body-temp-path=%p/var/lib/%n/body\
 --http-fastcgi-temp-path=%p/var/lib/%n/fastcgi\
 --http-log-path=%p/var/log/%n/access.log\
 --http-proxy-temp-path=%p/var/lib/%n/proxy\
 --http-scgi-temp-path=%p/var/lib/%n/scgi\
 --http-uwsgi-temp-path=%p/var/lib/%n/uwsgi\
 --lock-path=%p/var/lock/%n/%n.lock\
 --pid-path=%p/var/run/%n.pid\
 --with-pcre-jit\
 --with-debug\
 --with-http_addition_module\
 --with-http_dav_module\
 --with-http_flv_module\
 --with-http_geoip_module\
 --with-http_gzip_static_module\
 --with-http_image_filter_module\
 --with-http_realip_module\
 --with-http_stub_status_module\
 --with-http_ssl_module\
 --with-http_sub_module\
 --with-http_xslt_module\
 --with-ipv6\
 --with-mail\
 --with-mail_ssl_module\
 --user=www\
 --group=www\
 --with-ld-opt=-L%p/lib\
 --with-cc-opt=-I%p/include

InstallScript: 
 make install prefix=%p DESTDIR=%d
 /usr/bin/install -d -m 775 %i/var/%n/www
 /usr/bin/install -d -m 755 
%i/var/{lib/%n{,/body,/fastcgi,/proxy,/scgi,/uwsgi},lock/%n}
 /bin/mv %i/html/* %i/var/%n/www/
 /bin/rmdir %i/html
 /usr/bin/sed -i .removeme -e 's1log  logs1log  %p/var/log/%n1g' 
%i/etc/%n/%n.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1pidlogs1pid%p/var/run/1g' 
%i/etc/%n/%n.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1#user  nobody;1user  www;1g' 
%i/etc/%n/%n.conf{,.default}
 /usr/bin/sed -i .removeme -e 's1root   html;1root   %p/var/%n/www;1g' 
%i/etc/%n/%n.conf{,.default}
 /usr/bin/find %i -name \*.removeme -delete

DocFiles: CHANGES CHANGES.ru LICENSE README
PostInstScript: 
#/bin/sh -ex
 if [ $1 = configure ]; then
  /usr/sbin/chown -R www:www %p/var/log/%n %p/var/lib/%n %p/var/%n/www 
%p/var/lock/%n
  %p/bin/daemonic install net.%n.%n
 fi
 if [ $1 = upgrade ]; then
  %p/bin/daemonic update net.%n.%n
 fi
 %p/bin/daemonic enable net.%n.%n
 if [ -f %p/var/run/%n.pid ]; then
  echo Stopping %n
  killall %n 2/dev/null
  echo Starting %n
  %p/sbin/%n
fi

PreRmScript: 
#/bin/sh -ex
 if [ $1 != upgrade ]; then
  if [ -f %p/var/run/%n.pid ]; then
   echo Stopping %n
   killall %n 2/dev/null
  fi
 %p/bin/daemonic disable net.%n.%n
fi

ConfFiles: 
 %p/etc/%n/fastcgi_params %p/etc/%n/fastcgi_params.default %p/etc/%n/koi-utf
 %p/etc/%n/koi-win %p/etc/%n/mime.types %p/etc/%n/mime.types.default
 %p/etc/%n/%n.conf %p/etc/%n/%n.conf.default %p/etc/%n/win-utf

DaemonicName: net.%n.%n
DaemonicFile: 
service
  descriptionNginx web server/description
  messageNginx %v/message
 
daemon name=net.%n.%n
executable background=yes%p/sbin/%n/executable
configfile%p/etc/%n/%n.conf/configfile
pidfile%p/var/run/%n.pid/pidfile
/daemon
/service

Homepage: http://nginx.org/
DescDetail: 
 Nginx (engine X) is a high-performance web and reverse proxy server
 created by Igor Sysoev. It can be used both as a standalone web server
 and as a proxy to reduce the load on back-end HTTP or mail servers.
 .
 This package provides a version of nginx with the complete set of
 standard modules included (but omitting some of those included in
 nginx-extra).
 .
 STANDARD HTTP MODULES: Core, Access, Auth Basic, Auto Index, Browser,
 Charset, Empty GIF, FastCGI, Geo, Gzip, Headers, Index, Limit Requests,
 Limit Zone, Log, Map, Memcached, Proxy, Referer, Rewrite, SCGI,
 Split Clients, SSI, Upstream, User ID, UWSGI.
 .
 OPTIONAL HTTP MODULES: Addition, Debug, GeoIP, Gzip Precompression,
 HTTP Sub, Image Filter, IPv6, Real IP, SSL, Stub Status, Substitution,
 WebDAV, XSLT.
 .
 MAIL MODULES: Mail Core, IMAP, POP3, SMTP, SSL.
 .
 THIRD PARTY MODULES: Auth PAM, DAV Ext, Echo, Upstream Fair Queue.

InfoTest: 
 TestScript: echo Nothing to test here

[cvs] dists/10.7/stable/main/finkinfo/web nginx.info,1.1,1.2

2013-01-10 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7109

Modified Files:
nginx.info 
Log Message:
Oops... we don't have any third party modules...


Index: nginx.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/web/nginx.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nginx.info  10 Jan 2013 21:17:57 -  1.1
+++ nginx.info  10 Jan 2013 21:20:36 -  1.2
@@ -9,9 +9,6 @@
 Provides: httpd
 Source: http://nginx.org/download/%n-%v.tar.gz
 Source-MD5: 4d29bca4d2cecfbe48e51684a345
-#PatchFile: %n.patch
-#PatchFile-MD5: 52d779f3555201169ce9676e58a0a9b3
-#PatchScript: /usr/bin/sed 's|@PREFIX@|%p|g' %{PatchFile} | patch -p1
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
@@ -126,8 +123,6 @@
  WebDAV, XSLT.
  .
  MAIL MODULES: Mail Core, IMAP, POP3, SMTP, SSL.
- .
- THIRD PARTY MODULES: Auth PAM, DAV Ext, Echo, Upstream Fair Queue.
 
 InfoTest: 
  TestScript: echo Nothing to test here


--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web .cvsignore,1.10,1.11

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory vz-cvs-3.sog:/tmp/cvs-serv13592

Modified Files:
.cvsignore 
Log Message:
Ignore .htaccess


Index: .cvsignore
===
RCS file: /cvsroot/fink/web/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- .cvsignore  27 Nov 2010 23:56:40 -  1.10
+++ .cvsignore  11 Nov 2012 14:21:33 -  1.11
@@ -4,3 +4,4 @@
 pws
 XML
 *.html
+.htaccess


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web about.de.php, 1.9, 1.10 about.en.php, 1.1, 1.2 about.es.php, 1.4, 1.5 about.it.php, 1.4, 1.5 about.ja.php, 1.3, 1.4 about.php, 1.6, 1.7 about.pt.php, 1.2, 1.3 about.ru.php, 1.2, 1.3 about.zh

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory vz-cvs-3.sog:/tmp/cvs-serv16302

Modified Files:
about.de.php about.en.php about.es.php about.it.php 
about.ja.php about.php about.pt.php about.ru.php about.zh.php 
download.php index.de.php index.es.php index.php 
Log Message:
Pending local changes...


Index: index.php
===
RCS file: /cvsroot/fink/web/index.php,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -d -r1.96 -r1.97
--- index.php   1 Mar 2004 23:31:04 -   1.96
+++ index.php   11 Nov 2012 14:54:25 -  1.97
@@ -1 +1 @@
-? include_once phpLang.inc.php; ?
+?php require_once phpLang.inc.php;

Index: index.de.php
===
RCS file: /cvsroot/fink/web/index.de.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- index.de.php19 Apr 2012 21:28:24 -  1.27
+++ index.de.php11 Nov 2012 14:54:25 -  1.28
@@ -1,14 +1,14 @@
-?
-$title = Home;
+?php
+$title  = Home;
 $cvs_author = '$Author$';
-$cvs_date = '$Date$';
-$is_home = 1;
+$cvs_date   = '$Date$';
+$is_home= 1;
 
 $metatags = 'meta name=description content=Fink, eine Distribution von 
Unix Software für den Mac OS X und Darwin
 meta name=keywords content=Mac OS X, Darwin, GNU, Unix, GNOME, KDE, 
software, distribution, Fink
 ';
 
-include dirname(__FILE__) . /header.inc;
+require dirname(__FILE__) . /header.inc;
 ?
 
 
@@ -30,13 +30,13 @@
 table border=0 cellpadding=0 cellspacing=0 width=100%
 tr valign=toptd width=50%
 
-h1a href=? print $rdf_file; ? title=Abonnieren Sie unseren feed, 
Fink-Projekt News rel=alternate type=application/rss+xmlimg 
src=img/feed-icon16x16.png alt= style=border:0/a
+h1a href=?php print $rdf_file; ? title=Abonnieren Sie unseren feed, 
Fink-Projekt News rel=alternate type=application/rss+xmlimg 
src=img/feed-icon16x16.png alt= style=border:0/a
 nbsp;News/h1
-?
+?php
 // Include news items
-include dirname(__FILE__) . /news/news.de.inc;
+require dirname(__FILE__) . /news/news.de.inc;
 ?
-div align=righta href=? print $root; 
?news/index.php?phpLang=deÄltere News.../a/div
+div align=righta href=?php print $root; 
?news/index.php?phpLang=deÄltere News.../a/div
 
 
 /tdtdnbsp;nbsp;nbsp;/tdtd width=50%
@@ -44,13 +44,13 @@
 h1a href=http://feeds2.feedburner.com/FinkProjectNews-stable; title=Fink 
Paket Aktualisierungen (Stable) rel=alternate 
type=application/rss+xmlimg src=img/feed-icon16x16.pngalt= 
style=border:0/a
 nbsp;Aktuelle Paket-Updates/h1
 
-?  include package-updates.inc ?
+?php  require package-updates.inc ?
 
 a href=package-updates.phpmehr.../a
 /trtr valign=toptd width=50%
 h1Status/h1
-? 
-include dirname(__FILE__) . /fink_version.inc;
+?php 
+require dirname(__FILE__) . /fink_version.inc;
 ?
 
 p
@@ -147,6 +147,5 @@
 script type=text/javascript language=JavaScript 
src=http://db3.net-filter.com/script/13500.js;/script
 noscriptimg 
src=http://db3.net-filter.com/db.php?id=13500amp;page=unknown; 
alt=/noscript
 
-?
-include dirname(__FILE__) . /footer.inc;
-?
+?php
+require dirname(__FILE__) . /footer.inc;

Index: about.ru.php
===
RCS file: /cvsroot/fink/web/about.ru.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- about.ru.php16 Jan 2005 09:32:59 -  1.2
+++ about.ru.php11 Nov 2012 14:54:25 -  1.3
@@ -1,93 +1,91 @@
-?

-$title = About;

-$cvs_author = '$Author$';

-$cvs_date = '$Date$';

-

-include header.inc;

-?

-

-h1Более подробная информация о Fink/h1

-

-h2Что такое Fink?/h2

-

-p

-Проект Fink нацелен на перенос всего мира ПО 
Unix

-a href=http://www.opensource.org/;с открытым исходным 
кодом/a в

-a href=http://www.opensource.apple.com/;Darwin/a и

-a href=http://www.apple.com/macosx/;Mac OS X/a.

-Таким образом, мы преследуем две основные 
цели. Первая цель: модификация 
существующего программного обеспечения с 
открытым исходным кодом для 
компилирования и работы в Mac OS X.

-(Этот процесс называется  переносом или 
портингом.)

-Вторая цель: обеспечение доступа обычным 
пользователям в виде связной удобной 
дистрибуции результатов, соответствующей 
тому, к чему привыкли пользователи Linux.

-(Этот процесс называется пакетированием.)

-Проект предлагает предварительные 
бинарные пакеты, а также полностью 
автоматизированную 

[cvs] pdb/solr/etc jetty.xml,1.6,1.7

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/pdb/solr/etc
In directory vz-cvs-3.sog:/tmp/cvs-serv17790/pdb/solr/etc

Modified Files:
jetty.xml 
Log Message:
cleanup


Index: jetty.xml
===
RCS file: /cvsroot/fink/pdb/solr/etc/jetty.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- jetty.xml   20 Jul 2011 18:07:51 -  1.6
+++ jetty.xml   11 Nov 2012 14:59:55 -  1.7
@@ -48,7 +48,7 @@
 !-- Use this connector for many frequently idle connections
  and for threadless continuations.
 --
-!--
+  !--
 Call name=addConnector
   Arg
   New class=org.mortbay.jetty.nio.SelectChannelConnector
@@ -63,7 +63,7 @@
   /New
   /Arg
 /Call
---
+  --
 
 !-- This connector is currently being used for Solr because it
   showed better performance than nio.SelectChannelConnector


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] pdb create-finkdb.pl,1.45,1.46

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/pdb
In directory vz-cvs-3.sog:/tmp/cvs-serv18042/pdb

Modified Files:
create-finkdb.pl 
Log Message:
use cvs with -z3 


Index: create-finkdb.pl
===
RCS file: /cvsroot/fink/pdb/create-finkdb.pl,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- create-finkdb.pl9 May 2012 16:32:37 -   1.45
+++ create-finkdb.pl11 Nov 2012 15:02:20 -  1.46
@@ -344,7 +344,7 @@
 
my @command = (
'cvs',
-   '-q',
+   '-qz3',
'-d', 
':pserver:anonym...@fink.cvs.sourceforge.net:/cvsroot/fink',
'checkout',
'-PA',
@@ -358,7 +358,7 @@
chomp(my $repo = read_file($checkoutroot . 
'/dists/CVS/Repository', binmode = ':utf8'));
if ($repo eq $release-{'distribution'}-{'rcspath'})
{
-   @command = ( 'cvs', '-q', 'update', '-Pd', '-r', $tag );
+   @command = ( 'cvs', '-qz3', 'update', '-Pd', '-r', $tag 
);
$workingdir = $checkoutroot . '/dists';
} else {
rmtree($checkoutroot . '/dists');


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/xml/usage usage.es.xml,1.2,1.3 usage.xml,1.15,1.16

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/usage
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/usage

Modified Files:
usage.es.xml usage.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: usage.es.xml
===
RCS file: /cvsroot/fink/web/xml/usage/usage.es.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- usage.es.xml16 Sep 2006 23:30:44 -  1.2
+++ usage.es.xml11 Nov 2012 15:20:17 -  1.3
@@ -148,10 +148,10 @@
   titlePreguntas adiccionales/title

 

   pSi sus preguntas no han sido contestadas por este documento, lea el 
FAQ que se puede encontrar en el website de Fink: 

-  link 
url=http://www.finkproject.org/faq/;http://www.finkproject.org/faq//link

+  link url=/faq//faq//link

 

Si el FAQ no le contesto su pregunta, subscríbase ala lista de correo 
de Fink. fink-users mailing list via 

-  link 
url=http://www.finkproject.org/lists/fink-users.php;http://www.finkproject.org/lists/fink-users.php/link

+  link url=/lists/fink-users.php/lists/fink-users.php/link

 

   pregunte ahí./p

/section


Index: usage.xml
===
RCS file: /cvsroot/fink/web/xml/usage/usage.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- usage.xml   16 Sep 2006 23:30:44 -  1.15
+++ usage.xml   11 Nov 2012 15:20:17 -  1.16
@@ -184,10 +184,10 @@
 p
 If your questions are not answered by this document, read the FAQ at
 the Fink website:
-link 
url=http://www.finkproject.org/faq/;http://www.finkproject.org/faq//link.
+link url=/faq//faq//link.
 If that still doesn't answer your questions, subscribe to the
 fink-users mailing list via link
-url=http://www.finkproject.org/lists/fink-users.php;http://www.finkproject.org/lists/fink-users.php/link
+url=/lists/fink-users.php/lists/fink-users.php/link
 and ask there.
 /p
 /section


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] web/xml/porting porting.en.xml, 1.8, 1.9 porting.fr.xml, 1.13, 1.14 porting.ja.xml, 1.9, 1.10 porting.zh.xml, 1.7, 1.8

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/porting
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/porting

Modified Files:
porting.en.xml porting.fr.xml porting.ja.xml porting.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: porting.fr.xml
===
RCS file: /cvsroot/fink/web/xml/porting/porting.fr.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- porting.fr.xml  23 Feb 2007 22:04:55 -  1.13
+++ porting.fr.xml  11 Nov 2012 15:20:16 -  1.14
@@ -100,8 +100,8 @@
 pNote subsidiaire : la librairie libltdl, incluse dans toutes les versions 
de libtool, ne fonctionne sur Darwin que si dlcompat est installé. Elle est 
incluse dans Mac OS X à partir de la version 10.3. Pour les versions 
antérieures, on peut installer la famille de paquets quot;dlcompatquot;/p
 /section
 section name=patch-135titleRustine 1.3.5/title
-pSi vous construisez vous-même la version 1.3.5, vous devrez appliquer 
cette link 
url=http://www.finkproject.org/files/libtool-1.3.5-darwin.patch;rustine/link
 em[mise à jour du 09/06/2002]/em au source de libtool 1.3.5, puis 
supprimer les fichiers filenameltconfig/filename et 
filenameltmain.sh/filename. (Ils seront recréés à partir des fichiers 
.in adéquats lorsque vous lancerez configure et make). Ceci est fait 
automatiquement, d'ailleurs, dans le paquet actuel libtool 1.3.5 de Fink./p
-pMais ce n'est que la moitié du travail - chaque paquet utilisant libtool 
contient ses propres copies de filenameltconfig/filename et 
filenameltmain.sh/filename. Si bien que vous devez les remplacer dans 
chaque paquet que vous voulez construire en tant que librairie partagée. Notez 
que vous devez le faire avant de lancer le script configure. Vous pouvez 
récupérer les deux fichiers ici : link 
url=http://www.finkproject.org/files/ltconfig;ltconfig/link (98 ko) et 
link url=http://www.finkproject.org/files/ltmain.sh;ltmain.sh/link (110 
ko) em[tous deux mis à jour au 09/06/2002]/em./p
+pSi vous construisez vous-même la version 1.3.5, vous devrez appliquer 
cette link url=/files/libtool-1.3.5-darwin.patchrustine/link em[mise à 
jour du 09/06/2002]/em au source de libtool 1.3.5, puis supprimer les 
fichiers filenameltconfig/filename et filenameltmain.sh/filename. (Ils 
seront recréés à partir des fichiers .in adéquats lorsque vous lancerez 
configure et make). Ceci est fait automatiquement, d'ailleurs, dans le paquet 
actuel libtool 1.3.5 de Fink./p
+pMais ce n'est que la moitié du travail - chaque paquet utilisant libtool 
contient ses propres copies de filenameltconfig/filename et 
filenameltmain.sh/filename. Si bien que vous devez les remplacer dans 
chaque paquet que vous voulez construire en tant que librairie partagée. Notez 
que vous devez le faire avant de lancer le script configure. Vous pouvez 
récupérer les deux fichiers ici : link url=/files/ltconfigltconfig/link 
(98 ko) et link url=/files/ltmain.shltmain.sh/link (110 ko) em[tous 
deux mis à jour au 09/06/2002]/em./p
 /section
 section name=fixing-14xtitleAdaptation de la version 1.4.x/title
 pIl y a au moins trois versions différentes de libtool 1.4.x en usage à 
l'heure actuelle (1.4.1, 1.4.2, ainsi que des versions de développement plus 
récentes). Elles posent toutes problème avec Darwin, cependant les 
modifications à effectuer diffèrent selon la version. Le paquet quot;libtool 
1.4quot; fourni via Fink possèdent déjà toutes les rustines nécessaires. 
Cependant, il vous faudra encore modifier vous-même les fichiers 
filenameltmain.sh/filename et filenameconfig/link (110 ko) em[tous 
deux mis à jour au 09/06/2002]/em./pem[tous deux mis à jour au 
09/06/2002]/em./p+«i+€*S¡ÿððªi+¿*S¡ÿ°*S¡ÿ¨*S¡ÿÌi+Œp˜ð*S¡ÿóøªi+€¬i+à!S¡ÿ°
 S¡ÿë
«i+GHIJKMNOP€*S¡ÿð*S¡ÿH%~j+€#S¡ÿñªi+«i+€*S¡ÿ0Ÿ+k+óøªi+°Çj+ Y[j++k+ؔ+k+¨™+k+€¬i+H%~j+€#S¡ÿÀ!S¡ÿë
«i+8%~j+€#S¡ÿð!S¡ÿë
«i+(%~j+€#S¡ÿ S¡ÿë
«i+%~j+€#S¡ÿPS¡ÿë
«i+  
¨ž+k+óøªi+¨™+k+ÐS¡ÿŠ¨[j+æ÷ªi+ؔ+k+ðS¡ÿy¨[j+æ÷ªi++k+
 
#S¡ÿZ¨[j+æ÷ªi+ØT[j+°Çj+ Y[j++k+Ø´Çj+ؔ+k+¨™+k+€¬i+
Ìi+-'j+ð*S¡ÿpëZj+Ð$S¡ÿ #S¡ÿë
«i+5678:=?@BD€*S¡ÿð*S¡ÿà-$j+ð*S¡ÿóøªi+èÌi+P#S¡ÿ-'j+æ÷ªi+èÌi+Õ_@fÆS
 Qöl±íÁCói+ð*S¡ÿà-$j+à%S¡ÿ°$S¡ÿë
«i+u]ÞÓ  
4Q 

[cvs] web/xml/packaging packaging.en.xml, 1.124, 1.125 packaging.fr.xml, 1.79, 1.80 packaging.ja.xml, 1.48, 1.49 packaging.zh.xml, 1.37, 1.38

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/packaging
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/packaging

Modified Files:
packaging.en.xml packaging.fr.xml packaging.ja.xml 
packaging.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: packaging.fr.xml
===
RCS file: /cvsroot/fink/web/xml/packaging/packaging.fr.xml,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- packaging.fr.xml27 Jan 2012 20:01:22 -  1.79
+++ packaging.fr.xml11 Nov 2012 15:20:16 -  1.80
@@ -1094,7 +1094,7 @@
 /itemd/item
 itemitemtUpdateLibtool/itemt
 itemd
-pValeur booléenne. Si elle est vraie (true), les fichiers ltconfig et 
ltmain.sh présents dans le répertoire de compilation sont remplacés par des 
versions reconnaissant Darwin. Ce remplacement se produit lors de la phase 
d'application des rustines avant que le script PatchScript soit exécuté. 
emN'utilisez/em ce champ quand cas d'absolue nécessité. Certains paquets 
ne fonctionnent plus lorsqu'on modifie la version des scripts libtool. Voir la 
link url=http://www.finkproject.org/doc/porting/libtool.php;page 
libtool/link pour de plus amples informations./p
+pValeur booléenne. Si elle est vraie (true), les fichiers ltconfig et 
ltmain.sh présents dans le répertoire de compilation sont remplacés par des 
versions reconnaissant Darwin. Ce remplacement se produit lors de la phase 
d'application des rustines avant que le script PatchScript soit exécuté. 
emN'utilisez/em ce champ quand cas d'absolue nécessité. Certains paquets 
ne fonctionnent plus lorsqu'on modifie la version des scripts libtool. Voir la 
link url=/doc/porting/libtool.phppage libtool/link pour de plus amples 
informations./p
 /itemd/item
 itemitemtUpdateLibtoolInDirs/itemt
 itemd

Index: packaging.en.xml
===
RCS file: /cvsroot/fink/web/xml/packaging/packaging.en.xml,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -d -r1.124 -r1.125
--- packaging.en.xml14 Apr 2012 19:23:12 -  1.124
+++ packaging.en.xml11 Nov 2012 15:20:16 -  1.125
@@ -2588,7 +2588,7 @@
 is run. emOnly/em use this when you know that the package needs
 it. Some packages can be broken by overwriting the libtool scripts
 with mismatching versions. See the link
-url=http://www.finkproject.org/doc/porting/libtool.php;libtool
+url=/doc/porting/libtool.phplibtool
 page/link for further information.
 /p
 /itemd/item

Index: packaging.zh.xml
===
RCS file: /cvsroot/fink/web/xml/packaging/packaging.zh.xml,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- packaging.zh.xml27 Jan 2012 20:01:22 -  1.37
+++ packaging.zh.xml11 Nov 2012 15:20:16 -  1.38
@@ -2129,7 +2129,7 @@
 em仅仅/em在你肯定需要软件包需要它的时候才这样做。
 有些软件包会因为替换不正确版本的 libtool 脚本而被破坏。
 查看link
-url=http://www.finkproject.org/doc/porting/libtool.php;libtool
+url=/doc/porting/libtool.phplibtool
 网页/link获取更进一步的信息。
 /p
 /itemd/item

Index: packaging.ja.xml
===
RCS file: /cvsroot/fink/web/xml/packaging/packaging.ja.xml,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- packaging.ja.xml27 Jan 2012 20:01:22 -  1.48
+++ packaging.ja.xml11 Nov 2012 15:20:16 -  1.49
@@ -2429,7 +2429,7 @@

これが必要だと分かっているときemのみ/em使うこと.
libtool 
関連のスクリプトをバージョンの合わないものに取り換えると壊れるパッケージもあrimasu
.
-   
詳細についてはlink 
url=http://www.finkproject.org/doc/porting/libtool.php;libtool 
のページ/linkを参照.
+   
詳細についてはlink url=/doc/porting/libtool.phplibtool 
のページ/linkを参照.
/p
/itemd
/item


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] web/xml/quick-start-pkg quick-start-pkg.en.xml, 1.11, 1.12 quick-start-pkg.fr.xml, 1.10, 1.11

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/quick-start-pkg
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/quick-start-pkg

Modified Files:
quick-start-pkg.en.xml quick-start-pkg.fr.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: quick-start-pkg.fr.xml
===
RCS file: /cvsroot/fink/web/xml/quick-start-pkg/quick-start-pkg.fr.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- quick-start-pkg.fr.xml  23 Feb 2007 22:04:56 -  1.10
+++ quick-start-pkg.fr.xml  11 Nov 2012 15:20:17 -  1.11
@@ -7,7 +7,7 @@
 cvsid$Id$/cvsid
 
 preface
-pCe document est fait pour les personnes qui souhaitent créer un paquet 
pour codeFink/code. Il vient en complément du link 
url=http://www.finkproject.org/doc/packaging/index.php;Guide de construction 
de paquets/link, plus détaillé./p
+pCe document est fait pour les personnes qui souhaitent créer un paquet 
pour codeFink/code. Il vient en complément du link 
url=/doc/packaging/index.phpGuide de construction de paquets/link, plus 
détaillé./p
 pNous allons vous expliquer le processus de création d'un paquet pour Fink.
 !--  The second example is not ready yet... --
 !-- First we explain the general procedure. Then we show the creation of two 
example Fink --
@@ -28,7 +28,7 @@
 pvous devrez alors saisir codeunecommandequelconque/code dans 
Terminal.app ou dans tout autre terminal sur votre Mac./p
 pVous devez d'abord assimiler quelques concepts de base sur la création de 
paquets pour Fink. Nous vous suggérons :/p
 ul
-lide lire link 
url=http://www.finkproject.org/doc/UsingFink.pdf;Utilisation de Fink : un 
guide pour le développeur/link (fichier pdf 2MB) - diapositives d'une 
présentation lors de la link 
url=http://conferences.oreillynet.com/macosx2002/;Conférence O'Reilly Mac OS 
X/link.
+lide lire link url=/doc/UsingFink.pdfUtilisation de Fink : un guide pour 
le développeur/link (fichier pdf 2MB) - diapositives d'une présentation 
lors de la link 
url=http://conferences.oreillynet.com/macosx2002/;Conférence O'Reilly Mac OS 
X/link.
 /li
 li
 !--  The second example is not ready yet... --
@@ -38,7 +38,7 @@
 de lire et de tenter de comprendre l'xref chapter=example 
section=basicsexemple donné ici/xref./li
 lid'étudier d'autres paquets situés dans le répertoire 
filename/sw/fink/dists/unstable/main/finkinfo//filename ou dans le link 
url=http://fink.cvs.sourceforge.net/fink/dists/;répertoire central CVS en 
ligne/link et de prendre un (ou plusieurs) fichier(s) info comme point de 
départ./li
 lide rechercher dans le link 
url=http://sourceforge.net/tracker/?atid=414256amp;group_id=17203;Traqueur 
de soumissions de paquets/link si quelqu'un a déjà essayé de construire le 
même paquet ou dans le link 
url=http://sourceforge.net/tracker/?atid=371315amp;group_id=17203;Traqueur 
de demandes de paquets/link s'il existe déjà une requête pour ce paquet. 
Vous y trouverez une mine de renseignements./li
-lide feuilleter le link 
url=http://www.finkproject.org/doc/packaging/index.php;Guide de création de 
paquets/link si vous souhaitez de plus amples informations sur un sujet 
particulier./li
+lide feuilleter le link url=/doc/packaging/index.phpGuide de création 
de paquets/link si vous souhaitez de plus amples informations sur un sujet 
particulier./li
 /ul
 /section
 section name=MaketitleCréation d'un paquet/title
@@ -56,15 +56,15 @@
 codeblock
 finkdev% fink list nomdupaquet
 /codeblock
-pS'il n'apparaît pas, vous devez modifier le link 
url=http://www.finkproject.org/doc/users-guide/conf.php#optional;fichier de 
configuration de fink/link, de sorte que l'arborescence locale soit prise en 
compte./p
+pS'il n'apparaît pas, vous devez modifier le link 
url=/doc/users-guide/conf.php#optionalfichier de configuration de 
fink/link, de sorte que l'arborescence locale soit prise en compte./p
 pVous devrez peut-être réindexer les paquets en exécutant :/p
 codeblock
 finkdev% fink index
 /codeblock
-pSi vous souhaitez de plus amples informations, lisez le link 
url=http://www.finkproject.org/doc/packaging/index.php;Guide de création de 
paquets/link ou utilisez l'une ou l'autre des différentes link 
url=http://www.finkproject.org/help/index.php;sources d'aide/link. Vous 
devez aussi vous abonner à la liste de diffusion link 
url=http://www.finkproject.org/lists/index.php;fink-devel/link./p
+pSi vous souhaitez de plus amples informations, lisez le link 
url=/doc/packaging/index.phpGuide de création de paquets/link ou utilisez 
l'une ou l'autre des différentes link url=/help/index.phpsources 
d'aide/link. Vous devez aussi vous abonner à la liste de diffusion link 
url=/lists/index.phpfink-devel/link./p
 /section
 section name=ValidatetitleValidation d'un paquet/title
-pPendant le processus de validation de votre paquet, vous devez régler le 
niveau de verbosité de codefink/code à la plus 

[cvs] web/xml/x11 x11.en.xml, 1.22, 1.23 x11.es.xml, 1.5, 1.6 x11.fr.xml, 1.26, 1.27 x11.ja.xml, 1.15, 1.16 x11.pt.xml, 1.1, 1.2 x11.ru.xml, 1.4, 1.5 x11.zh.xml, 1.10, 1.11

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/x11
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/x11

Modified Files:
x11.en.xml x11.es.xml x11.fr.xml x11.ja.xml x11.pt.xml 
x11.ru.xml x11.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: x11.pt.xml
===
RCS file: /cvsroot/fink/web/xml/x11/x11.pt.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- x11.pt.xml  15 Mar 2009 00:37:07 -  1.1
+++ x11.pt.xml  11 Nov 2012 15:20:18 -  1.2
@@ -179,7 +179,7 @@
   url=http://pdb.finkproject.org/pdb/section.php/gnome;aplicativos
   GNOME/link que podem ser instalados e executados sem rodar o GNOME em
   si. Infelizmente, ainda não se chegou ao mesmo ponto em relação aos 
link
-  url=http://www.finkproject.org/faq/usage-fink.php#kde;aplicativos
+  url=/faq/usage-fink.php#kdeaplicativos
   KDE/link./p
 /section
   /chapter
@@ -361,7 +361,7 @@
 
   pPara usar os binários da Apple, você precisa assegurar-se de que o
   pacote emX11 User/em esteja instalado, e você deve link
-  
url=http://www.finkproject.org/doc/users-guide/upgrade.php;atualizar/link
+  url=/doc/users-guide/upgrade.phpatualizar/link
   o Fink./p
 
 !-- Obsolete
@@ -841,7 +841,7 @@
   recentes com o XFree86 4.4 ou mais recentes ou o X.org./p
 
   pPara instalar este pacote, você precisa habilitar a link
-  url=http://www.finkproject.org/faq/usage-fink.php#unstable;árvore
+  url=/faq/usage-fink.php#unstableárvore
   unstable/link e ter o arquivo filenameX11User.pkg/filename
   em algum lugar dentro de filename/Users/filename ou
   filename/Volumes/filename. O filenameX11.app/filename será

Index: x11.es.xml
===
RCS file: /cvsroot/fink/web/xml/x11/x11.es.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- x11.es.xml  15 Aug 2007 21:57:04 -  1.5
+++ x11.es.xml  11 Nov 2012 15:20:18 -  1.6
@@ -175,7 +175,7 @@
 /link
 disponibles para ser instaladas y ejecutadas sin instalar GNOME.  
 Desafortunadamente, el mismo 
-link url=http://www.finkproject.org/faq/usage-fink.php#kde;
+link url=/faq/usage-fink.php#kde
 progreso no ha podido ser aún hecho
 /link
 con link url=http://www.kde.org/;aplicaciones KDE./link
@@ -324,7 +324,7 @@
   p
 Al usar los binarios de Apple, necesitas asegurarse que el paquete
 emX11 User/em está instalado y debes 
-link 
url=http://www.finkproject.org/doc/users-guide/upgrade.php;actualizar/link
+link url=/doc/users-guide/upgrade.phpactualizar/link
 Fink./p
   pBajo codefink-0.16.2/code es necesario instalar el paquete 
 emX11 SDK/em también.  Después de hacer esto, Fink puede crear

Index: x11.ja.xml
===
RCS file: /cvsroot/fink/web/xml/x11/x11.ja.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- x11.ja.xml  15 Aug 2007 21:57:05 -  1.15
+++ x11.ja.xml  11 Nov 2012 15:20:18 -  1.16
@@ -146,7 +146,7 @@
 
多くのアプリケーションは特定のデスクトップに統合された形で開発されています。
 たいてい、これはデスクトップ環境用のライブラリ 
(と低レベルのライブラリ) 
をインストールすることで、そのアプリケーションの機能を損なうことなく使うことができます。
 たとえば、いまでも増加中の link 
url=http://pdb.finkproject.org/pdb/section.php/gnome; 
GNOME’インストールすることで、そのアプリケーションの機能を損なうことなく使うことができます。#4ÿ€0‚€+°#4ÿ€#4ÿë=C+6
 
èè!è!0#4ÿ #4ÿxÔ_€+°#4ÿ!C+C+0#4ÿð
 
C+o#4ÿÀÏÀ+ó(C+ÀÀ+ØÄÀ+¨ÉÀ+€JD+xÔ_€+°#4ÿ€#4ÿë=C+à!à!0#4ÿ #4ÿȝ?€+#4ÿ!C+C+0#4ÿð
 
C+o#4ÿ`#4ÿX#4ÿ;d+Œp˜ #4ÿó(C+€JD+#4ÿ`#4ÿë=C+GHIJKMNOP0#4ÿ #4ÿHU€+0#4ÿ!C+C+0#4ÿ0ÏÀ+ó(C+à_€+ ‰ó+ÀÀ+ØÄÀ+¨ÉÀ+€JD+HU€+0#4ÿp#4ÿë=C+8U€+0#4ÿ #4ÿë=C+(U€+0#4ÿÐ#4ÿë=C+U€+0#4ÿ#4ÿë=C+
 
¨ÎÀ+ó(C+¨ÉÀ+€#4ÿŠØó+æ'C+ØÄÀ+ #4ÿyØó+æ'C+ÀÀ+Ð#4ÿZØó+æ'C+؄ó+à_€+ ‰ó+ÀÀ+Øä_€+ØÄÀ+¨ÉÀ+€JD+;d+

[cvs] web/xml/install install.xml,1.32,1.33

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/install
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/install

Modified Files:
install.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: install.xml
===
RCS file: /cvsroot/fink/web/xml/install/install.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- install.xml 7 Nov 2012 03:28:48 -   1.32
+++ install.xml 11 Nov 2012 15:20:15 -  1.33
@@ -11,7 +11,7 @@
 These are the installation instructions for the source distribution
 based on codefink-fink_tool_version;/code, intended for use with OS X 
v.10.5 and later./p
 p
-This document does not apply to the link 
url=http://www.finkproject.org/download/index.php;binary/link distribution.
+This document does not apply to the link 
url=/download/index.phpbinary/link distribution.
 /p
 p
 There are instructions for both first time installation and upgrading
@@ -296,9 +296,9 @@
 p
 If these instructions don't work for you, well, you'll have to take
 the time to read through the rest of this document and the link
-url=http://www.finkproject.org/faq/;online FAQ/link.
+url=/faq/online FAQ/link.
 You can also ask on the link
-url=http://www.finkproject.org/lists/fink-users.php;fink-users
+url=/lists/fink-users.phpfink-users
 mailing list/link, but expect to be pointed back at the
 documentation when your problem actually is well-documented.
 /p
@@ -483,7 +483,7 @@
 /ul
 p
 For more information on installing and running X11, refer to the
-online link url=http://www.finkproject.org/doc/x11/;X11 on Darwin
+online link url=/doc/x11/X11 on Darwin
 and Mac OS X document/link.
 /p
 /section


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/xml/cvsaccess cvs.en.xml, 1.6, 1.7 cvs.es.xml, 1.7, 1.8 cvs.fr.xml, 1.8, 1.9 cvs.ja.xml, 1.3, 1.4 cvs.pt.xml, 1.1, 1.2 cvs.ru.xml, 1.4, 1.5 cvs.zh.xml, 1.4, 1.5

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/cvsaccess
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/cvsaccess

Modified Files:
cvs.en.xml cvs.es.xml cvs.fr.xml cvs.ja.xml cvs.pt.xml 
cvs.ru.xml cvs.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: cvs.en.xml
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/cvs.en.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- cvs.en.xml  23 Feb 2007 22:04:54 -  1.6
+++ cvs.en.xml  11 Nov 2012 15:20:13 -  1.7
@@ -35,7 +35,7 @@
 includes retrieving the latest set of Package Descriptions, and updating
 a few essential core packages (among them the Fink package manager).
 /p
-pIf you are behind a firewall consult link 
url=http://www.finkproject.org/faq/usage-fink.php#proxy;FAQ 3.2/link.
+pIf you are behind a firewall consult link 
url=/faq/usage-fink.php#proxyFAQ 3.2/link.
 /p
 pAfter you have updated your package descriptions this way, you may
 want to update your packages to the latest available versions. You can

Index: cvs.ja.xml
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/cvs.ja.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cvs.ja.xml  17 Oct 2009 05:48:37 -  1.3
+++ cvs.ja.xml  11 Nov 2012 15:20:13 -  1.4
@@ -39,7 +39,7 @@
 /p
 p
 ファイアーウォールの内側にいる場合、
-link url=http://www.finkproject.org/faq/usage-fink.php#proxy;FAQ 3.2/link
+link url=/faq/usage-fink.php#proxyFAQ 3.2/link
 をご参考にしてください。
 /p
 p

Index: cvs.es.xml
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/cvs.es.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- cvs.es.xml  23 Feb 2007 22:04:54 -  1.7
+++ cvs.es.xml  11 Nov 2012 15:20:13 -  1.8
@@ -24,7 +24,7 @@
 codeblockfink selfupdate-cvs/codeblock
 pFink ejecutara todos los pasos necesarios automaticamente. Esto incluye 
conseguir las descripciones más recientes delos paquetes, actualizando los 
paquetes esenciales (entre ellos, el manejador de paquetes del Fink).
 /p
-pSi estas tras un firewall, consulta el link 
url=http://www.finkproject.org/faq/usage-fink.php#proxy;FAQ 3.2/link.
+pSi estas tras un firewall, consulta el link 
url=/faq/usage-fink.php#proxyFAQ 3.2/link.
 /p
 pDespues de que se hayan actualizado las descripciones de los paquetes 
de esta manera, puedes actualizar los paquetes a sus últimas versiones. Esto 
se realiza ejecutando el comando:
 /p

Index: cvs.pt.xml
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/cvs.pt.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cvs.pt.xml  30 Mar 2009 11:31:56 -  1.1
+++ cvs.pt.xml  11 Nov 2012 15:20:13 -  1.2
@@ -39,7 +39,7 @@
   Fink./p
 
   pCaso esteja atrás de um firewall, consulte a link
-  url=http://www.finkproject.org/faq/usage-fink.php#proxy;Pergunta frequente
+  url=/faq/usage-fink.php#proxyPergunta frequente
   3.2/link./p
 
   pApós haver atualizado suas descrições de pacotes desta forma, você 
pode

Index: cvs.zh.xml
===
RCS file: /cvsroot/fink/web/xml/cvsaccess/cvs.zh.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cvs.zh.xml  23 Feb 2007 22:04:54 -  1.4
+++ cvs.zh.xml  11 Nov 2012 15:20:13 -  1.5
@@ -30,7 +30,7 @@
 pFink 会为你执行必需的步éª00   1.5h.xml,v===, 
você podeta manera, puedes actualizar los paquetes a sus últimas versiones. 
Esto se realiza ejecutando el comando:l manejador de paquetes del 
Fink).’ˆ³‡¹*Aÿ€ Õ‡¹* 3Aÿp2Aÿ뭖†¹*6
 èè!è! 
AÿAÿxD³‡¹* 4Aÿ‘–†¹*®–†¹* 
Aÿ𐖆¹*_AÿÀ?ˆ¹*󘖆¹*0ˆ¹*Ø4ˆ¹*¨9ˆ¹*€º—†¹*xD³‡¹* 4Aÿp3Aÿ뭖†¹*à!à!
 AÿAÿÈ
“‡¹*€5Aÿ‘–†¹*®–†¹* 
Aÿ𐖆¹*_AÿPAÿHAÿ«·†¹*Œp˜Aÿ󘖆¹*€º—†¹*€5AÿP4Aÿ뭖†¹*GHIJKMNOP
 AÿAÿHÅi‡¹* 7Aÿ‘–†¹*®–†¹* 
Aÿ0?ˆ¹*󘖆¹*P³‡¹* ùF‡¹*0ˆ¹*Ø4ˆ¹*¨9ˆ¹*€º—†¹*HÅi‡¹*
 7Aÿ`5Aÿ뭖†¹*8Åi‡¹* 
7Aÿ5Aÿ뭖†¹*(Åi‡¹* 
7AÿÀ5Aÿ뭖†¹*Åi‡¹* 7Aÿð5Aÿ뭖†¹* 
 

[cvs] web/xml/multilingual multilingual.en.xml, 1.22, 1.23 multilingual.fr.xml, 1.19, 1.20 multilingual.zh.xml, 1.8, 1.9

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/multilingual
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/multilingual

Modified Files:
multilingual.en.xml multilingual.fr.xml multilingual.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: multilingual.en.xml
===
RCS file: /cvsroot/fink/web/xml/multilingual/multilingual.en.xml,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- multilingual.en.xml 28 Oct 2011 15:50:45 -  1.22
+++ multilingual.en.xml 11 Nov 2012 15:20:15 -  1.23
@@ -45,7 +45,7 @@
   pIf you wish to help out with the internationalization effort, there
   are several things that you can do:/p
   ul
-liJoin discussions on the link 
url=http://www.finkproject.org/lists/fink-i18n.php;fink-i18n
+liJoin discussions on the link url=/lists/fink-i18n.phpfink-i18n
 mailing list/link. This is where we will discuss the mechanics of
 internationalization, announcements of updates to documents will be
 made, etc./li
@@ -301,7 +301,7 @@
 possibly some other) files as well as other files matching the 
languages in the Makefile./p/li
   /ol
   pNote: If you see some misspelling or errors in the English file,
-  don't change it, but instead report it instead to the link 
url=http://www.finkproject.org/lists/fink-i18n.php;fink-i18n
+  don't change it, but instead report it instead to the link 
url=/lists/fink-i18n.phpfink-i18n
   list/link, so that the master English file is changed./p
 /section
 section name=check-work
@@ -483,7 +483,7 @@
 this you will activate emeverything/em that's been placed in
 codeweb/xml/code./li
 lilog out from web server: codeblockexit/codeblock/li
-liSee your efforts: codeblockopen 
http://www.finkproject.org//codeblock/li
+liSee your efforts: codeblockopen //codeblock/li
   /ol
 /section
   /chapter

Index: multilingual.fr.xml
===
RCS file: /cvsroot/fink/web/xml/multilingual/multilingual.fr.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- multilingual.fr.xml 28 Oct 2011 15:50:45 -  1.19
+++ multilingual.fr.xml 11 Nov 2012 15:20:15 -  1.20
@@ -40,7 +40,7 @@
 pSi vous désirez nous aider à internationaliser le site, voici ce que vous 
pouvez faire :/p
 ul
 liParticiper aux discussions sur la link
-url=http://www.finkproject.org/lists/fink-i18n.php;liste de discussion 
fink-i18n/link. C'est là que nous parlons des mécanismes 
d'internationalisation, que nous annonçons les mises à jour des documents, 
etc.../li
+url=/lists/fink-i18n.phpliste de discussion fink-i18n/link. C'est là que 
nous parlons des mécanismes d'internationalisation, que nous annonçons les 
mises à jour des documents, etc.../li
 liRéviser la traduction dans votre propre langue. Il se peut que vous 
trouviez des tournures plus élégantes que celles qui existent actuellement, 
des erreurs de traduction, etc.../li
 liDevenir traducteur vous-même. Si votre langue ne figure pas encore au 
fronton du site (ou même si elle y figure) et que vous pensez pouvoir faire 
une bonne traduction, vous pouvez vous porter volontaire pour traduire dans 
votre propre langue. pPrenez en compte, toutefois, que si vous êtes la 
première personne à traduire dans votre langue, il y a un bon nombre de 
documents à traduire au départ. Ensuite, il ne devrait y avoir que peu de 
changements./p/li
 /ul
@@ -231,7 +231,7 @@
 pPuis exécutez cr vous-même. Si votre langue ne figure pas encore au 
fronton du site (ou même si elle y figure) et que vous pensez pouvoir faire 
une bonne traduction, vous pouvez vous porter volontaire pour traduire dans 
votre propre langue. pPrenez en compte, toutefois, que si vous êtes la 
première personne à traduire dans votre langue, il y a un bon nombre de 
documents à traduire au départ. Ensuite, il ne devrait y avoir que peu de 
changements./p/li+¨yºB+€ú:B+x„VB+ð!¬eÿÀ
 
¬eÿëí9B+à!à!p+¬eÿà+¬eÿÈM6B+ЬeÿÑ9B+î9B+p+¬eÿðÐ9B+¯+¬eÿ +¬eÿ˜+¬eÿëZB+Œp˜à+¬eÿóØ9B+€ú:B+Ьeÿ !¬eÿëí9B+GHIJKMNOPp+¬eÿà+¬eÿH
B+p$¬eÿÑ9B+î9B+p+¬eÿ0ºB+óØ9B+VB+ 9êB+pºB+ØtºB+¨yºB+€ú:B+H
B+p$¬eÿ°¬eÿëí9B+8
B+p$¬eÿà¬eÿëí9B+(
B+p$¬eÿ#¬eÿëí9B+
B+p$¬eÿ@#¬eÿëí9B+   
¨~ºB+óØ9B+¨yºB+À

[cvs] web/xml/doc doc.en.xml, 1.18, 1.19 doc.es.xml, 1.13, 1.14 doc.fr.xml, 1.19, 1.20 doc.ja.xml, 1.20, 1.21 doc.pt.xml, 1.5, 1.6 doc.ru.xml, 1.7, 1.8 doc.zh.xml, 1.16, 1.17

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/doc
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/doc

Modified Files:
doc.en.xml doc.es.xml doc.fr.xml doc.ja.xml doc.pt.xml 
doc.ru.xml doc.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: doc.en.xml
===
RCS file: /cvsroot/fink/web/xml/doc/doc.en.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- doc.en.xml  23 Feb 2007 22:04:54 -  1.18
+++ doc.en.xml  11 Nov 2012 15:20:13 -  1.19
@@ -49,7 +49,7 @@
 ul
   livarlink url=security/index.php 
varurl=security/sec-policy.en.htmlSecurity Policy Manual/varlink - 
  Mandatory read for all of those who either maintain packages in Fink 
or would like to add their own./li
-  lilink url=http://www.finkproject.org/doc/UsingFink.pdf;Using Fink: 
A Developer's How To/link (2MB pdf
+  lilink url=/doc/UsingFink.pdfUsing Fink: A Developer's How 
To/link (2MB pdf
 file) - slides from a presentation at the link 
url=http://conferences.oreillynet.com/macosx2002/;O'Reilly Mac OS X 
Conference/link (also available as a
 link 
url=http://conferences.oreillynet.com/presentations/macosx02/morrison_david.ppt;PowerPoint
 file/link) /li
   livarlink url=porting/index.php 
varurl=porting/porting.en.htmlPorting Tips/varlink - notes for porting

Index: doc.fr.xml
===
RCS file: /cvsroot/fink/web/xml/doc/doc.fr.xml,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- doc.fr.xml  23 Feb 2007 22:04:54 -  1.19
+++ doc.fr.xml  11 Nov 2012 15:20:13 -  1.20
@@ -28,7 +28,7 @@
 section name=developerdoctitleDocumentation développeur/title
 ul
 livarlink url=security/index.php 
varurl=security/sec-poicy.fr.htmlCharte de sécurité/varlink - lecture 
obligatoire pour tous ceux qui sont mainteneurs de paquets dans Fink ou qui 
veulent le devenir./li
-lilink url=http://www.finkproject.org/doc/UsingFink.pdf;Utilisation de 
Fink : un guide pour le développeur/link (fichier pdf 2MB) - diapositives 
d'une présentation lors de la link 
url=http://conferences.oreillynet.com/macosx2002/;Conférence O'Reilly Mac OS 
X/link (disponible aussi sous link 
url=http://conferences.oreillynet.com/presentations/macosx02/morrison_david.ppt;format
 PowerPoint/link) /li
+lilink url=/doc/UsingFink.pdfUtilisation de Fink : un guide pour le 
développeur/link (fichier pdf 2MB) - diapositives d'une présentation lors 
de la link url=http://conferences.oreillynet.com/macosx2002/;Conférence 
O'Reilly Mac OS X/link (disponible aussi sous link 
url=http://conferences.oreillynet.com/presentations/macosx02/morrison_david.ppt;format
 PowerPoint/link) /li
 livarlink url=porting/index.php varurl=porting/porting.fr.htmlTrucs et 
astuces pour le portage/varlink - notes sur le portage d'applications Unix 
sur Darwin/li
 livarlink url=quick-start-pkg/index.php 
varurl=quick-start-pkg/quick-start-pkg.fr.htmlTutoriel 
d'empaquetage/varlink - complément au Guide de construction des paquets. 
Basé sur des exemples réels, il introduit le débutant dans le monde de la 
création de paquets./li
 livarlink url=packaging/index.php 
varurl=packaging/packaging.fr.htmlGuide de construction des 
paquets/varlink - comment créer et maintenir des paquets Fink/li

Index: doc.ru.xml
===
RCS file: /cvsroot/fink/web/xml/doc/doc.ru.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- du -d -r1.7 
-r1.8eb/xml/doc/doc.ru.xml,v=r.htmlGuide de 
construction des paquets/varlink - comment créer et maintenir des paquets 
Fink/liuets. Basé sur des exemples réels, il introduit le débutant dans 
le monde de la création de 
paquets./lil=http://conferences.oreillynet.com/presentations/macosx02/morrison_david.ppt;format
 PowerPoint/link) /liPowerPoint/link) 
/li€PÝ +êïUÿÀ/ÑÞ +óˆPÝ + 
ÑÞ +Ø$ÑÞ +¨)ÑÞ +€ªQÝ +x4mÞ +ÀàïUÿßïUÿëPÝ +à!à!@êïUÿ°êïUÿÈýLÞ + áïUÿPÝ +žPÝ +@êïUÿð€PÝ +êïUÿpêïUÿhêïUÿ›qÝ +Œp˜°êïUÿóˆPÝ +€ªQÝ + áïUÿpàïUÿëPÝ +GHIJKMNOP@êïUÿ°êïUÿHµ#Þ +@ãïUÿPÝ +žPÝ +@êïUÿ0/ÑÞ +óˆPÝ +@mÞ + éÞ +
 
ÑÞ +Ø$ÑÞ +¨)ÑÞ +€ªQÝ +Hµ#Þ +@ãïUÿ€áïUÿëPÝ +8µ#Þ +@ãïUÿ°áïUÿëPÝ +(µ#Þ +@ãïUÿàáïUÿëPÝ +µ#Þ +@ãïUÿâïUÿëPÝ +
 
¨.ÑÞ +óˆPÝ +¨)ÑÞ +ÜïUÿŠ8Þ +æ‡PÝ +Ø$ÑÞ +°âïUÿy8Þ +æ‡PÝ +
 ÑÞ +àâïUÿZ8Þ +æ‡PÝ +ØäÞ 

[cvs] web/xml/advanced advanced.en.xml, 1.5, 1.6 advanced.fr.xml, 1.5, 1.6 advanced.ja.xml, 1.2, 1.3 advanced.pt.xml, 1.2, 1.3

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/advanced
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/advanced

Modified Files:
advanced.en.xml advanced.fr.xml advanced.ja.xml 
advanced.pt.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: advanced.pt.xml
===
RCS file: /cvsroot/fink/web/xml/advanced/advanced.pt.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- advanced.pt.xml 12 Mar 2009 18:13:37 -  1.2
+++ advanced.pt.xml 11 Nov 2012 15:20:12 -  1.3
@@ -7,7 +7,7 @@
 
   preface
 pEste documento descreve tópicos avançados que não estão presentes no
-link url=http://www.finkproject.org/doc/users-guide/;Guia do
+link url=/doc/users-guide/Guia do
 usuário/link./p
   /preface
 

Index: advanced.ja.xml
===
RCS file: /cvsroot/fink/web/xml/advanced/advanced.ja.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- advanced.ja.xml 23 Feb 2007 22:04:53 -  1.2
+++ advanced.ja.xml 11 Nov 2012 15:20:12 -  1.3
@@ -7,7 +7,7 @@
   preface
 p
 この文書には、
-link 
url=http://www.finkproject.org/doc/users-guide/;ユーザーガイド/linkにない、より高度な内容が書かれています。
+link 
url=/doc/users-guide/ユーザーガイド/linkにない、より高度な内容が書かれています。
 /p
   /preface
   chapter filename=bindist

Index: advanced.fr.xml
===
RCS file: /cvsroot/fink/web/xml/advanced/advanced.fr.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- advanced.fr.xml 23 Feb 2007 22:04:53 -  1.5
+++ advanced.fr.xml 11 Nov 2012 15:20:12 -  1.6
@@ -5,7 +5,7 @@
 shorttitleNotions complexes/shorttitle
 cvsid$Id$/cvsid
 preface
-pCe document aborde quelques notions complexes qui ne se trouvent pas dans 
le link url=http://www.finkproject.org/doc/users-guide/;Guide de 
l'utilisateur/link./p
+pCe document aborde quelques notions complexes qui ne se trouvent pas dans 
le link url=/doc/users-guide/Guide de l'utilisateur/link./p
 /preface
 chapter filename=bindist
 titleMise en place d'un serveur de distribution binaire/title

Index: advanced.en.xml
===
RCS file: /cvsroot/fink/web/xml/advanced/advanced.en.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- advanced.en.xml 1 Mar 2009 02:53:48 -   1.5
+++ advanced.en.xml 11 Nov 2012 15:20:12 -  1.6
@@ -7,7 +7,7 @@
   preface
 p
 This document describes advanced topics not found in the
-link url=http://www.finkproject.org/doc/users-guide/;User's Guide/link.
+link url=/doc/users-guide/User's Guide/link.
 /p
   /preface
   chapter filename=bindist


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] web/xml/fink-readme readme.en.xml, 1.4, 1.5 readme.es.xml, 1.2, 1.3 readme.fr.xml, 1.5, 1.6 readme.ja.xml, 1.3, 1.4 readme.pt.xml, 1.1, 1.2 readme.ru.xml, 1.2, 1.3 readme.zh.xml, 1.2, 1.3

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/fink-readme
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/fink-readme

Modified Files:
readme.en.xml readme.es.xml readme.fr.xml readme.ja.xml 
readme.pt.xml readme.ru.xml readme.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: readme.pt.xml
===
RCS file: /cvsroot/fink/web/xml/fink-readme/readme.pt.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- readme.pt.xml   30 Mar 2009 11:14:21 -  1.1
+++ readme.pt.xml   11 Nov 2012 15:20:15 -  1.2
@@ -64,9 +64,9 @@
 section name=questionstitleOutras perguntas?/title
   pSe a documentação aqui incluída não responder sua pergunta, visite o 
site
   do Fink em link
-  url=http://www.finkproject.org/;http://www.finkproject.org//link e
+  url=///link e
   consulte a página de Ajuda: link
-  
url=http://www.finkproject.org/help/;http://www.finkproject.org/help//link.
+  url=/help//help//link.
   Ela indicará outros documentos que estão disponíveis e onde procurar por
   ajuda caso precise./p
 
@@ -77,10 +77,10 @@
 
 section name=uptodatetitleMantendo-se informado/title
   pO site do projeto está localizado em link
-  url=http://www.finkproject.org/;http://www.finkproject.org//link./p
+  url=///link./p
 
   pPara ser informado de novos lançamentos, vá à página link
-  
url=http://www.finkproject.org/lists/fink-announce.php;http://www.finkproject.orgt/lists/fink-announce.php/link
+  
url=/lists/fink-announce.phphttp://www.finkproject.orgt/lists/fink-announce.php/link
   e assine a lista de discussão fink-announce. Esta lista é moderada e possui
   baixo tráfego./p
 /section

Index: readme.ru.xml
===
RCS file: /cvsroot/fink/web/xml/fink-readme/readme.ru.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- readme.ru.xml   16 Sep 2006 23:17:53 -  1.2
+++ readme.ru.xml   11 Nov 2012 15:20:15 -  1.3
@@ -61,9 +61,9 @@
 titleДругие вопросы?/title

 p Если в предлагаемой документации 
нет ответа на ваш вопрос,

 перейдите с веб-сайта Fink на link

-
url=http://www.finkproject.org/;http://www.finkproject.org//link

+url=///link

 и посмотрите там страницу Help:link

-
url=http://www.finkproject.org/help/;http://www.finkproject.org/help//link.

+url=/help//help//link.

 На ней вы найдете сведения обо всей 
другой имеющейся документации и источниках

 необходимой вам поддержки./p

 p Если вы хотите внести свой вклад в 
развитие Fink,  вышеуказанная страница Help 
также

@@ -71,9 +71,9 @@
 /section

 section name=uptodate

 titleРегулярное получение 
информации/title

-p Адрес веб-сайта проекта: link 
url=http://www.finkproject.org/;http://www.finkproject.org//link./p

+p Адрес веб-сайта проекта: link 
url=///link./p

 p Для регулярного получения 
информации о новых версиях можно 
подписаться на список рассылки fink-announce на 
link

-urlя регулярного получения 
информации о новых версиях можно 
подписаться на список рассылки fink-announce на 
link
’ES›+”.Rÿ€0gS›+ ‰.Rÿpˆ.Rÿë=(R›+6
 èè!è! 
”.Rÿ”.RÿxÔDS›+ Š.Rÿ!(R›+(R›+ 
”.Rÿð 
(R›+_”.RÿÀϨS›+ó((R›+À¨S›+ØĨS›+¨É¨S›+€J)R›+xÔDS›+ Š.Rÿp‰.Rÿë=(R›+à!à!
 ”.Rÿ”.Rÿȝ$S›+€‹.Rÿ!(R›+(R›+ 
”.Rÿð 
(R›+_”.RÿP”.RÿH”.Rÿ;IR›+Œp˜”.Rÿó((R›+€J)R›+€‹.RÿPŠ.Rÿë=(R›+GHIJKMNOP
 ”.Rÿ”.RÿHUûR›+ .Rÿ!(R›+(R›+ 
”.Rÿ0ϨS›+ó((R›+àDS›+ ‰ØR›+À¨S›+ØĨS›+¨É¨S›+€J)R›+HUûR›+
 .Rÿ`‹.Rÿë=(R›+8UûR›+ 
.Rÿ‹.Rÿë=(R›+(UûR›+ 
.RÿÀ‹.Rÿë=(R›+UûR›+ .Rÿð‹.Rÿë=(R›+ 
  

[cvs] web/xml/faq faq.en.xml, 1.121, 1.122 faq.es.xml, 1.16, 1.17 faq.fr.xml, 1.82, 1.83 faq.ja.xml, 1.46, 1.47 faq.pt.xml, 1.9, 1.10 faq.ru.xml, 1.16, 1.17 faq.zh.xml, 1.33, 1.34

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/faq
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/faq

Modified Files:
faq.en.xml faq.es.xml faq.fr.xml faq.ja.xml faq.pt.xml 
faq.ru.xml faq.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: faq.en.xml
===
RCS file: /cvsroot/fink/web/xml/faq/faq.en.xml,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- faq.en.xml  10 May 2012 16:33:16 -  1.121
+++ faq.en.xml  11 Nov 2012 15:20:14 -  1.122
@@ -681,7 +681,7 @@
 type:/p
 codeblockprintenv PATH/codeblock
 pIf filename/sw/sbin/filename doesn't appear at all, then you
-need to set your environment up as per the link 
url=http://www.finkproject.org/doc/users-guide/install.php#setup;instructions/link
+need to set your environment up as per the link 
url=/doc/users-guide/install.php#setupinstructions/link
 in the Users Guide. If filename/sw/sbin/filename is there, but
 there are other directories ahead of it (e.g.
 filename/usr/local/bin/filename), then you will either want to
@@ -963,7 +963,7 @@
   answer
 pThis error occurs if you use a PowerPC installer package on an 
Intel machine.  You'll need to flush your Fink installation, e.g.:/p
 codeblocksudo rm -rf /sw/codeblock
-pand then download the disk image for Intel machines from link 
url=http://www.finkproject.org/download/index.php;the downloads 
page/link./p
+pand then download the disk image for Intel machines from link 
url=/download/index.phpthe downloads page/link./p
   /answer
 /faqentry
/chapter
@@ -1403,7 +1403,7 @@
 pI want Fink to use different options in building a package./p
   /question
   answer
-pThe first thing to do is to contact the package maintainer to 
request a variant.  It may be relatively easy to do it.  If you don't hear from 
the maintainer or see the new packages, or want to try a different option 
yourself, check out the link 
url=http://www.finkproject.org/doc/quick-start-pkg/index.php;Packaging 
Tutorial/link and link 
url=http://www.finkproject.org/doc/packaging/index.php;Packaging 
Manual/link./p
+pThe first thing to do is to contact the package maintainer to 
request a variant.  It may be relatively easy to do it.  If you don't hear from 
the maintainer or see the new packages, or want to try a different option 
yourself, check out the link url=/doc/quick-start-pkg/index.phpPackaging 
Tutorial/link and link url=/doc/packaging/index.phpPackaging 
Manual/link./p
 p
   emNote:  /emFink is deliberately set up such that all official 
binaries are identical regardless of what machine they are built on, so things 
like G5 optimization won't happen with an official package.  If you want them, 
you'll have to do it yourself./p
   /answer
@@ -1570,7 +1570,7 @@
   answer
 pIt's not bad, it just means that the program will use the default
 English messages, date formats, etc. The program will function
-normally otherwise. The Running X11 document has link 
url=http://www.finkproject.org/doc/x11/trouble.php#locale;details/link./p
+normally otherwise. The Running X11 document has link 
url=/doc/x11/trouble.php#localedetails/link./p
   /answer
 /faqentry
 faqentry name=passwd
@@ -1727,7 +1727,7 @@
   /li
 /ul
 pThere are other options, as well. There is a more extensive
-treatment i other options, as well. There is a more 
extensive/x11/trouble.php#localedetails/link./paledetails/link./p,
 so things like G5 optimization won't happen with an official package.  If you 
want them, you'll have to do it yourself./pk-start-pkg/index.phpPackaging 
Tutorial/link and link url=/doc/packaging/index.phpPackaging 
Manual/link./p/packaging/index.phpPackaging 
Manual/link./pÀÏÍðf+ó(Mïf+ÀÍðf+ØÄÍðf+¨ÉÍðf+€JNïf+xÔiðf+p2!ÿ@1!ÿë=Mïf+à!à!ð;!ÿ`!ÿȝIðf+P3!ÿ!Mïf+Mïf+ð;!ÿð
 Mïf+/!ÿ 
!ÿ!ÿ;nïf+Œp˜`!ÿó(Mïf+€JNïf+P3!ÿ
 
2!ÿë=Mïf+GHIJKMNOPð;!ÿ`!ÿHU
 
ðf+ð4!ÿ!Mïf+Mïf+ð;!ÿ0ÏÍðf+ó(Mïf+àiðf+ ‰ýïf+ÀÍðf+ØÄÍðf+¨ÉÍðf+€JNïf+HU
 ðf+ð4!ÿ03!ÿë=Mïf+8U 
ðf+ð4!ÿ`3!ÿë=Mïf+(U 
ðf+ð4!ÿ3!ÿë=Mïf+U 
ðf+ð4!ÿÀ3!ÿë=Mïf+ 
¨ÎÍðf+ó(Mïf+¨ÉÍðf+@.!ÿŠØýïf+æ'Mïf+ØÄÍðf+`4!ÿyØýïf+æ'Mïf+ÀÍðf+4!ÿZØýïf+æ'Mïf+؄ýïf+àiðf+ 

[cvs] web/xml/netiquette netiquette.en.xml, 1.4, 1.5 netiquette.es.xml, 1.2, 1.3 netiquette.fr.xml, 1.3, 1.4 netiquette.ja.xml, 1.2, 1.3 netiquette.ru.xml, 1.2, 1.3 netiquette.zh.xml, 1.2, 1.3

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml/netiquette
In directory vz-cvs-3.sog:/tmp/cvs-serv22105/netiquette

Modified Files:
netiquette.en.xml netiquette.es.xml netiquette.fr.xml 
netiquette.ja.xml netiquette.ru.xml netiquette.zh.xml 
Log Message:
Replace absolute http://www.finkproject.org/ link with a relative link


Index: netiquette.ru.xml
===
RCS file: /cvsroot/fink/web/xml/netiquette/netiquette.ru.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- netiquette.ru.xml   23 Feb 2007 22:04:55 -  1.2
+++ netiquette.ru.xml   11 Nov 2012 15:20:16 -  1.3
@@ -186,7 +186,7 @@
 pЧтобы  отказаться от подписки, 
emне надо/em отправлять сообщение списку./p

 ol

 liНадо это сделать на странице link

-
url=http://www.finkproject.org/lists/index.php;Mailing

+url=/lists/index.phpMailing

 Lists/link. pПрим.: нельзя 
использовать версию MacOSX

 Internet Explorer./p

 /li


Index: netiquette.zh.xml
===
RCS file: /cvsroot/fink/web/xml/netiquette/netiquette.zh.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- netiquette.zh.xml   23 Feb 2007 22:04:55 -  1.2
+++ netiquette.zh.xml   11 Nov 2012 15:20:16 -  1.3
@@ -132,7 +132,7 @@
   title我怎么取消订阅?/title
   p要取消订阅,em不要/em向列表发送邮件。/p
   ol
-li应该访问link 
url=http://www.finkproject.org/lists/index.php;邮件列表/link页面。
+li应该访问link 
url=/lists/index.php邮件列表/link页面。
 p注意:不要使用 Mac OS X 版本的 Internet 
Explorer。/p/li
 li选择你要取消订阅的邮件列表的链接。/li
 li找到页面底部写着:

Index: netiquette.fr.xml
===
RCS file: /cvsroot/fink/web/xml/netiquette/netiquette.fr.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- netiquette.fr.xml   23 Feb 2007 22:04:55 -  1.3
+++ netiquette.fr.xml   11 Nov 2012 15:20:16 -  1.4
@@ -109,7 +109,7 @@
   titleRésiliation d'abonnement/title
   pemN/em'envoyez pas de message sur la liste pour résilier votre 
abonnement./p
   ol
-liAllez sur la page des link 
url=http://www.finkproject.org/lists/index.php;Listes de diffusion/link.  
pNote :  n'utilisez pas la version MacOSX d'Internet Explorer./p/li
+liAllez sur la page des link url=/lists/index.phpListes de 
diffusion/link.  pNote :  n'utilisez pas la version MacOSX d'Internet 
Explorer./p/li
 liSélectionnez le lien de la liste dont vous voulez résilier 
l'abonnement./li
 liAllez au bas la page, où il est indiqué :  quoteTo change your 
subscription (set options like digest and delivery modes, get a reminder of 
your password, or unsubscribe), enter your subscription email address:/quote, 
et saisissez l'adresse email sur laquelle vous recevez le courrier Fink, puis 
cliquez sur le bouton quoteEdit Options/quote./li
 liEn haut à gauche de la page qui s'ouvrira, vous trouverez un 
champ dans lequel vous pourrez résilier votre abonnement./li

Index: netiquette.en.xml
===
RCS file: /cvsroo=ez un 
champ dans lequel vous pourrez résilier votre abonnement./lit a reminder 
of your password, or unsubscribe), enter your subscription email 
address:/quote, et saisissez l'adresse email sur laquelle vous recevez le 
courrier Fink, puis cliquez sur le bouton quoteEdit 
Options/quote./li°ÖÔÊÿ}CH+ž}CH+0àÔÊÿð€}CH+oàÔÊÿÀ/þDH+óˆ}CH+
 
þDH+Ø$þDH+¨)þDH+€ª~CH+x4šDH+°ÖÔÊÿ€ÕÔÊÿë}CH+à!à!0àÔÊÿ àÔÊÿÈýyDH+×ÔÊÿ}CH+ž}CH+0àÔÊÿð€}CH+oàÔÊÿ`àÔÊÿXàÔÊÿ›žCH+Œp˜ àÔÊÿóˆ}CH+€ª~CH+×ÔÊÿ`ÖÔÊÿë}CH+GHIJKMNOP0àÔÊÿ àÔÊÿHµPDH+0ÙÔÊÿ}CH+ž}CH+0àÔÊÿ0/þDH+óˆ}CH+@šDH+ é-DH+
 
þDH+Ø$þDH+¨)þDH+€ª~CH+HµPDH+0ÙÔÊÿp×ÔÊÿë}CH+8µPDH+0ÙÔÊÿ ×ÔÊÿë}CH+(µPDH+0ÙÔÊÿÐ×ÔÊÿë}CH+µPDH+0ÙÔÊÿØÔÊÿë}CH+
 
¨.þDH+óˆ}CH+¨)þDH+€ÒÔÊÿŠ8.DH+æ‡}CH+Ø$þDH+ ØÔÊÿy8.DH+æ‡}CH+
 þDH+ÐØÔÊÿZ8.DH+æ‡}CH+Øä-DH+@šDH+ 

[cvs] web/xml Makefile.common,1.27,1.28

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/xml
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/xml

Modified Files:
Makefile.common 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: Makefile.common
===
RCS file: /cvsroot/fink/web/xml/Makefile.common,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- Makefile.common 14 Apr 2012 19:29:12 -  1.27
+++ Makefile.common 11 Nov 2012 16:04:57 -  1.28
@@ -120,8 +120,8 @@
 
 ifdef DESTDIR
@echo Installing PHP files
-   cp $(INSTALL_FILES) $(basedir)/web/$(DESTDIR)/
-   if ls header*.inc  /dev/null; then cp header*.inc 
$(basedir)/web/$(DESTDIR)/ ; fi
+   cp -a $(INSTALL_FILES) $(basedir)/web/$(DESTDIR)/
+   if ls header*.inc  /dev/null; then cp -a header*.inc 
$(basedir)/web/$(DESTDIR)/ ; fi
 else
@echo DESTDIR not defined, can't install
 endif


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/doc/quick-start-pkg example.en.php, 1.12, 1.13 example.fr.php, 1.11, 1.12 howtostart.en.php, 1.12, 1.13 howtostart.fr.php, 1.11, 1.12 index.en.php, 1.12, 1.13 index.fr.php, 1.11, 1.12 quick-

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/quick-start-pkg
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/doc/quick-start-pkg

Modified Files:
example.en.php example.fr.php howtostart.en.php 
howtostart.fr.php index.en.php index.fr.php 
quick-start-pkg.en.html quick-start-pkg.fr.html 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: quick-start-pkg.fr.html
===
RCS file: /cvsroot/fink/web/doc/quick-start-pkg/quick-start-pkg.fr.html,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- quick-start-pkg.fr.html 26 Jan 2012 10:25:23 -  1.19
+++ quick-start-pkg.fr.html 11 Nov 2012 16:04:55 -  1.20
@@ -1,7 +1,7 @@
 !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN 
http://www.w3.org/TR/html4/loose.dtd;
 htmlheadmeta http-equiv=Content-Type content=text/html; charset=utf-8
 !--
-Generated from $Fink: quick-start-pkg.fr.xml,v 1.10 2007/02/23 22:04:56 
rangerrick Exp $
+Generated from $Fink: quick-start-pkg.fr.xml,v 1.11 2012/11/11 15:20:17 gecko2 
Exp $
 --
 titleFink Documentation - Création d'un paquet pour Fink - 
Tutoriel/title/headbody
 table width=100% cellspacing=0
@@ -14,7 +14,7 @@
 /tr
 /table
 h1 style=text-align: center;Création d'un paquet pour Fink - Tutoriel/h1
-pCe document est fait pour les personnes qui souhaitent créer un paquet 
pour tt style=white-space: nowrap;Fink/tt. Il vient en complément du a 
href=http://www.finkproject.org/doc/packaging/index.php;Guide de construction 
de paquets/a, plus détaillé./p
+pCe document est fait pour les personnes qui souhaitent créer un paquet 
pour tt style=white-space: nowrap;Fink/tt. Il vient en complément du a 
href=/doc/packaging/index.phpGuide de construction de paquets/a, plus 
détaillé./p
 pNous allons vous expliquer le processus de création d'un paquet pour Fink.
 
 
@@ -34,7 +34,7 @@
 pvous devrez alors saisir tt style=white-space: 
nowrap;unecommandequelconque/tt dans Terminal.app ou dans tout autre 
terminal sur votre Mac./p
 pVous devez d'abord assimiler quelques concepts de base sur la création de 
paquets pour Fink. Nous vous suggérons :/p
 ul
-lide lire a href=http://www.finkproject.org/doc/UsingFink.pdf;Utilisation 
de Fink : un guide pour le développeur/a (fichier pdf 2MB) - diapositives 
d'une présentation lors de la a 
href=http://conferences.oreillynet.com/macosx2002/;Conférence O'Reilly Mac 
OS X/a.
+lide lire a href=/doc/UsingFink.pdfUtilisation de Fink : un guide pour 
le développeur/a (fichier pdf 2MB) - diapositives d'une présentation lors 
de la a href=http://conferences.oreillynet.com/macosx2002/;Conférence 
O'Reilly Mac OS X/a.
 /li
 li
 
@@ -44,7 +44,7 @@
 de lire et de tenter de comprendre l'a href=#example.basicsexemple donné 
ici/a./li
 lid'étudier d'autres paquets situés dans le répertoire tt 
style=white-space: nowrap;/sw/fink/dists/unstable/main/finkinfo//tt ou 
dans le a href=http://fink.cvs.sourceforge.net/fink/dists/;répertoire 
central CVS en ligne/a et de prendre un (ou plusieurs) fichier(s) info comme 
point de départ./li
 lide rechercher dans le a 
href=http://sourceforge.net/tracker/?atid=414256amp;group_id=17203;Traqueur 
de soumissions de paquets/a si quelqu'un a déjà essayé de construire le 
même paquet ou dans le a 
href=http://sourceforge.net/tracker/?atid=371315amp;group_id=17203;Traqueur 
de demandes de paquets/a s'il existe déjà une requête pour ce paquet. Vous 
y trouverez une mine de renseignements./li
-lide feuilleter le a 
href=http://www.finkproject.org/doc/packaging/index.php;Guide de création de 
paquets/a si vous souhaitez de plus amples informations sur un sujet 
particulier./li
+lide feuilleter le a href=/doc/packaging/index.phpGuide de création de 
paquets/a si vous souhaitez de plus amples informations sur un sujet 
particulier./li
 /ul
 
 h3a name=howtostart.Make1.2 Création d'un paquet/a/h3
@@ -62,15 +62,15 @@
 pre
 finkdev% fink list nomdupaquet
 /pre
-pS'il n'apparaît pas, vous devez modifier le a 
href=http://www.finkproject.org/doc/users-guide/conf.php#optional;fichier de 
configuration de fink/a, de sorte que l'arborescence locale soit prise en 
compte./p
+pS'il n'apparaît pas, vous devez modifier le a 
href=/doc/users-guide/conf.php#optionalfichier de configuration de fink/a, 
de sorte que l'arborescence locale soit prise en compte./p
 pVous devrez peut-être réindexer les paquets en exécutant :/p
 pre
 finkdev% fink index
 /pre
-pSi vous souhaitez de plus amples informations, lisez le a 
href=http://www.finkproject.org/doc/packaging/index.php;Guide de création de 
paquets/a ou utilisez l'une ou l'autre des différentes a 
href=http://www.finkproject.org/help/index.php;sources d'aide/a. Vous devez 
aussi vous abonner à la liste de diffusion a 
href=http://www.finkproject.org/lists/index.php;fink-devel/a./p
+pSi vous souhaitez de plus amples informations, lisez le a 

[cvs] web/pdb package.php,1.83,1.84

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/pdb
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/pdb

Modified Files:
package.php 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: package.php
===
RCS file: /cvsroot/fink/web/pdb/package.php,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -d -r1.83 -r1.84
--- package.php 27 Mar 2012 14:26:13 -  1.83
+++ package.php 11 Nov 2012 16:04:56 -  1.84
@@ -318,7 +318,7 @@
it_item(Website:, 'a href='.$pobj['homepage'].' title=' . 
$pobj['name'] . ' home page'.$pobj['homepage'].'/a');
}
if ($pobj['license']) {
-   it_item(License:, 'a 
href=http://fink.sourceforge.net/doc/packaging/policy.php#licenses;'.$pobj['license'].'/a');
+   it_item(License:, 'a 
href=/doc/packaging/policy.php#licenses'.$pobj['license'].'/a');
}
if (!isset($pobj['parentname'])) $pobj['parentname'] = ;
if ($pobj['parentname']) {


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/news news.de.rdf, 1.101, 1.102 news.en.rdf, 1.201, 1.202 news.es.rdf, 1.98, 1.99 news.fr.rdf, 1.98, 1.99 news.ja.rdf, 1.107, 1.108 news.pt.rdf, 1.28, 1.29 news.rdf, 1.334, 1.335 news.zh.rdf,

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/news
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/news

Modified Files:
news.de.rdf news.en.rdf news.es.rdf news.fr.rdf news.ja.rdf 
news.pt.rdf news.rdf news.zh.rdf 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: news.pt.rdf
===
RCS file: /cvsroot/fink/web/news/news.pt.rdf,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- news.pt.rdf 25 Jul 2012 18:22:46 -  1.28
+++ news.pt.rdf 11 Nov 2012 16:04:56 -  1.29
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagept/dc:language
-dc:date2012-07-25T11:21:46-07:00/dc:date
+dc:date2012-11-11T16:15:24+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.de.rdf
===
RCS file: /cvsroot/fink/web/news/news.de.rdf,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -d -r1.101 -r1.102
--- news.de.rdf 25 Jul 2012 18:22:46 -  1.101
+++ news.de.rdf 11 Nov 2012 16:04:56 -  1.102
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagede/dc:language
-dc:date2012-07-25T11:21:46-07:00/dc:date
+dc:date2012-11-11T16:15:24+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.rdf
===
RCS file: /cvsroot/fink/web/news/news.rdf,v
retrieving revision 1.334
retrieving revision 1.335
diff -u -d -r1.334 -r1.335
--- news.rdf26 Sep 2012 01:57:15 -  1.334
+++ news.rdf11 Nov 2012 16:04:56 -  1.335
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languageen/dc:language
-dc:date2012-09-25T18:56:53-07:00/dc:date
+dc:date2012-11-11T16:15:24+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-09-25%20fink-0.34.4%20relased;
   titlefink-0.34.4 relased/title

Index: news.es.rdf
===
RCS file: /cvsroot/fink/web/news/news.es.rdf,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -d -r1.98 -r1.99
--- news.es.rdf 25 Jul 2012 18:22:46 -  1.98
+++ news.es.rdf 11 Nov 2012 16:04:56 -  1.99
@@ -5,7 +5,7 @@
 linkhttp://fink.sourceforge.net/news//link
 descriptionFink Project News/description
 dc:languagees/dc:language
-dc:date2012-07-25T11:21:46-07:00/dc:date
+dc:date2012-11-11T16:15:24+01:00/dc:date
 admin:errorReportsTo 
rdf:resource=mailto:fink-c...@lists.sourceforge.net/
 item 
rdf:about=http://fink.sourceforge.net/news/#2012-04-09%20fink-0.32.5.5%20released;
   titlefink-0.32.5.5 released/title

Index: news.fr.rdf
===
RCS file: /cvsroot/fink/web/news/news.fr.rdf,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -d -r1.98 -r1.99
--- news.fr.rdf 25 Jul 2012 18:22:46 -  1.98
+++ news.fr.rdf 11 Nov 201 18:22:46 -  
1.98==fink-0.32.5.5%20released¤Üÿ€pÒ.+P_¤ÜÿaãÐ.+òçãÐ.+Ði¤Üÿ@j¤ÜÿóhãÐ.+€ŠäÐ.+ètÑ.+’XÒ.+@j¤Üÿ€pÒ.+P_¤Üÿ
 ^¤Üÿë}ãÐ.+6 
èè!è!Ði¤Üÿ@j¤ÜÿxÒ.+P`¤ÜÿaãÐ.+~ãÐ.+Ði¤Üÿð`ãÐ.+j¤ÜÿÀdÒ.+óhãÐ.+dÒ.+ØdÒ.+¨
   dÒ.+€ŠäÐ.+xÒ.+P`¤Üÿ 
_¤Üÿë}ãÐ.+à!à!Ði¤Üÿ@j¤ÜÿÈÝßÑ.+0a¤ÜÿaãÐ.+~ãÐ.+Ði¤Üÿð`ãÐ.+j¤Üÿj¤Üÿøi¤Üÿ{Ñ.+Œp˜@j¤ÜÿóhãÐ.+€ŠäÐ.+0a¤Üÿ`¤Üÿë}ãÐ.+GHIJKMNOPÐi¤Üÿ@j¤ÜÿH•¶Ñ.+Ðb¤ÜÿaãÐ.+~ãÐ.+Ði¤Üÿ0dÒ.+óhãÐ.+
 Ò.+ É“Ñ.+dÒ.+ØdÒ.+¨ 
dÒ.+€ŠäÐ.+H•¶Ñ.+Ðb¤Üÿa¤Üÿë}ãÐ.+8•¶Ñ.+Ðb¤Üÿ@a¤Üÿë}ãÐ.+(•¶Ñ.+Ðb¤Üÿpa¤Üÿë}ãÐ.+•¶Ñ.+Ðb¤Üÿ a¤Üÿë}ãÐ.+
  ¨dÒ.+óhãÐ.+¨dÒ.+ 
\¤ÜÿŠ”Ñ.+ægãÐ.+ØdÒ.+@b¤Üÿy”Ñ.+ægãÐ.+dÒ.+pb¤ÜÿZ”Ñ.+ægãÐ.+ØēÑ.+
 Ò.+ 

[cvs] web fink_version.inc,1.13,1.14

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web

Modified Files:
fink_version.inc 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: fink_version.inc
===
RCS file: /cvsroot/fink/web/fink_version.inc,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- fink_version.inc6 Nov 2012 23:48:12 -   1.13
+++ fink_version.inc11 Nov 2012 16:04:53 -  1.14
@@ -4,6 +4,6 @@
   $dmg_size = 13635047 bytes;
   $intel_dmg_size = 14431371 bytes;
   $fink_tool_version = 0.34.4;
-  $fink_tool_release_date = 25 September 2012
-  $tarball_size =  1282510 bytes per
+  $fink_tool_release_date = 25 September 2012;
+  $tarball_size =  1282510 bytes per;
 ?


--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] web/doc/advanced advanced.en.html, 1.15, 1.16 advanced.fr.html, 1.11, 1.12 advanced.ja.html, 1.9, 1.10 advanced.pt.html, 1.4, 1.5 bindist.en.php, 1.5, 1.6 bindist.fr.php, 1.4, 1.5 bindist.ja.php

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/advanced
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/doc/advanced

Modified Files:
advanced.en.html advanced.fr.html advanced.ja.html 
advanced.pt.html bindist.en.php bindist.fr.php bindist.ja.php 
bindist.pt.php index.en.php index.fr.php index.ja.php 
index.pt.php 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: index.pt.php
===
RCS file: /cvsroot/fink/web/doc/advanced/index.pt.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- index.pt.php12 Mar 2009 18:15:02 -  1.2
+++ index.pt.php11 Nov 2012 16:04:54 -  1.3
@@ -1,7 +1,7 @@
 ?
 $title = Avançado;
-$cvs_author = 'Author: alexkhansen';
-$cvs_date = 'Date: 2009/03/12 18:13:37';
+$cvs_author = 'Author: gecko2';
+$cvs_date = 'Date: 2012/11/11 15:20:12';
 $metatags = 'link rel=contents href=index.php?phpLang=pt title=Avançado 
Contentslink rel=next href=bindist.php?phpLang=pt title=Rodando seu 
próprio servidor de distribuição de binários';
 
 
@@ -9,11 +9,11 @@
 ?
 h1Tópicos avançados do Fink/h1
 pEste documento descreve tópicos avançados que não estão presentes no
-a href=http://www.finkproject.org/doc/users-guide/;Guia do
+a href=/doc/users-guide/Guia do
 usuário/a./p
   h2? echo FINK_CONTENTS ; ?/h2ul
lia href=bindist.php?phpLang=ptb1 Rodando seu próprio servidor 
de distribuição de binários/b/aullia 
href=bindist.php?phpLang=pt#intro1.1 Introdução/a/lilia 
href=bindist.php?phpLang=pt#master1.2 Passos a serem executados no servidor 
mestre/a/lilia href=bindist.php?phpLang=pt#client1.3 Passos a serem 
executados nas máquinas clientes/a/lilia 
href=bindist.php?phpLang=pt#remarks1.4 Observações/a/li/ul/li/ul
-!--Generated from $Fink: advanced.pt.xml,v 1.2 2009/03/12 18:13:37 
alexkhansen Exp $--
+!--Generated from $Fink: advanced.pt.xml,v 1.3 2012/11/11 15:20:12 gecko2 Exp 
$--
 ? include_once ../../footer.inc; ?
 
 

Index: advanced.fr.html
===
RCS file: /cvsroot/fink/web/doc/advanced/advanced.fr.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- advanced.fr.html26 Jan 2012 10:25:22 -  1.11
+++ advanced.fr.html11 Nov 2012 16:04:54 -  1.12
@@ -1,7 +1,7 @@
 !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN 
http://www.w3.org/TR/html4/loose.dtd;
 htmlheadmeta http-equiv=Content-Type content=text/html; charset=utf-8
 !--
-Generated from $Fink: advanced.fr.xml,v 1.5 2007/02/23 22:04:53 rangerrick Exp 
$
+Generated from $Fink: advanced.fr.xml,v 1.6 2012/11/11 15:20:12 gecko2 Exp $
 --
 titleFink Documentation - Notions complexes dans Fink/title/headbody
 table width=100% cellspacing=0
@@ -16,7 +16,7 @@
 /tr
 /table
 h1 style=text-align: center;Notions complexes dans Fink/h1
-pCe document aborde quelques notions complexes qui ne se trouvent pas dans 
le a href=http://www.finkproject.org/doc/users-guide/;Guide de 
l'utilisateur/a./p
+pCe document aborde quelques notions complexes qui ne se trouvent pas dans 
le a href=/doc/users-guide/Guide de l'utilisateur/a./p
 h2Contents/h2ullia href=#bindistb1 Mise en place d'un serveur de 
distribution binaire/b/aullia href=#bindist.intro1.1 
Introduction/a/lilia href=#bindist.master1.2 Étapes sur le serveur 
maîtr Passos a serem executados no servidor mestre/a/lilia 
href=bindist.php?phpLang=pt#client1.3 Passos a serem executados nas 
máquinas clientes/a/lilia href=bindist.php?phpLang=pt#remarks1.4 
Observações/a/li/ul/li/ulYâw+€Ú‚àw+xdžáw+€ËüqÿPÊüqÿë́àw+à!à!ÕüqÿpÕüqÿÈ-~áw+`Ìüqÿ±àw+΁àw+Õüqÿð°àw+?Õüqÿ0Õüqÿ(ÕüqÿË¢àw+Œp˜pÕüqÿó¸àw+€Ú‚àw+`Ìüqÿ0Ëüqÿë́àw+GHIJKMNOPÕüqÿpÕüqÿHåTáw+Îüqÿ±àw+΁àw+Õüqÿ0_âw+ó¸àw+pžáw+ 2áw+Pâw+ØTâw+¨Yâw+€Ú‚àw+HåTáw+Îüqÿ@Ìüqÿë́àw+8åTáw+ÎüqÿpÌüqÿë́àw+(åTáw+Îüqÿ Ìüqÿë́àw+åTáw+ÎüqÿÐÌüqÿë́àw+
 
¨^âw+ó¸àw+¨Yâw+PÇüqÿŠh2áw+淁àw+ØTâw+pÍüqÿyh2áw+淁àw+Pâw+ ÍüqÿZh2áw+淁àw+Ø2áw+pžáw+ 2áw+Pâw+Øtžáw+ØTâw+¨Yâw+€Ú‚àw+Ë¢àw+íýàw+pÕüqÿp«1áw+PÏüqÿ
 
Îüqÿë́àw+5678:=?@BDÕüqÿpÕüqÿàíúàw+pÕüqÿó¸àw+èÄ¢àw+ÐÍüqÿíýàw+淁àw+èÄ¢àw+Õ_@fÆS
 
Qöl±íÁÊàw+pÕüqÿàíúàw+`Ðüqÿ0Ïüqÿë́àw+u]ÞÓ
   

[cvs] web/doc/multilingual appendix.en.php, 1.12, 1.13 appendix.fr.php, 1.13, 1.14 files.en.php, 1.17, 1.18 files.fr.php, 1.17, 1.18 files.zh.php, 1.9, 1.10 index.en.php, 1.16, 1.17 index.fr.php, 1.16

2012-11-11 Thread Andreas Gockel
Update of /cvsroot/fink/web/doc/multilingual
In directory vz-cvs-3.sog:/tmp/cvs-serv32119/web/doc/multilingual

Modified Files:
appendix.en.php appendix.fr.php files.en.php files.fr.php 
files.zh.php index.en.php index.fr.php intro.en.php 
intro.fr.php intro.zh.php multilingual.en.html 
multilingual.fr.html multilingual.zh.html procedure.en.php 
procedure.fr.php resources.en.php resources.fr.php 
Log Message:
Rebuild doc
fix missing ; in web/fink_version.inc


Index: procedure.fr.php
===
RCS file: /cvsroot/fink/web/doc/multilingual/procedure.fr.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- procedure.fr.php26 Jan 2012 10:25:22 -  1.16
+++ procedure.fr.php11 Nov 2012 16:04:54 -  1.17
@@ -1,7 +1,7 @@
 ?
 $title = i18n - Mise à jour;
-$cvs_author = 'Author: fingolfin';
-$cvs_date = 'Date: 2011/10/28 15:50:45';
+$cvs_author = 'Author: gecko2';
+$cvs_date = 'Date: 2012/11/11 15:20:15';
 $metatags = 'link rel=contents href=index.php?phpLang=fr title=i18n 
Contentslink rel=next href=resources.php?phpLang=fr title=Autres 
ressourceslink rel=prev href=files.php?phpLang=fr title=Fichiers de 
documentation';
 
 

Index: files.en.php
===
RCS file: /cvsroot/fink/web/doc/multilingual/files.en.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- files.en.php26 Jan 2012 10:25:22 -  1.17
+++ files.en.php11 Nov 2012 16:04:54 -  1.18
@@ -1,7 +1,7 @@
 ?
 $title = i18n - Files;
-$cvs_author = 'Author: fingolfin';
-$cvs_date = 'Date: 2011/10/28 15:50:45';
+$cvs_author = 'Author: gecko2';
+$cvs_date = 'Date: 2012/11/11 15:20:15';
 $metatags = 'link rel=contents href=index.php?phpLang=en title=i18n 
Contentslink rel=next href=procedure.php?phpLang=en title=Procedure for 
Updating Documentslink rel=prev href=intro.php?phpLang=en 
title=Introduction';
 
 
@@ -246,7 +246,7 @@
 possibly some other) files as well as other files matching the 
languages in the Makefile./p/li
   /ol
   pNote: If you see some misspelling or errors in the English file,
-  don't change it, but instead report it instead to the a 
href=http://www.finkproject.org/lists/fink-i18n.php;fink-i18n
+  don't change it, but instead report it instead to the a 
href=/lists/fink-i18n.phpfink-i18n
   list/a, so that the master English file is changed./p
 
 h2a name=check-work2.7 Check Your Work/a/h2
@@ -428,7 +428,7 @@
 this you will activate beverything/b that's been placed in
 codeweb/xml/code./li
 lilog out from web server: preexit/pre/li
-liSee your efforts: preopen http://www.finkproject.org//pre/li
+liSee your efforts: preopen //pre/li
   /ol
 
   p align=right? echo FINK_NEXT ; ?:

Index: multilingual.en.html
===
RCS file: /cvsroot/fink/web/doc/multilingual/multilingual.en.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- multilingual.en.html26 Jan 2012 10:25:22 -  1.28
+++ multilingual.en.html11 Nov 2012 16:04:54 -  1.29
@@ -1,7 +1,7 @@
 !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 
Transiti9en.html,v/pre/li-i18n.phpfink-i18nfink-i18n.phpfink-i18n=en
 title=Procedure for Updating Documentslink rel=prev 
href=intro.php?phpLang=en title=Introduction';€ 
añ*S¤ÿàQ¤ÿë-Ñ_ñ*6 
èè!è!]¤ÿ^¤ÿxÄí`ñ*T¤ÿÑ_ñ*.Ñ_ñ*]¤ÿðÑ_ñ*Ï]¤ÿÀ¿Qañ*óÑ_ñ*°Qañ*Ø´Qañ*¨¹Qañ*€:Ò_ñ*xÄí`ñ*T¤ÿàR¤ÿë-Ñ_ñ*à!à!]¤ÿ^¤ÿȍÍ`ñ*ðT¤ÿÑ_ñ*.Ñ_ñ*]¤ÿðÑ_ñ*Ï]¤ÿÀ]¤ÿ¸]¤ÿ+ò_ñ*Œp˜^¤ÿóÑ_ñ*€:Ò_ñ*ðT¤ÿÀS¤ÿë-Ñ_ñ*GHIJKMNOP]¤ÿ^¤ÿHE¤`ñ*V¤ÿÑ_ñ*.Ñ_ñ*]¤ÿ0¿Qañ*óÑ_ñ*Ðí`ñ* y`ñ*°Qañ*Ø´Qañ*¨¹Qañ*€:Ò_ñ*HE¤`ñ*V¤ÿÐT¤ÿë-Ñ_ñ*8E¤`ñ*V¤ÿU¤ÿë-Ñ_ñ*(E¤`ñ*V¤ÿ0U¤ÿë-Ñ_ñ*E¤`ñ*V¤ÿ`U¤ÿë-Ñ_ñ*
 
¨¾Qañ*óÑ_ñ*¨¹Qañ*àO¤ÿŠÈ`ñ*æÑ_ñ*Ø´Qañ*V¤ÿyȁ`ñ*æÑ_ñ*°Qañ*0V¤ÿZȁ`ñ*æÑ_ñ*Øt`ñ*Ðí`ñ* y`ñ*°Qañ*ØÔí`ñ*Ø´Qañ*¨¹Qañ*€:Ò_ñ*+ò_ñ*MM`ñ*^¤ÿp


[cvs] dists/10.7/stable/main/finkinfo/editors nano-cur.info, 1.2, 1.3 nano.info, 1.2, 1.3

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv10185

Modified Files:
nano-cur.info nano.info 
Log Message:
Add more hardening from http://wiki.debian.org/Hardening/


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nano-cur.info   6 Jul 2012 23:53:11 -   1.2
+++ nano-cur.info   7 Jul 2012 09:24:30 -   1.3
@@ -1,6 +1,6 @@
 Package: nano-cur
-Version: 2.3.1
-Revision: 4547
+Version: 2.3.1+svn4547
+Revision: 1
 Description: Free Pico clone with some new features (dev)
 License: GPL
 Maintainer: Andreas Gockel fink-n...@unixforge.de
@@ -13,14 +13,14 @@
 
 Replaces: nano-unstable, nano-small, nano-noutf8, nano
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
-Source: http://www.nano-editor.org/dist/v2.3/nano-%v.tar.gz
+Source: http://www.nano-editor.org/dist/v2.3/nano-2.3.1.tar.gz
 Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
 PatchFile: %n.patch
 PatchFile-MD5: c134a8b792eeaf9c57e09964d7a5d455
-SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
-SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
-SetLDFLAGS: -Wl,-read_only_stubs
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -pie
 ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root 
--enable-utf8
 InstallScript: 
  /usr/bin/make install prefix=%i

Index: nano.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- nano.info   6 Jul 2012 23:52:15 -   1.2
+++ nano.info   7 Jul 2012 09:24:30 -   1.3
@@ -1,7 +1,7 @@
 Info2: 
 Package: nano%type_pkg[nano]
 Version: 2.2.6
-Revision: 2
+Revision: 3
 Description: Free Pico clone with some new features
 Type: nano (. -noutf8 -small)
 License: GPL
@@ -24,10 +24,10 @@
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano-cur, nano
 Source: http://www.nano-editor.org/dist/v2.2/nano-%v.tar.gz
 Source-MD5: 03233ae480689a008eb98feb1b599807
-SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2
-SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
-SetLDFLAGS: -Wl,-read_only_stubs
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -pie
 ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root
 CompileScript: 
  #!/bin/sh -ev


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/editors nano-cur.info, 1.3, 1.4 nano.info, 1.3, 1.4

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv11295

Modified Files:
nano-cur.info nano.info 
Log Message:
...


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- nano-cur.info   7 Jul 2012 09:24:30 -   1.3
+++ nano-cur.info   7 Jul 2012 09:29:19 -   1.4
@@ -20,7 +20,7 @@
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
-SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -pie
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
 ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root 
--enable-utf8
 InstallScript: 
  /usr/bin/make install prefix=%i

Index: nano.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- nano.info   7 Jul 2012 09:24:30 -   1.3
+++ nano.info   7 Jul 2012 09:29:19 -   1.4
@@ -27,7 +27,7 @@
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
-SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -pie
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
 ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root
 CompileScript: 
  #!/bin/sh -ev


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info,1.4,1.5

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv11411

Modified Files:
openvpn.info 
Log Message:
Add more hardening from http://wiki.debian.org/Hardening/


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- openvpn.info6 Jul 2012 22:51:45 -   1.4
+++ openvpn.info7 Jul 2012 09:32:52 -   1.5
@@ -1,6 +1,6 @@
 Package: openvpn
 Version: 2.2.2
-Revision: 3
+Revision: 4
 Description: Virtual private network daemon
 License: GPL
 Maintainer: Andreas Gockel fink-open...@unixforge.de
@@ -11,10 +11,10 @@
 Source-MD5: c5181e27b7945fa6276d21873329c5c7
 PatchFile: %n.patch
 Patchfile-MD5: e4f02c8d21fc3d6294a753974702acba
-SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security 
-Wno-deprecated-declarations
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
-SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
-SetLDFLAGS: -Wl,-read_only_stubs -L%p/lib/system-openssl/lib
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
 ConfigureParams: 
  --disable-dependency-tracking\
  --disable-pkcs11\


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net socat.info,1.2,1.3

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv24206

Modified Files:
socat.info 
Log Message:
Add more hardening from http://wiki.debian.org/Hardening/


Index: socat.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/socat.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- socat.info  6 Jul 2012 23:29:37 -   1.2
+++ socat.info  7 Jul 2012 11:02:55 -   1.3
@@ -1,6 +1,6 @@
 Package: socat
 Version: 2.0.0
-Revision: b5
+Revision: b5+1
 Description: Multipurp. relay for bidirect. data transfer
 License: GPL
 Maintainer: Andreas Gockel fink-so...@unixforge.de
@@ -8,14 +8,14 @@
 BuildDepends: fink (= 0.24.12), readline5, system-openssl-dev
 Replaces: %n, %n-ssl
 Conflicts: %n, %n-ssl
-Source: http://www.dest-unreach.org/%n/download/%n-%v-%r.tar.bz2
+Source: http://www.dest-unreach.org/%n/download/%n-%v-b5.tar.bz2
 Source-MD5: f94beed5bdc5f8ffd21c760045992532
 PatchFile: %n.patch
 PatchFile-MD5: 69fa98b7dc95b020b630720a8e14746d
-SetCFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector -Wformat 
-Werror=format-security
+SetCFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector -Wformat 
-Werror=format-security -fPIE
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include 
-D__APPLE_USE_RFC_2292
-SetCXXFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security
-SetLDFLAGS: -Wl,-read_only_stubs -L%p/lib/system-openssl/lib
+SetCXXFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie 
-L%p/lib/system-openssl/lib
 ConfigureParams: --disable-maintainer-mode --disable-dependency-tracking
 DocFiles: BUGREPORTS COPYING EXAMPLES FAQ README SECURITY
 Homepage: http://www.dest-unreach.org/socat/


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs lzo2.info,1.1,1.2

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv25884

Modified Files:
lzo2.info 
Log Message:
Add hardening from http://wiki.debian.org/Hardening/


Index: lzo2.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/lzo2.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- lzo2.info   21 Aug 2011 12:38:32 -  1.1
+++ lzo2.info   7 Jul 2012 11:28:27 -   1.2
@@ -1,6 +1,6 @@
 Package: lzo2
 Version: 2.06
-Revision: 1
+Revision: 2
 Description: Data compression library
 License: GPL
 Maintainer: Andreas Gockel fink-l...@unixforge.de
@@ -8,6 +8,10 @@
 BuildDependsOnly: True
 Source: http://www.oberhumer.com/opensource/lzo/download/lzo-%v.tar.gz
 Source-MD5: 95380bd4081f85ef08c5209f4107e9f8
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security -fPIE
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
 ConfigureParams: 
  --disable-asm \
  --disable-dependency-tracking \
@@ -20,12 +24,12 @@
 
 SplitOff: 
   Package: %N-shlibs
-  Files: lib/liblzo2.*.dylib
-  Shlibs: %p/lib/liblzo2.2.dylib 3.0.0 %n (= 2.02-1)
   DocFiles: 
AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README
THANKS doc/* minilzo/README.LZO:README.minilzo
   
+  Shlibs: %p/lib/liblzo2.2.dylib 3.0.0 %n (= 2.02-1)
+  Files: lib/liblzo2.*.dylib
 
 Homepage: http://www.oberhumer.com/opensource/lzo/
 DescDetail: 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/editors joe.info,1.2,1.3

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv29799

Modified Files:
joe.info 
Log Message:
Add hardening from http://wiki.debian.org/Hardening/


Index: joe.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/joe.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- joe.info28 May 2012 17:15:36 -  1.2
+++ joe.info7 Jul 2012 12:14:17 -   1.3
@@ -1,6 +1,6 @@
 Package: joe
 Version: 3.7
-Revision: 1008
+Revision: 1009
 Description: User friendly full screen text editor
 License: GPL
 Maintainer: Andreas Gockel fink-...@unixforge.de
@@ -12,6 +12,10 @@
 Source2: 
http://cvsweb.allbsd.org/cvsweb.cgi/~checkout~/contrib/code/jupp/jupprc?rev=1.23.2.8content-type=text/plaincvsroot=mirbsd
 Source2Rename: jupprc-for-%n-3_7-1.23.2.8
 Source2-MD5: 8cb99779fadad2a8d867f62c0735b08f
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Wformat-security -fPIE
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Wformat-security -fPIE
+SetLDFLAGS: -Wl,-read_only_stubs -Wl,-bind_at_load -fPIE -Wl,-pie
 ConfigureParams: --mandir=%p/share/man --sysconfdir=%p/etc 
--disable-dependency-tracking
 CompileScript: 
  ./autojoe


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs tuntap.info, NONE, 1.1 tuntap.patch, NONE, 1.1

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs
In directory vz-cvs-3.sog:/tmp/cvs-serv1881

Added Files:
tuntap.info tuntap.patch 
Log Message:
Complete the openvpn package =)


--- NEW FILE: tuntap.patch ---
diff -rauN tuntap/src/tap/Makefile tuntap-p1/src/tap/Makefile
--- tuntap/src/tap/Makefile 2011-08-21 19:24:45.0 +0200
+++ tuntap-p1/src/tap/Makefile  2012-07-07 15:30:50.0 +0200
@@ -14,7 +14,7 @@
 TAP_KEXT_VERSION = $(TUNTAP_VERSION)
 
 BUNDLE_REGION = English
-BUNDLE_IDENTIFIER = foo.tap
+BUNDLE_IDENTIFIER = net.sf.tuntaposx.tap
 BUNDLE_SIGNATURE = 
 BUNDLE_PACKAGETYPE = KEXT
 BUNDLE_VERSION = $(TAP_KEXT_VERSION)
diff -rauN tuntap/src/tun/Makefile tuntap-p1/src/tun/Makefile
--- tuntap/src/tun/Makefile 2011-08-21 19:24:59.0 +0200
+++ tuntap-p1/src/tun/Makefile  2012-07-07 15:31:18.0 +0200
@@ -15,7 +15,7 @@
 TUN_KEXT_VERSION = $(TUNTAP_VERSION)
 
 BUNDLE_REGION = English
-BUNDLE_IDENTIFIER = foo.tun
+BUNDLE_IDENTIFIER = net.sf.tuntaposx.tun
 BUNDLE_SIGNATURE = 
 BUNDLE_PACKAGETYPE = KEXT
 BUNDLE_VERSION = $(TUN_KEXT_VERSION)

--- NEW FILE: tuntap.info ---
Package: tuntap
Version: 2001
Revision: 1
Description: IP Tunnel kernel extension
License: BSD
Maintainer: Andreas Gockel fink-tune...@unixforge.de
Source: mirror:sourceforge:%{n}osx/%{n}_%v_src.tar.gz
Source-MD5: 852593304085e7e36743ac11a9de82fc
PatchFile: %n.patch
PatchFile-MD5: 93f837d946bcaf612ff32faf2ed7a98b
SourceDirectory: %n
CompileScript: 
 #!/bin/sh -e -x
 cd %b
 make -j1 all

InstallScript: 
 #!/bin/sh -e -x
 mkdir -p %i/{lib/%n,bin,share/doc}
 cp -a tun.kext tap.kext %i/lib/%n/
 chmod -R u=rwX,g=rX,o=rX %i/lib/%n/*.kext
 /bin/cat %i/bin/start-%n 'EOF'
 cp -a pkg/res/* %i/share/doc/
#!/bin/sh
kextload %p/lib/%n/*.kext
EOF
 chmod a+x %i/bin/start-%n

PostInstScript: 
 chown -R root:wheel %p/lib/%n/*.kext
 printf '\n%%s\n' Use \sudo %p/bin/start-%n\ to load the kernel extensions

DocFiles: 
 Changelog INSTALL README

Homepage: http://tuntaposx.sourceforge.net/
DescDetail: 
 Provides virtual network interfaces allowing applications
 to exchange IP packets with the kernel.

DescUsage: 
 Use sudo %p/bin/start-%n to load the kernel extensions



--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info,1.5,1.6

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv1926

Modified Files:
openvpn.info 
Log Message:
Add tuntap as depends
Include an example plist file for launchd


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- openvpn.info7 Jul 2012 09:32:52 -   1.5
+++ openvpn.info7 Jul 2012 15:51:55 -   1.6
@@ -1,10 +1,10 @@
 Package: openvpn
 Version: 2.2.2
-Revision: 4
+Revision: 5
 Description: Virtual private network daemon
 License: GPL
 Maintainer: Andreas Gockel fink-open...@unixforge.de
-Depends: lzo2-shlibs
+Depends: lzo2-shlibs, tuntap
 BuildDepends: autoconf2.6, automaken, fink (= 0.24.12), lzo2, 
system-openssl-dev
 Suggests: gawk
 Source: http://swupdate.openvpn.net/community/releases/%n-%v.tar.gz
@@ -34,16 +34,46 @@
  /usr/bin/make -C plugin/down-root/ prefix=%i
 
 InstallScript: 
+#!/bin/sh -e -x
  /usr/bin/make install prefix=%i
  /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/2.0
  chmod a-x %i/share/doc/%n/examples/easy-rsa/2.0/{vars,openssl-*.cnf}
  /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/1.0
- install -d -m 755 %i/{etc,include,lib,share}/%n
+ install -d -m 755 %i/{etc,include,lib,share{,/doc}}/%n
  install -m 755 sample-scripts/verify-cn %i/share/%n
  install -m 644 plugin/auth-pam/%n-auth-pam.so %i/lib/%n
  install -m 644 plugin/down-root/%n-down-root.so %i/lib/%n
  install -m 644 %n-plugin.h %i/include/%n/%n-plugin.h
  cp -a sample-{config-files,keys,scripts} %i/share/doc/%n/examples/
+ /bin/cat %i/share/doc/%n/org.%n.client.plist 'EOF'
+?xml version=1.0 encoding=UTF-8?
+!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN 
http://www.apple.com/DTDs/PropertyList-1.0.dtd;
+plist version=1.0
+dict
+   keyLabel/key
+   stringorg.%n.client/string
+   keyNice/key
+   integer-1/integer
+   keyOnDemand/key
+   false/
+   keyProgram/key
+   string%p/sbin/%n/string
+   keyProgramArguments/key
+   array
+   string%p/sbin/%n/string
+   string%n.conf/string
+   /array
+   keyRunAtLoad/key
+   true/
+   keyWatchPaths/key
+   array
+   string%p/etc/%n/string
+   /array
+   keyWorkingDirectory/key
+   string%p/etc/%n/string
+/dict
+/plist
+EOF
 
 DocFiles: 
  AUTHORS COPYRIGHT.GPL:copyright ChangeLog
@@ -68,6 +98,16 @@
  Previous Maintainer:
   = 2.0.7 ASARI Takashi as...@users.sourceforge.net
 
+DescUsage: 
+ Before you start to use %n, take a look at the DescUsage of
+ the package tuntap.
+ .
+ Under %p/share/doc/%n/org.openvpn.client.plist you will find an example
+ launchd.plist file to start your %n tunnel at startup.
+ .
+ After configuring your %n.conf, place the example plist into
+ /Library/LaunchDaemons/ or ~/Library/LaunchDaemons/ .
+
 DescPort: 
  Includes all applicable patches from debian
  Backported some fixes from 2.3alpha1


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/shells mksh-cur.info, 1.1, 1.2 mksh-cur.patch, 1.1, 1.2 mksh.info, 1.2, 1.3

2012-07-07 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells
In directory vz-cvs-3.sog:/tmp/cvs-serv9733

Modified Files:
mksh-cur.info mksh-cur.patch mksh.info 
Log Message:
Update to R40f and R40f+cvs


Index: mksh-cur.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh-cur.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mksh-cur.patch  4 Sep 2011 20:22:05 -   1.1
+++ mksh-cur.patch  7 Jul 2012 16:59:53 -   1.2
@@ -1,24 +1,89 @@
 Index: src/bin/mksh/Build.sh
-diff -u src/bin/mksh/Build.sh:1.484.2.2 src/bin/mksh/Build.sh:1.487
 src/bin/mksh/Build.sh:1.484.2.2Sat Jul 16 18:03:01 2011
-+++ src/bin/mksh/Build.sh  Fri Aug 26 10:24:51 2011
+diff -u src/bin/mksh/Build.sh:1.484.2.14 src/bin/mksh/Build.sh:1.579
+--- src/bin/mksh/Build.sh:1.484.2.14   Fri Apr  6 23:10:45 2012
 src/bin/mksh/Build.sh  Sun Jul  1 15:54:49 2012
 @@ -1,5 +1,5 @@
  #!/bin/sh
--srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.484.2.2 2011/07/16 18:03:01 tg 
Exp $'
-+srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.487 2011/08/26 10:24:51 tg Exp 
$'
[...6674 lines suppressed...]
++   * this is the same Linear Congruential PRNG as Borland
++   * C/C++ allegedly uses in its built-in rand() function
++   */
++  return (((lcg_state = 22695477 * lcg_state + 1)  16)  0x7FFF);
++}
++
+ void
+ rndset(long v)
  {
register uint32_t h;
  
@@ -2574,7 +4702,7 @@
  
  #if defined(arc4random_pushb_fast) || defined(MKSH_A4PB)
/*
-@@ -1518,16 +1519,16 @@
+@@ -1514,16 +1508,16 @@
 * user requested us to use the old functions
 */
lcg_state = h;

Index: mksh.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- mksh.info   28 Feb 2012 21:04:34 -  1.2
+++ mksh.info   7 Jul 2012 16:59:53 -   1.3
@@ -1,6 +1,6 @@
 Package: mksh
-Version: 40
-Revision: 4
+Version: 40.6
+Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
 Maintainer: Andreas Gockel fink-m...@unixforge.de
@@ -10,11 +10,11 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R%vd.cpio.gz
-SourceRename: mksh-%v-%r.cpio.gz
-Source-md5: c6428401103367730a95b99284bf47dc
+Source: mirror:custom:mksh-R40f.cpio.gz
+SourceRename: mksh-%v.cpio.gz
+Source-md5: 22c9570660c2efadf36de7b620d06966
 NoSourceDirectory: true
-PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v-%r.cpio.gz -r
+PatchScript: /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.cpio.gz -r
 CompileScript: 
  #!/bin/sh -e -x
  cd %f

Index: mksh-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/shells/mksh-cur.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mksh-cur.info   4 Sep 2011 20:22:05 -   1.1
+++ mksh-cur.info   7 Jul 2012 16:59:53 -   1.2
@@ -1,6 +1,6 @@
 Package: mksh-cur
-Version: 40
-Revision: 2+cvs201109042018
+Version: 40.6+cvs201207071853
+Revision: 1
 Description: Enhanced version of the Korn shell
 License: OSI-Approved
 Maintainer: Andreas Gockel fink-m...@unixforge.de
@@ -11,15 +11,15 @@
  Primary: http://www.mirbsd.org/MirOS/dist/mir/mksh/
  asi-JP: http://pub.allbsd.org/MirOS/dist/mir/mksh/
 
-Source: mirror:custom:mksh-R%vb.cpio.gz
-SourceRename: mksh-%v-2.cpio.gz
-Source-MD5: afb08b65272ace550ec59b26a876a7de
+Source: mirror:custom:mksh-R40f.cpio.gz
+SourceRename: mksh-%v.cpio.gz
+Source-MD5: 22c9570660c2efadf36de7b620d06966
 PatchFile: mksh-cur.patch
-PatchFile-MD5: b7db198e826f1c19b591066db1441ac7
+PatchFile-MD5: 8babdbb562c558d4573736e202e11793
 NoSourceDirectory: true
 PatchScript: 
  #!/bin/sh -ev
-  /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v-2.cpio.gz -r
+  /bin/pax -s ',^/*mksh//*,%f/,' -zf mksh-%v.cpio.gz -r
   cd %f
   /usr/bin/patch -p3 %{PatchFile}
 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info, 1.3, 1.4 openvpn.patch, 1.2, 1.3

2012-07-06 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv24231

Modified Files:
openvpn.info openvpn.patch 
Log Message:
Fix problem with case-insensitive filesystem.
Other minor fixes


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- openvpn.info29 May 2012 20:26:20 -  1.3
+++ openvpn.info6 Jul 2012 22:51:45 -   1.4
@@ -1,16 +1,16 @@
 Package: openvpn
 Version: 2.2.2
-Revision: 2
+Revision: 3
 Description: Virtual private network daemon
 License: GPL
 Maintainer: Andreas Gockel fink-open...@unixforge.de
 Depends: lzo2-shlibs
-BuildDepends: fink (= 0.24.12), lzo2, system-openssl-dev, automaken, 
autoconf2.6
+BuildDepends: autoconf2.6, automaken, fink (= 0.24.12), lzo2, 
system-openssl-dev
 Suggests: gawk
 Source: http://swupdate.openvpn.net/community/releases/%n-%v.tar.gz
 Source-MD5: c5181e27b7945fa6276d21873329c5c7
 PatchFile: %n.patch
-Patchfile-MD5: 34fd9737b71af12aed9422f482b29243
+Patchfile-MD5: e4f02c8d21fc3d6294a753974702acba
 SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security 
-Wno-deprecated-declarations
 SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
 SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
@@ -26,7 +26,8 @@
  --with-route-path=/sbin/route
 
 CompileScript: 
- autoreconf-2.68
+ autoreconf
+ automake -af
  ./configure %c
  /usr/bin/make prefix=%i
  /usr/bin/make -C plugin/auth-pam/ prefix=%i
@@ -45,9 +46,9 @@
  cp -a sample-{config-files,keys,scripts} %i/share/doc/%n/examples/
 
 DocFiles: 
- AUTHORS COPYRIGHT.GPL:copyright ChangeLog:changelog
- PORTS README ChangeLog.IPv6 README.ipv6 README.IPv6:README.IPv6-2
- plugin/auth-pam/README:README.auth-pam TODO.IPv6:TODO.IPv6-2
+ AUTHORS COPYRIGHT.GPL:copyright ChangeLog
+ PORTS README ChangeLog.IPv6 README.ipv6 README-payload.IPv6
+ plugin/auth-pam/README:README.auth-pam TODO-payload.IPv6
  plugin/down-root/README:README.down-root TODO.ipv6
 
 Homepage: http://openvpn.net/

Index: openvpn.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- openvpn.patch   28 May 2012 21:12:02 -  1.2
+++ openvpn.patch   6 Jul 2012 22:51:45 -   1.3
@@ -397,8 +397,8 @@
 +  * TEST SUCCESS: Linux/iproute2: client-tun/net30+subnet, v4+v6
 +
 diff -rauN openvpn-2.2.2/README.IPv6 openvpn-2.2.2-p1/README.IPv6
 openvpn-2.2.2/README.IPv6  1970-01-01 01:00:00.0 +0100
-+++ openvpn-2.2.2-p1/README.IPv6   2012-05-28 19:40:12.0 +0200
+--- openvpn-2.2.2/README-payload.IPv6  1970-01-01 01:00:00.0 +0100
 openvpn-2.2.2-p1/README-payload.IPv6   2012-05-28 19:40:12.0 
+0200
 @@ -0,0 +1,8 @@
 +This is an experimentally patched version of OpenVPN 2.1 with IPv6
 +payload support.
@@ -494,8 +494,8 @@
 +.OpenVPN over IPv6 support .
 +:.. plus other scattered free software bits in the wild ...:
 diff -rauN openvpn-2.2.2/TODO.IPv6 openvpn-2.2.2-p1/TODO.IPv6
 openvpn-2.2.2/TODO.IPv61970-01-01 01:00:00.0 +0100
-+++ openvpn-2.2.2-p1/TODO.IPv6 2012-05-28 19:40:12.0 +0200
+--- openvpn-2.2.2/TODO-payload.IPv61970-01-01 01:00:00.0 +0100
 openvpn-2.2.2-p1/TODO-payload.IPv6 2012-05-28 19:40:12.0 +0200
 @@ -0,0 +1,149 @@
 +known issues for IPv6 payload support in OpenVPN
 +---


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net socat.info, 1.1, 1.2 socat.patch, 1.1, 1.2

2012-07-06 Thread Andreas Gockel
¨+ þ%ÿpþ%ÿë}0H¨+
  ¨±I¨+óh0H¨+¨
±I¨+ðþ%ÿŠáH¨+æg0H¨+رI¨+þ%ÿyáH¨+æg0H¨+±I¨+@þ%ÿZáH¨+æg0H¨+ØÄàH¨+
 MI¨+ ÉàH¨+±I¨+Ø$MI¨+رI¨+¨ 
±I¨+€Š1H¨+{QH¨+¬H¨+þ%ÿp[àH¨+ðþ%ÿÀþ%ÿë}0H¨+5678:=?@BD þ%ÿþ%ÿà©H¨+þ%ÿóh0H¨+ètQH¨+pþ%ÿ¬H¨+æg0H¨+ètQH¨+Õ_@fÆS
 Qöl±íÁ³xH¨+þ%ÿà©H¨+
þ%ÿÐþ%ÿë}0H¨+u]ÞÓ  
4Q ÷U^Qʉ§¶uª¹ñìò*ēv´2²H¨+Pþ%ÿF0J¨+F0J¨+?…¯H¨+þ%ÿ þ%ÿ0
þ%ÿßþ%ÿÐþ%ÿÈþ%ÿþ%ÿB0J¨+`þ%ÿØ$MI¨+ )MI¨+€Š1H¨+B0J¨+þ%ÿë}0H2_client_method(void);
+ SSL_METHOD *sycSSLv2_server_method(void);
++#endif
+ SSL_METHOD *sycSSLv3_client_method(void);
+ SSL_METHOD *sycSSLv3_server_method(void);
+ SSL_METHOD *sycSSLv23_client_method(void);

Index: socat.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/socat.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- socat.info  4 Sep 2011 20:52:48 -   1.1
+++ socat.info  6 Jul 2012 23:29:37 -   1.2
@@ -1,6 +1,6 @@
 Package: socat
 Version: 2.0.0
-Revision: b4
+Revision: b5
 Description: Multipurp. relay for bidirect. data transfer
 License: GPL
 Maintainer: Andreas Gockel fink-so...@unixforge.de
@@ -9,11 +9,14 @@
 Replaces: %n, %n-ssl
 Conflicts: %n, %n-ssl
 Source: http://www.dest-unreach.org/%n/download/%n-%v-%r.tar.bz2
-Source-MD5: b51a00937d0a56fc8eccd36175e9d068
+Source-MD5: f94beed5bdc5f8ffd21c760045992532
 PatchFile: %n.patch
-PatchFile-MD5: bc4859df85b03832df770c38c1627a19
-SetCPPFLAGS: -I%p/lib/system-openssl/include -D__APPLE_USE_RFC_2292
-SetLDFLAGS: -L%p/lib/system-openssl/lib
+PatchFile-MD5: 69fa98b7dc95b020b630720a8e14746d
+SetCFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector -Wformat 
-Werror=format-security
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include 
-D__APPLE_USE_RFC_2292
+SetCXXFLAGS: -g -O2 -D_GNU_SOURCE -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security
+SetLDFLAGS: -Wl,-read_only_stubs -L%p/lib/system-openssl/lib
+ConfigureParams: --disable-maintainer-mode --disable-dependency-tracking
 DocFiles: BUGREPORTS COPYING EXAMPLES FAQ README SECURITY
 Homepage: http://www.dest-unreach.org/socat/
 Descdetail: 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs

[cvs] dists/10.7/stable/main/finkinfo/editors nano.info,1.1,1.2

2012-07-06 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv3220

Modified Files:
nano.info 
Log Message:
Hardening build flags
Add --disable-wrapping-as-root


Index: nano.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano.info   4 Sep 2011 20:02:32 -   1.1
+++ nano.info   6 Jul 2012 23:52:15 -   1.2
@@ -1,7 +1,7 @@
 Info2: 
 Package: nano%type_pkg[nano]
 Version: 2.2.6
-Revision: 1
+Revision: 2
 Description: Free Pico clone with some new features
 Type: nano (. -noutf8 -small)
 License: GPL
@@ -24,7 +24,11 @@
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano-cur, nano
 Source: http://www.nano-editor.org/dist/v2.2/nano-%v.tar.gz
 Source-MD5: 03233ae480689a008eb98feb1b599807
-ConfigureParams: --disable-dependency-tracking
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
+SetLDFLAGS: -Wl,-read_only_stubs
+ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root
 CompileScript: 
  #!/bin/sh -ev
  if [ %type_raw[nano] == -noutf8 ]; then


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/editors nano-cur.info, 1.1, 1.2 nano-cur.patch, 1.1, 1.2

2012-07-06 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv3240

Modified Files:
nano-cur.info nano-cur.patch 
Log Message:
Hardening build flags
Add --disable-wrapping-as-root
Update to latest svn version


Index: nano-cur.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.info   4 Sep 2011 20:02:32 -   1.1
+++ nano-cur.info   6 Jul 2012 23:53:11 -   1.2
@@ -1,6 +1,6 @@
 Package: nano-cur
 Version: 2.3.1
-Revision: 4546
+Revision: 4547
 Description: Free Pico clone with some new features (dev)
 License: GPL
 Maintainer: Andreas Gockel fink-n...@unixforge.de
@@ -15,16 +15,13 @@
 Conflicts: nano-unstable, nano-small, nano-noutf8, nano
 Source: http://www.nano-editor.org/dist/v2.3/nano-%v.tar.gz
 Source-MD5: af09f8828744b0ea0808d6c19a2b4bfd
-#PatchFile: %n.patch
-#PatchFile-MD5: 0f5a4d49c9530d18332a5b769b093aaf
-#PatchScript: patch -p2 %{PatchFile}
-SetCPPFLAGS: -I%p/include/ncursesw
-ConfigureParams: --disable-dependency-tracking --enable-utf8
-###
-# Debugging:
-#SetCFLAGS: -Wall -Wextra -std=gnu99 -pedantic
-#ConfigureParams: --enable-dependency-tracking --enable-utf8 --enable-debug
-###
+PatchFile: %n.patch
+PatchFile-MD5: c134a8b792eeaf9c57e09964d7a5d455
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/include/ncursesw
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
+SetLDFLAGS: -Wl,-read_only_stubs
+ConfigureParams: --disable-dependency-tracking --disable-wrapping-as-root 
--enable-utf8
 InstallScript: 
  /usr/bin/make install prefix=%i
  /usr/bin/install -d -m 755 %i/{etc,share/doc/%n/man-html/fr}
@@ -58,7 +55,7 @@
 
 DescPort: 
  This version of nano includes all changes from svn since 2.2.6 release.
- Current svn version is: r4546
+ Current svn version is: r4547
  .
  Create patchfile:
   cd into svn checkout

Index: nano-cur.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/nano-cur.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- nano-cur.patch  4 Sep 2011 20:02:32 -   1.1
+++ nano-cur.patch  6 Jul 2012 23:53:11 -   1.2
@@ -0,0 +1,120 @@
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/ChangeLog 
nano/ChangeLog
+--- nano_2_3_1/ChangeLog   2011-12-18 22:20:12.0 +0100
 nano/ChangeLog 2012-07-07 01:41:55.0 +0200
+@@ -0,0 +1,9 @@
++2012-02-05 Chris Allegretta chr...@asty.org
++  * src/*: Fix overlapping strings highlighting each other.  new 
variables in edit_draw 
++(slmatcharray, pbegin, paintok), new logic (with repeated setting od 
values in the 
++array but its BFI after all).  FIXME: Need to create a new 'overlap'
++  * src/*: Fix a silly issue with the argument to nregcomp, as it's 
confusing to the caller
++  * src/nano.h: Change the color types to a compiler macro (COLORWIDTH), 
may not actually 
++even be worth doing, but someday who knows how wide a color curses 
implementation might 
++be, and maybe we'll even start checking for it in autoconf!
++
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/src/nano.h 
nano/src/nano.h
+--- nano_2_3_1/src/nano.h  2011-12-18 22:20:10.0 +0100
 nano/src/nano.h2012-07-07 01:41:55.0 +0200
+@@ -192,0 +193 @@
++#define COLORWIDTH short
+@@ -194 +195 @@
+-short fg;
++COLORWIDTH fg;
+@@ -196 +197 @@
+-short bg;
++COLORWIDTH bg;
+@@ -215 +216,3 @@
+- int id;
++bool overlap;
++  /* Is it acceptable for other regexes to overlap this one? */
++int id;
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/src/proto.h 
nano/src/proto.h
+--- nano_2_3_1/src/proto.h 2011-12-18 22:20:10.0 +0100
 nano/src/proto.h   2012-07-07 01:41:55.0 +0200
+@@ -554 +554 @@
+-bool nregcomp(const char *regex, int eflags);
++bool nregcomp(const char *regex, int cflags);
+diff --unidirectional-new-file -U 0 -rx .svn nano_2_3_1/src/rcfile.c 
nano/src/rcfile.c
+--- nano_2_3_1/src/rcfile.c2011-12-18 22:20:10.0 +0100
 nano/src/rcfile.c  2012-07-07 01:41:55.0 +0200
+@@ -228 +228 @@
+-bool nregcomp(const char *regex, int eflags)
++bool nregcomp(const char *regex, int cflags)
+@@ -232 +232 @@
+-int rc = regcomp(preg, r, REG_EXTENDED | eflags);
++int rc = regcomp(preg, r, REG_EXTENDED | cflags);
+@@ -669 +669 @@
+-short color_to_short(const char *colorname, bool *bright)
++COLORWIDTH color_to_short(const char *colorname, bool *bright)
+@@ -671 +671 @@
+-short mcolor = -1;
++COLORWIDTH mcolor = -1;
+@@ -711 +711 @@
+-short fg, bg;
++COLORWIDTH fg, bg;
+@@ -861 +861

[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info,1.2,1.3

2012-05-29 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv13613

Modified Files:
openvpn.info 
Log Message:
Add missing docs and samples


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- openvpn.info28 May 2012 21:12:02 -  1.2
+++ openvpn.info29 May 2012 20:26:20 -  1.3
@@ -1,6 +1,6 @@
 Package: openvpn
 Version: 2.2.2
-Revision: 1
+Revision: 2
 Description: Virtual private network daemon
 License: GPL
 Maintainer: Andreas Gockel fink-open...@unixforge.de
@@ -37,17 +37,18 @@
  /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/2.0
  chmod a-x %i/share/doc/%n/examples/easy-rsa/2.0/{vars,openssl-*.cnf}
  /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/1.0
- install -d -m 755 %i/{include,lib,share}/%n
+ install -d -m 755 %i/{etc,include,lib,share}/%n
  install -m 755 sample-scripts/verify-cn %i/share/%n
  install -m 644 plugin/auth-pam/%n-auth-pam.so %i/lib/%n
  install -m 644 plugin/down-root/%n-down-root.so %i/lib/%n
  install -m 644 %n-plugin.h %i/include/%n/%n-plugin.h
+ cp -a sample-{config-files,keys,scripts} %i/share/doc/%n/examples/
 
 DocFiles: 
- AUTHORS COPYING COPYRIGHT.GPL ChangeLog 
- INSTALL NEWS PORTS README
- plugin/auth-pam/README:README.auth-pam
- plugin/down-root/README:README.down-root
+ AUTHORS COPYRIGHT.GPL:copyright ChangeLog:changelog
+ PORTS README ChangeLog.IPv6 README.ipv6 README.IPv6:README.IPv6-2
+ plugin/auth-pam/README:README.auth-pam TODO.IPv6:TODO.IPv6-2
+ plugin/down-root/README:README.down-root TODO.ipv6
 
 Homepage: http://openvpn.net/
 DescDetail: 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/editors joe.info,1.1,1.2

2012-05-28 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors
In directory vz-cvs-3.sog:/tmp/cvs-serv9995

Modified Files:
joe.info 
Log Message:
Add missing depends for xcode 4.3
Update jupprc


Index: joe.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/editors/joe.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- joe.info4 Sep 2011 20:08:46 -   1.1
+++ joe.info28 May 2012 17:15:36 -  1.2
@@ -1,17 +1,17 @@
 Package: joe
 Version: 3.7
-Revision: 1007
+Revision: 1008
 Description: User friendly full screen text editor
 License: GPL
 Maintainer: Andreas Gockel fink-...@unixforge.de
 Depends: libncurses5-shlibs (= 5.4-20041023-1001)
-BuildDepends: libncurses5 (= 5.4-20041023-1001), fink (= 0.24.12)
+BuildDepends: libncurses5 (= 5.4-20041023-1001), fink (= 0.24.12), 
automaken, autoconf
 Suggests: ispell | aspell
 Source: mirror:sourceforge:%n-editor/%n-%v.tar.gz
 Source-MD5: 66de1b073e869ba12abbfcde3885c577
-Source2: 
http://cvsweb.allbsd.org/cvsweb.cgi/~checkout~/contrib/code/jupp/jupprc?rev=1.23content-type=text/plaincvsroot=mirbsd
-Source2Rename: %n-3_1jupp14
-Source2-MD5: 6826c484f21d0011b5c37a61b5e68b11
+Source2: 
http://cvsweb.allbsd.org/cvsweb.cgi/~checkout~/contrib/code/jupp/jupprc?rev=1.23.2.8content-type=text/plaincvsroot=mirbsd
+Source2Rename: jupprc-for-%n-3_7-1.23.2.8
+Source2-MD5: 8cb99779fadad2a8d867f62c0735b08f
 ConfigureParams: --mandir=%p/share/man --sysconfdir=%p/etc 
--disable-dependency-tracking
 CompileScript: 
  ./autojoe
@@ -22,7 +22,7 @@
  make install DESTDIR=%d
  /bin/rm %i/bin/termidx
  /bin/ln -s %n %i/bin/jupp
- /usr/bin/install -c -m 444 ../%n-3_1jupp14 %i/etc/%n/jupprc
+ /usr/bin/install -c -m 444 ../jupprc-for-%n-3_7-1.23.2.8 %i/etc/%n/jupprc
  /usr/bin/gzip -9 %i/share/man/man1/%n.1
  /usr/bin/gzip -9 %i/share/man/ru/man1/%n.1
  for i in jmacs jstar r%n jpico jupp; do \


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/net openvpn.info, 1.1, 1.2 openvpn.patch, 1.1, 1.2

2012-05-28 Thread Andreas Gockel
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/net
In directory vz-cvs-3.sog:/tmp/cvs-serv6088

Modified Files:
openvpn.info openvpn.patch 
Log Message:
Update to 2.2.2
Includes all applicable patches from debian
Backported some fixes from 2.3alpha1
Include easy-rsa


Index: openvpn.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- openvpn.info21 Aug 2011 12:54:20 -  1.1
+++ openvpn.info28 May 2012 21:12:02 -  1.2
@@ -1,5 +1,5 @@
 Package: openvpn
-Version: 2.2.1
+Version: 2.2.2
 Revision: 1
 Description: Virtual private network daemon
 License: GPL
@@ -8,13 +8,13 @@
 BuildDepends: fink (= 0.24.12), lzo2, system-openssl-dev, automaken, 
autoconf2.6
 Suggests: gawk
 Source: http://swupdate.openvpn.net/community/releases/%n-%v.tar.gz
-Source-MD5: 500bee5449b29906150569aaf2eb2730
+Source-MD5: c5181e27b7945fa6276d21873329c5c7
 PatchFile: %n.patch
-Patchfile-MD5: 3527d8ef30a0c3fd81217a7877e4f62a
-SetCPPFLAGS: -I%p/lib/system-openssl/include
-SetLDFLAGS: -L%p/lib/system-openssl/lib
-SetCFLAGS: -Wno-deprecated-declarations
-#SetCC: /usr/bin/gcc-4.2
+Patchfile-MD5: 34fd9737b71af12aed9422f482b29243
+SetCFLAGS: -g -O2 -fstack-protector -Wformat -Werror=format-security 
-Wno-deprecated-declarations
+SetCPPFLAGS: -D_FORTIFY_SOURCE=2 -I%p/lib/system-openssl/include
+SetCXXFLAGS: -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security
+SetLDFLAGS: -Wl,-read_only_stubs -L%p/lib/system-openssl/lib
 ConfigureParams: 
  --disable-dependency-tracking\
  --disable-pkcs11\
@@ -29,13 +29,25 @@
  autoreconf-2.68
  ./configure %c
  /usr/bin/make prefix=%i
+ /usr/bin/make -C plugin/auth-pam/ prefix=%i
+ /usr/bin/make -C plugin/down-root/ prefix=%i
 
 InstallScript: 
  /usr/bin/make install prefix=%i
+ /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/2.0
+ chmod a-x %i/share/doc/%n/examples/easy-rsa/2.0/{vars,openssl-*.cnf}
+ /usr/bin/make -C easy-rsa/2.0 install 
DESTDIR=%i/share/doc/%n/examples/easy-rsa/1.0
+ install -d -m 755 %i/{include,lib,share}/%n
+ install -m 755 sample-scripts/verify-cn %i/share/%n
+ install -m 644 plugin/auth-pam/%n-auth-pam.so %i/lib/%n
+ install -m 644 plugin/down-root/%n-down-root.so %i/lib/%n
+ install -m 644 %n-plugin.h %i/include/%n/%n-plugin.h
 
 DocFiles: 
- AUTHORS COPYING COPYRIGHT.GPL ChangeLog
+ AUTHORS COPYING COPYRIGHT.GPL ChangeLog 
  INSTALL NEWS PORTS README
+ plugin/auth-pam/README:README.auth-pam
+ plugin/down-root/README:README.down-root
 
 Homepage: http://openvpn.net/
 DescDetail: 
@@ -54,11 +66,8 @@
  Previous Maintainer:
   = 2.0.7 ASARI Takashi as...@users.sourceforge.net
 
-#DescPort: 
-# This Port includes all applicable patches from debian and
-# a patch for undefined IPV6_RECVPKTINFO on BSD-based operating systems
-#
-#DescPort: 
-# This port has a patch for undefined IPV6_RECVPKTINFO
-# on BSD-based operating systems
-#
+DescPort: 
+ Includes all applicable patches from debian
+ Backported some fixes from 2.3alpha1
+ Include easy-rsa
+

Index: openvpn.patch
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/net/openvpn.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- openvpn.patch   21 Aug 2011 12:54:20 -  1.1
+++ openvpn.patch   28 May 2012 21:12:02 -  1.2
@@ -1,21 +1,1980 @@
-diff -rauN openvpn-2.2.1/socket.c openvpn-2.2.1-p1/socket.c
 openvpn-2.2.1/socket.c 2011-06-24 08:13:39.0 +0200
-+++ openvpn-2.2.1-p1/socket.c  2011-08-20 11:19:46.0 +0200
-@@ -35,6 +35,10 @@
+diff -rauN openvpn-2.2.2/ChangeLog.IPv6 openvpn-2.2.2-p1/ChangeLog.IPv6
+--- openvpn-2.2.2/ChangeLog.IPv6   1970-01-01 01:00:00.0 +0100
 openvpn-2.2.2-p1/ChangeLog.IPv62012-05-28 19:40:12.0 +0200
+@@ -0,0 +1,394 @@
++Do 31. Dez 15:32:40 CET 2009 Gert Doering
++
++  * Basic IPv6 p2mp functionality implemented
[...8117 lines suppressed...]
+   DWORD flags;
+   int status;
+   bool addr_defined;
+-  struct sockaddr_in addr;
++  union {
++struct sockaddr_in addr;
++struct sockaddr_in6 addr6;
++  };
+   int addrlen;
+   struct buffer buf_init;
+   struct buffer buf;
+@@ -269,6 +272,8 @@
+ 
+ /* call self in a subprocess */
+ void fork_to_self (const char *cmdline);
++const char *inet_ntop(int af, const void *src, char *dst, socklen_t size);
++int inet_pton(int af, const char *src, void *st);
+ 
+ /* Find temporary directory */
+ const char *win_get_tempdir();


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile 

[cvs] experimental/gecko2/scripts rss-newpackages.pl,NONE,1.1

2012-04-19 Thread Andreas Gockel
Update of /cvsroot/fink/experimental/gecko2/scripts
In directory vz-cvs-3.sog:/tmp/cvs-serv13809

Added Files:
rss-newpackages.pl 
Log Message:
Backup this somewhere =)


--- NEW FILE: rss-newpackages.pl ---
#!/usr/bin/perl

$|++;

use lib '/home/fink/cvs/fink/perlmod';
use lib '/home/fink/cvs/scripts';

use utf8;
use Cwd qw(abs_path);
use Data::Dumper;
use Encode;
use Fcntl qw(:DEFAULT :flock);
use File::Basename;
use File::Copy;
use File::Find;
use File::MMagic;
use Fink::Package;
use Fink::PkgVersion;
use Storable;
use Text::Wrap qw(fill $columns);
use URI::Find;
use XML::RSS;

$columns = 76;

#use utf8;
use strict;

open (LOCKFILE, '/home/fink/.local/run/rss-newpackages.lock') or die could 
not open lockfile for append: $!;
my $return = flock(LOCKFILE, LOCK_EX | LOCK_NB);
die another process is already running if (not $return);

use vars qw(
  $CUTOFF
  $DAYS
  $DISTDIR
  $DOCVS
  $DOSCP
  $EXPDIR
  $NOW
  $PREFIX
  $SYNC_WAIT
  $TOPDIR

  @FILES

  $STABLE_RSS
  $UNSTABLE_RSS
  $UNSTABLE_PARENT_RSS

  %EXPERIMENTAL_PACKAGES
  %STABLE_PACKAGES
  %STABLE_PARENT_PACKAGES
  %UNSTABLE_PACKAGES
  %UNSTABLE_PARENT_PACKAGES

  %CVS_FILES

  $CACHE
  $DOCACHE

  $basepath
  $Config

  $URIFINDER
  $MAGIC
);

$basepath  = '/home/fink/.local/sw';
$TOPDIR= abs_path( dirname($0) );
$DAYS  = 5; # number of days to look 
back
$NOW   = time;
$CUTOFF= ( $NOW - ( 60 * 60 * 24 * $DAYS ) );
$PREFIX= '/home/fink/.local/tmp/fink-rss';
$SYNC_WAIT = 60 * 60 * 1;
$DISTDIR   = $PREFIX . '/dists';
$EXPDIR= $PREFIX . '/experimental';
$DOSCP = 1;
$DOCVS = 1;
$DOCACHE   = 0;
#$DISTDIR   = '/sw/fink' if ( -e '/sw/fink/dists' );

$MAGIC = File::MMagic-new();
$URIFINDER = URI::Find-new(
sub {
my ( $uri, $orig_uri ) = @_;
return qq|a href=$uri$orig_uri/a|;
}
);

if ( -f $PREFIX . '/rss.cache' and $DOCACHE )
{
$CACHE = retrieve($PREFIX . '/rss.cache');
}

print - updating cvs repository... ;
`mkdir -p '$PREFIX'`;
if ($DOSCP)
{
if ( -d $DISTDIR )
{
`cd $DISTDIR; cvs -d 
:pserver:anonymous\@fink.cvs.sourceforge.net:/cvsroot/fink up -A 
$PREFIX/dists.log 21`;
}
else
{
`cd $PREFIX; cvs -d 
:pserver:anonymous\@fink.cvs.sourceforge.net:/cvsroot/fink co dists 
$PREFIX/dists.log 21`;
}
if ( -d $EXPDIR )
{
`cd $EXPDIR; cvs -d 
:pserver:anonymous\@fink.cvs.sourceforge.net:/cvsroot/fink up -A 
$PREFIX/experimental.log 21`;
}
else
{
`cd $PREFIX; cvs -d 
:pserver:anonymous\@fink.cvs.sourceforge.net:/cvsroot/fink co experimental 
$PREFIX/experimental.log 21`;
}
}
print done\n;

print - searching for new info files... ;

my %options = (
dontask = 0,
interactive = 0,
verbosity   = 0,
keep_build  = 0,
keep_root   = 0,
);

require Fink::Config;
$Fink::Config::ignore_errors++;

my $configpath;
$configpath = $basepath/etc/fink.conf;
if ( -f $configpath )
{
$Config =
  Fink::Services::read_config( $configpath, { Basepath = $basepath 
} );
}

find( { wanted = \find_infofiles, follow = 0 }, $DISTDIR . '/' );
find( { wanted = \find_infofiles, follow = 0 }, $EXPDIR . '/' );

print done\n;

print - getting CVS log info... ;
get_cvs_log($DISTDIR);
get_cvs_log($EXPDIR);
print done\n;

#print Dumper(%STABLE_PACKAGES), \n;
#print Dumper(%UNSTABLE_PACKAGES), \n;
#print Dumper(%EXPERIMENTAL_PACKAGES), \n;

print - generating RSS...\n;
make_rss( \%STABLE_PACKAGES,  'Stable' );
make_rss( \%STABLE_PARENT_PACKAGES, 'Stable - No Splitoffs' );
make_rss( \%UNSTABLE_PACKAGES,'Unstable' );
make_rss( \%EXPERIMENTAL_PACKAGES,'Experimental' );
make_rss( \%UNSTABLE_PARENT_PACKAGES, 'Unstable - No Splitoffs' );

store( $CACHE, $PREFIX . '/rss.cache' ) if ( $CACHE and $DOCACHE );

if ($DOSCP)
{
print - copying feeds to the Fink website... ;
for my $file (@FILES)
{
copy($file, '/var/www/www.finkproject.org/xml/web/news/rdf/') 
or die unable to copy $file to news/rdf/: $!;
#chmod(0664, '/var/www/www.finkproject.org/xml/web/news/rdf/' . 
$file) or warn unable to change mode on $file: $!;
}
print done\n;
}

sub w3c_date
{
my @time = localtime( int(shift) );
$time[5] += 1900;
$time[4] += 1;

return sprintf( '%04d-%02d-%02dT%02d:%02d:%02d-05:00',
$time[5], $time[4], $time[3], $time[2], $time[1], $time[0] );
}

sub iso_date
{
my @time = localtime( int(shift) );
$time[5] += 1900;
$time[4] += 1;

my @days = ( 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat' );
my @months = (
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
);

return sprintf(
'%s, %02d %s %04d 

  1   2   3   4   5   >