[cvs] dpkg-base-files ChangeLog, 1.9, 1.10 dpkg-base-files.info.in, 1.3, 1.4 postinst.in, 1.2, 1.3 postrm.in, 1.2, 1.3 preinst.in, 1.2, 1.3 prerm.in, 1.2, 1.3

2009-12-20 Thread Daniel Macks
Update of /cvsroot/fink/dpkg-base-files
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28958

Modified Files:
ChangeLog dpkg-base-files.info.in postinst.in postrm.in 
preinst.in prerm.in 
Log Message:
dpkg hack updated to pass target %n as first param to wrapper scripts


Index: postinst.in
===
RCS file: /cvsroot/fink/dpkg-base-files/postinst.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postinst.in 20 Dec 2009 05:08:31 -  1.2
+++ postinst.in 20 Dec 2009 08:08:37 -  1.3
@@ -1,14 +1,20 @@
 #!/bin/sh -e
 
 # called from dpkg with:
-#   $1full path to .deb postinst script (blank if there is none in .deb)
-#   $2... parameter list normally passed as $1... per debian documentation
+#   $1package name
+#   $2full path to .deb postinst script (blank if there is none in .deb)
+#   $3... parameter list normally passed as $1... per debian documentation
 # See: 
http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
-# NB: this script *must* run $1 with $2... parameters at some point
+# NB: this script *must* run $2 with $3... parameters at some point
 
 . @PREFIX@/bin/init.sh
 
-echo "postinst for '$1'"
+echo "postinst for package '$1'"
+shift;
+for x in $@; do
+   echo "  '$x'"
+done
+
 if [ "$2" = "configure" ]; then
 echo "phase 'configure': would clean up .la files being installed"
 for x in $@; do

Index: ChangeLog
===
RCS file: /cvsroot/fink/dpkg-base-files/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ChangeLog   20 Dec 2009 05:08:31 -  1.9
+++ ChangeLog   20 Dec 2009 08:08:37 -  1.10
@@ -1,5 +1,10 @@
 2009-12-19  Daniel Macks  
 
+   * dpkg-base-files.info.in, preinst.in, postinst.in, prerm.in,
+   postrm.in: dpkg now passes %n as first CLI parameter
+
+2009-12-19  Daniel Macks  
+
* dpkg-base-files.info.in, postinst.in: debugging output to see
how we are called
* preinst.in, postinst.in, prerm.in, postrm.in: link Debian docs

Index: dpkg-base-files.info.in
===
RCS file: /cvsroot/fink/dpkg-base-files/dpkg-base-files.info.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- dpkg-base-files.info.in 20 Dec 2009 05:08:31 -  1.3
+++ dpkg-base-files.info.in 20 Dec 2009 08:08:37 -  1.4
@@ -1,7 +1,7 @@
 Package: dpkg-base-files
 Version: @VERSION@
 Revision: @REVISION@
-Depends: dpkg (>= 1.10.21-1228.2)
+Depends: dpkg (>= 1.10.21-1228.3)
 Source: @SOURCE@
 Essential: yes
 Source-MD5: @MD5@

Index: postrm.in
===
RCS file: /cvsroot/fink/dpkg-base-files/postrm.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- postrm.in   20 Dec 2009 05:08:31 -  1.2
+++ postrm.in   20 Dec 2009 08:08:37 -  1.3
@@ -1,11 +1,13 @@
 #!/bin/sh -e
 
 # called from dpkg with:
-#   $1full path to .deb postrm script (blank if there is none in .deb)
-#   $2... parameter list normally passed as $1... per debian documentation
+#   $1package name
+#   $2full path to .deb postrm script (blank if there is none in .deb)
+#   $3... parameter list normally passed as $1... per debian documentation
 # See: 
http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
-# NB: this script *must* run $1 with $2... parameters at some point
+# NB: this script *must* run $2 with $3... parameters at some point
 
 . @PREFIX@/bin/init.sh
 
+shift;
 [ -z $1 ] || "$@"

Index: prerm.in
===
RCS file: /cvsroot/fink/dpkg-base-files/prerm.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- prerm.in20 Dec 2009 05:08:31 -  1.2
+++ prerm.in20 Dec 2009 08:08:37 -  1.3
@@ -1,11 +1,13 @@
 #!/bin/sh -e
 
 # called from dpkg with:
-#   $1full path to .deb prerm script (blank if there is none in .deb)
-#   $2... parameter list normally passed as $1... per debian documentation
+#   $1package name
+#   $2full path to .deb prerm script (blank if there is none in .deb)
+#   $3... parameter list normally passed as $1... per debian documentation
 # See: 
http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html
-# NB: this script *must* run $1 with $2... parameters at some point
+# NB: this script *must* run $2 with $3... parameters at some point
 
 . @PREFIX@/bin/init.sh
 
+shift;
 [ -z $1 ] || "$@"

Index: preinst.in
===
RCS file: /cvsroot/fink/dpkg-base-files/preinst.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- preinst.in  20 Dec 2009 05:08:31 -  1.

[cvs] experimental/dmacks/finkinfo dpkg.info, 1.15, 1.16 dpkg.patch, 1.13, 1.14

2009-12-20 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29050

Modified Files:
dpkg.info dpkg.patch 
Log Message:
pass target %n as first param to wrapper scripts
NB: this is a nightmare update from previous (.2) form due to this change...
may have to rm the wrapper scripts manually as root


Index: dpkg.patch
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/dpkg.patch,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- dpkg.patch  18 Dec 2009 06:08:56 -  1.13
+++ dpkg.patch  20 Dec 2009 08:09:58 -  1.14
@@ -2636,8 +2636,8 @@
  ohshit(_("subprocess %s returned error exit status 
%d"),description,n);
 diff -Nurd dpkg-1.10.21.orig/main/help.c dpkg-1.10.21/main/help.c
 --- dpkg-1.10.21.orig/main/help.c  2003-10-25 16:03:21.0 +0400
-+++ dpkg-1.10.21/main/help.c   2007-03-27 03:25:59.0 -0400
-@@ -180,7 +180,7 @@
 dpkg-1.10.21/main/help.c   2009-12-20 02:37:43.0 -0400
+@@ -180,7 +187,7 @@
}
if (f_debug & dbg_scripts) {
  fprintf(stderr,"D0%05o: fork/exec %s (",dbg_scripts,path);
@@ -2646,7 +2646,7 @@
  fputs(" )\n",stderr);
}
instdirl= strlen(instdir);
-@@ -256,17 +263,66 @@
+@@ -256,17 +263,75 @@
  static int do_script(const char *pkg, const char *scriptname, const char 
*scriptpath, struct stat *stab, char *const arglist[], const char *desc, const 
char *name, int warn) {
const char *scriptexec;
int c1, r;
@@ -2666,8 +2666,8 @@
 -narglist=nfmalloc((r+1)*sizeof(char*));
 +// narglist=nfmalloc((r+1)*sizeof(char*));
 +/* FINK LOCAL begin */
-+full_narglist=nfmalloc((r+2)*sizeof(char*));  // leave space for wrapper
-+narglist=full_narglist+1;  // orig pointer points to orig array
++full_narglist=nfmalloc((r+3)*sizeof(char*));  // leave space for 
wrapper-script-name, package-name, add NULL terminator
++narglist=full_narglist+2;  // orig pointer points to orig array (skip 
over our prepended stuff)
 +/* FINK LOCAL end */
  for (r=1; arglist[r-1]; r++)
narglist[r]= arglist[r];
@@ -2691,6 +2691,15 @@
 +narglist=full_narglist;
 +scriptexec= preexecscript(path_wrapper,narglist);
 +narglist[0]= scriptexec;
++
++/*
++  Global wrapper needs way to introspect name of package
++  being manipulated. Normal .deb scripts could have this
++  hard-coded in their script because this info is known at
++  the time the .deb is constructed. Pass the name as the
++  first command-line parameter to the wrapper.
++*/
++narglist[1]= pkg;
 +  } else {
 +debug(dbg_scripts,"Wrapper script '%s' wrong perms", path_wrapper);
 +if (scriptpath) {
@@ -2714,7 +2723,7 @@
  execv(scriptexec,narglist);
  ohshite(desc,name);
}
-@@ -294,8 +350,13 @@
+@@ -294,8 +359,13 @@
if (stat(scriptpath,&stab)) {
  if (errno == ENOENT) {
debug(dbg_scripts,"maintainer_script_installed nonexistent 
%s",scriptname);
@@ -2730,7 +2739,7 @@
  ohshite(_("unable to stat installed %s script 
`%.250s'"),description,scriptpath);
}
do_script(pkg->name, scriptname, scriptpath, &stab, arglist, _("unable to 
execute %s"), buf, 0);
-@@ -320,8 +381,14 @@
+@@ -320,8 +390,14 @@
if (stat(cidir,&stab)) {
  if (errno == ENOENT) {
debug(dbg_scripts,"maintainer_script_new nonexistent %s 
`%s'",scriptname,cidir);
@@ -2747,7 +2756,7 @@
  ohshite(_("unable to stat new %s script `%.250s'"),description,cidir);
}
do_script(pkgname, scriptname, cidir, &stab, arglist, _("unable to execute 
new %s"), buf, 0);
-@@ -348,16 +415,19 @@
+@@ -348,16 +424,19 @@
  if (errno == ENOENT) {
debug(dbg_scripts,"maintainer_script_alternative nonexistent %s `%s'",
  scriptname,oldscriptpath);
@@ -2771,7 +2780,7 @@
fprintf(stderr, _("dpkg - trying script from the new package instead 
...\n"));
  
arglist= buildarglist(scriptname,
-@@ -367,6 +437,9 @@
+@@ -367,6 +446,9 @@
strcpy(cidirrest,scriptname);
sprintf(buf,_("new %s script"),description);
  

Index: dpkg.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/dpkg.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- dpkg.info   18 Dec 2009 06:20:55 -  1.15
+++ dpkg.info   20 Dec 2009 08:09:58 -  1.16
@@ -1,6 +1,6 @@
 Package: dpkg
 Version: 1.10.21
-Revision: 1228.2
+Revision: 1228.3
 GCC: 4.0
 BuildDepends: fink (>= 0.24.12)
 Depends: libgettext3-shlibs, libiconv (>= 1.11-1), gzip, tar, 
libncurses5-shlibs (>= 5.4-20041023-1006)
@@ -12,7 +12,7 @@
 Source2: mirror:sourceforge:fink/gettext-0.14.5.tar.gz
 Source2-MD5: e2f6581626a22a0de66dce1d81d00de3
 PatchFile: %n.patch
-PatchFile-MD5: 3c9b3c0b6d95a26d48d3f0c5a0dd94d8
+PatchFile-MD5: 1

[cvs] dpkg-base-files ChangeLog,1.10,1.11 postinst.in,1.3,1.4

2009-12-20 Thread Daniel Macks
Update of /cvsroot/fink/dpkg-base-files
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31752

Modified Files:
ChangeLog postinst.in 
Log Message:
now we can find the .la list


Index: postinst.in
===
RCS file: /cvsroot/fink/dpkg-base-files/postinst.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- postinst.in 20 Dec 2009 08:08:37 -  1.3
+++ postinst.in 20 Dec 2009 08:38:54 -  1.4
@@ -10,15 +10,13 @@
 . @PREFIX@/bin/init.sh
 
 echo "postinst for package '$1'"
+pkg=$1
 shift;
-for x in $@; do
-   echo "  '$x'"
-done
 
 if [ "$2" = "configure" ]; then
-echo "phase 'configure': would clean up .la files being installed"
-for x in $@; do
-   echo "  '$x'"
+echo "configuring $pkg: would clean up .la files being installed:"
+for lafile in `grep '\.la$' "/sw/var/lib/dpkg/info/$pkg.list"`; do
+   echo "$lafile"
 done
 fi
 

Index: ChangeLog
===
RCS file: /cvsroot/fink/dpkg-base-files/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- ChangeLog   20 Dec 2009 08:08:37 -  1.10
+++ ChangeLog   20 Dec 2009 08:38:54 -  1.11
@@ -1,5 +1,9 @@
 2009-12-19  Daniel Macks  
 
+   * postinst.in: figure out the being-installed list of .la
+
+2009-12-19  Daniel Macks  
+
* dpkg-base-files.info.in, preinst.in, postinst.in, prerm.in,
postrm.in: dpkg now passes %n as first CLI parameter
 


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/jessealama/finkinfo mizar.patch, NONE, 1.1 mizar-i386.info, 1.1, 1.2 mizar-x86_64.info, 1.1, 1.2

2009-12-20 Thread Jesse Alama
Update of /cvsroot/fink/experimental/jessealama/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv

Modified Files:
mizar-i386.info mizar-x86_64.info 
Added Files:
mizar.patch 
Log Message:
Since mizar-mode is part of the upstream distro, make it a splitoff of mizar.

* Mizar mode for emacs is now contained within the upstream
  distribution tarball for mizar; there's no need for an independent
  package, mizar-mode, which I also maintain.  This update
  accomplishes that change.

  Since the version scheme for Mizar mode is now the same as the
  version scheme for the whole upstream distro, the Epoch for this
  update of mizar is set to 1 to ensure that the newly created
  mizar-mode splitoff is the "real" mizar-mode rather than the (very)
  old one that used to exist independently.

* Update maintainer email.


Index: mizar-x86_64.info
===
RCS file: /cvsroot/fink/experimental/jessealama/finkinfo/mizar-x86_64.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mizar-x86_64.info   9 Dec 2009 09:21:58 -   1.1
+++ mizar-x86_64.info   20 Dec 2009 13:08:22 -  1.2
@@ -1,8 +1,9 @@
 Package: mizar
 Depends: mizar-bin, mizar-mml, mizar-doc
 Architecture: x86_64
+Epoch: 1
 Version: 7.11.04-4.130.1076
-Revision: 1
+Revision: 2
 Description: Build and check first-order formal proofs
 Recommends: mizar-semantic-mml, mizar-gab, mizar-mode, mizar-gab-html
 DescDetail: <<
@@ -24,10 +25,18 @@
 Installing this package will install the Mizar binaries,
 documentation, and the MML.
 << 
-Maintainer: Jesse Alama 
+Maintainer: Jesse Alama 
 Homepage: http://www.mizar.org/
 Source: 
ftp://mizar.uwb.edu.pl/pub/system/i386-darwin/%n-7.11.04_4.130.1076-i386-darwin.tar
 Source-MD5: 1b306aedefcedcb914a0e0dae8825728
+Source2: http://ktilinux.ms.mff.cuni.cz/~urban/MizarModeDoc/MizarMode.info
+Source2-MD5: b669d27408817ee86769efa1c424b1e1
+Source3: http://ktilinux.ms.mff.cuni.cz/~urban/MizarModeDoc/MizarMode.pdf
+Source3-MD5: 54c351365b1d4b1ce3bd0a4c302069a0
+BuildDepends: fink (>= 0.24.12)
+PatchFile: %n.patch
+PatchFile-MD5: 030ffbd6f2b5fd8cf9bf3f5500772e7e
+PatchScript: sed 's|@PREFIX@|%p|g' < %{PatchFile} | patch -p1
 NoSourceDirectory: true
 DocFiles: README
 License: Commercial
@@ -40,12 +49,25 @@
   tar Cxfz %i/share/doc/mizar mizdoc.tar.gz
   mkdir -p %i/share/mizar
   tar Cxfz %i/share/mizar mizshare.tar.gz
-  # Clean up unneeded stuff related to emacs -- these files 
-  # (and more)are included in another package (mizar-mode)
-  rm %i/share/doc/mizar/.emacs
-  rm %i/share/mizar/mizar.el
-  # As of January 15, 2007, the graphviz package contains a file called
-  # %p/bin/prune; let's mark our prune with a special suffix.
+
+  # emacs
+  mkdir -p %i/share/emacs/site-lisp/mizar
+  mv %i/share/mizar/mizar.el %i/share/emacs/site-lisp/mizar
+
+  # emacs doc
+  mkdir -p %i/share/info
+  install -m 644 MizarMode.info %i/share/info/MizarMode
+  mkdir -p %i/share/doc/mizar-mode
+  install -m 644 MizarMode.pdf %i/share/doc/mizar-mode
+
+  # emacsen-common setup
+  mkdir -p %i/lib/emacsen-common/packages/install
+  mkdir -p %i/lib/emacsen-common/packages/remove
+  install -m 755 emacsen-install 
%i/lib/emacsen-common/packages/install/mizar-mode
+  install -m 755 emacsen-remove 
%i/lib/emacsen-common/packages/remove/mizar-mode
+
+  # The graphviz package contains a file called
+  # %p/bin/prune; let's mark mizar's prune with a special suffix.
   mv %i/bin/prune %i/bin/prune.mizar
 <<
 SplitOff: <<
@@ -123,3 +145,84 @@
 share/doc/mizar/xml
   <<
 <<
+SplitOff4: <<
+  Package: mizar-mode
+  Depends: emacsen-common, %N
+  License: GPL
+  Description: Work with Mizar files in Emacs
+  Homepage: http://wiki.mizar.org/bin/view/Mizar/MizarMode
+  Files: <<
+lib/emacsen-common/packages/install/%n
+lib/emacsen-common/packages/remove/%n
+share/emacs/site-lisp/mizar/mizar.el
+share/doc/%n/MizarMode.pdf
+share/info/MizarMode
+  <<
+  InfoDocs: MizarMode
+  PostInstScript: %p/lib/emacsen-common/emacs-package-install %n
+  PreRmScript: %p/lib/emacsen-common/emacs-package-remove %n
+  DescDetail: <<
+(For more information on Mizar, see http://www.mizar.org)
+
+The Emacs authoring environment for Mizar (MizarMode) is today the
+authoring tool of choice for many (probably the majority of) Mizar
+authors.
+
+Mizar is a non-programmable and non-tactical verifier; proofs are
+developed in the traditional `write-compile-correct' software
+programming loop. While this method is in the beginning more laborious
+than the methods employed in tactical and programmable proof
+assistants, it makes the `proof code' in the long-run more readable,
+maintainable and reusable. This seems to be a crucial factor for a
+long-term and large-scale formalization effort.
+
+MizarMode has been designed to facilitate this kind of proof
+development by a number of `code-generating', `code-browsing' and
+`code

[cvs] dists/10.4/stable/main/finkinfo/sci geda-gaf.info,NONE,1.1

2009-12-20 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17493

Added Files:
geda-gaf.info 
Log Message:
gEDA: finish moving 1.6.0 to stable


--- NEW FILE: geda-gaf.info ---
Package: geda-gaf
Epoch: 1
Version: 1.6.0
Revision: 3

Replaces: <<
  geda-doc (<< 1:1.6.0-1),
  geda-examples (<< 1:1.6.0-1),
  geda-gattrib (<< 1:1.6.0-1),
  geda-gnetlist (<< 1:1.6.0-1),
  geda-gschem (<< 1:1.6.0-1),
  geda-gsymcheck (<< 1:1.6.0-1),
  geda-symbols (<< 1:1.6.0-1),
  geda-utils (<< 1:1.6.0-1),
  libgeda (<< 1:1.6.0-1),
  libgeda33-shlibs (<< 1:1.6.0-1),
  libgeda33-data (<< 1:1.6.0-1)
<<

Depends: <<
  atk1-shlibs (>= 1.20.0-1),
  desktop-file-utils,
  gd2-shlibs,
  glib2-shlibs (>= 2.14.0-1),
  gmp-shlibs,
  gtk+2-shlibs (>= 2.12.0-1),
  guile18-shlibs,
  libgettext3-shlibs,
  libiconv,
  libjpeg-shlibs,
  libpng3-shlibs (>= 1:1.2.16-1),
  libstroke-shlibs,
  pango1-xft2-ft219 (>= 1.18.4-4),
  pixman-shlibs,
  shared-mime-info,
  x11-shlibs
<<

# gmp and libtool1.4 are apparently required by guile-1.8.
BuildDepends: <<
  atk1 (>= 1.20.0-1),
  cairo (>= 1.6-1),
  expat1,
  fink (>= 0.28.0-1),
  fontconfig2-dev (>= 2.4.1-1),
  freetype219 (>= 2.3.5-1),
  gd2,
  gettext-tools,
  glib2-dev (>= 2.14.0-1),
  glitz,
  gmp,
  gtk+2-dev (>= 2.12.0-1),
  guile18,
  guile18-dev,
  intltool40,
  libgettext3-dev,
  libiconv,
  libiconv-dev,
  libjpeg,
  libpng3 (>= 1:1.2.16-1),
  libstroke,
  libtool14 (>= 1.5.26-1),
  pango1-xft2-ft219-dev (>= 1.18.4-4),
  pixman (>= 0.10.0-1),
  pkgconfig (>= 0.21-1),
  texi2html | texlive-nox-base | texlive-base | tetex-base,
  x11-dev,
  xft2-dev
<<

Source: http://www.geda.seul.org/release/v1.6/%v/%n-%v.tar.gz
Source-MD5: 1dacc71407e69d77eaf4c1115f5bcd56

SetCPPFLAGS: -I%p/lib/pango-ft219/include/pango-1.0 
-I%p/lib/pango-ft219/include -I%p/lib/freetype219/include/freetype2 
-I%p/lib/freetype219/include -I%p/lib/fontconfig2/include
NoSetLDFLAGS: true
SetLDFLAGS: -L%p/lib/pango-ft219/lib -L%p/lib/freetype219/lib 
-L%p/lib/fontconfig2/lib
SetLIBS: -L%p/lib
SetCFLAGS: -Os -pipe
ConfigureParams: --with-rcdir=%p/etc/gEDA --libdir=%p/lib/libgeda 
--infodir=%p/share/info GUILE=%p/bin/guile-1.8 
GUILE_CONFIG=%p/bin/guile-1.8-config --disable-dependency-tracking 
--disable-update-xdg-database 
PKG_CONFIG_PATH="%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
 FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config

BuildDependsOnly: false
Shlibs: <<
  !%p/lib/libgeda/libgeda.38.dylib
<<

InstallScript: <<
  make -j1 install DESTDIR=%d
  rm -f %i/share/applications/mimeinfo.cache
<<

PostInstScript: <<
  [ -x %p/bin/update-desktop-database ] && update-desktop-database -q || :
  %p/bin/gtk-update-icon-cache -f -t %p/share/icons/hicolor
<<

PostRmScript: <<
  [ -x %p/bin/update-desktop-database ] && update-desktop-database -q || :
  [ -x %p/bin/gtk-update-icon-cache ] && %p/bin/gtk-update-icon-cache -f -t 
%p/share/icons/hicolor || :
<<

SplitOff: <<
  Package: libgeda33-shlibs
  Depends: geda-gaf (>= 1:1.6.0-1), fink-obsolete-packages
  Description: Placeholder to update libgeda33-shlibs to geda-gaf (OBSOLETE)
  InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
  <<
<<

SplitOff2: <<
  Package:   libgeda33-data
  Provides:  libgeda-data
  Conflicts: libgeda26-data, libgeda27-data, libgeda28-data, libgeda29-data, 
libgeda31-data
  Replaces:  libgeda26-data, libgeda27-data, libgeda28-data, libgeda29-data, 
libgeda31-data
  Description: Placeholder to update libgeda to geda-gaf (OBSOLETE)
  Depends: geda-gaf (>= 1:1.6.0-1), fink-obsolete-packages
  InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
  <<
<<

SplitOff3: <<
  Package:   libgeda
  Description: Placeholder to update libgeda to geda-gaf (OBSOLETE)
  Depends: geda-gaf (>= 1:1.6.0-1), fink-obsolete-packages
  Homepage: http://pdb.finkproject.org/pdb/package.php/geda-gaf
  InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
  <<
<<

SplitOff4: <<
  Package: geda-doc
  Description: Placeholder to update %n to geda-gaf (OBSOLETE)
  Depends: geda-gaf (>= 1:1.6.0-1), fink-obsolete-packages
  Homepage: http://pdb.finkproject.org/pdb/package.php/geda-gaf
  InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
  <<
<<

SplitOff5: <<
  Package: geda-examples
  Description: Placeholder to update %n to geda-gaf (OBSOLETE)
  Depends: geda-gaf (>= 1:1.6.0-1), fink-obsolete-packages
  Homepage: http://pdb.finkproject.org/pdb/package.php/geda-gaf
  InstallScript: <<
mkdir -p %i/share/doc/installed-packages
touch %i/share/doc/installed-packages/%n
  <<
<<

SplitOff6: <<
  Package: geda-gattrib
  Description: Placeholder to update %n to geda-gaf (OBSOLETE)
  Depends: geda-gaf (>= 1:1.6.0-1), fin

[cvs] dists/10.4/unstable/main/finkinfo/libs boost1.41.cmake.info, NONE, 1.1

2009-12-20 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9777

Added Files:
boost1.41.cmake.info 
Log Message:
>From tracker item #2911966: New version; new build system; new maintainer

--- NEW FILE: boost1.41.cmake.info ---
Package: boost1.41.cmake
Version: 1.41.0
Revision: 1
Description: Boost C++ Libraries
DescDetail: <<
The Boost web site provides free peer-reviewed portable C++ source
libraries. The emphasis is on libraries which work well with the
C++ Standard Library. The libraries are intended to be widely useful,
and are in regular use by thousands of programmers across a broad
spectrum of applications.

A further goal is to establish "existing practice" and provide
reference implementations so that Boost libraries are suitable for
eventual standardization. Ten Boost libraries will be included in
the C++ Standards Committee's upcoming C++ Standard Library Technical
Report as a step toward becoming part of a future C++ Standard.

Although Boost was begun by members of the C++ Standards Committee
Library Working Group, participation has expanded to include thousands
of programmers from the C++ community at large.
<<
License: BSD
HomePage: http://www.boost.org
Maintainer: Abdulla Kamar 

Source: 
http://sodium.resophonic.com/boost-cmake/%v.cmake0/boost-%v.cmake0.tar.gz
Source-MD5: 351747d991e3e391fea5623d4b5c038a

Depends: %n-shlibs (= %v-%r)
BuildDepends: fink (>= 0.24.12), cmake (>= 2.6.4)
BuildDependsOnly: true
Conflicts: <<
boost-foreach,
boost1.31,
boost1.32-py23,
boost1.32-py24,
boost1.32.python,
boost1.33,
boost1.34.systempython,
boost1.34.python23,
boost1.34.python24,
boost1.34.python25,
boost1.34.nopython,
boost1.35.systempython,
boost1.35.python23,
boost1.35.python24,
boost1.35.python25,
boost1.35.python26,
boost1.35.nopython
<<
Replaces: <<
boost-foreach,
boost1.31,
boost1.32-py23,
boost1.32-py24,
boost1.32.python,
boost1.33,
boost1.34.systempython,
boost1.34.python23,
boost1.34.python24,
boost1.34.python25,
boost1.34.nopython,
boost1.35.systempython,
boost1.35.python23,
boost1.35.python24,
boost1.35.python25,
boost1.35.python26,
boost1.35.nopython
<<

CompileScript: <<
#!/bin/sh -ev
cmake -DENABLE_STATIC=off -DENABLE_DEBUG=off \
-DBUILD_SOVERSIONED=on -DINSTALL_VERSIONED=off \
-DCMAKE_INSTALL_PREFIX=%i -DINSTALL_NAME_DIR=%p/lib \
-DWITH_DOXYGEN=off -DWITH_ICU=off \
-DBZIP2_INCLUDE_DIR=/usr/include \
-DBZIP2_LIBRARIES=/usr/lib/libbz2.dylib \
-DPYTHON_INCLUDE_PATH=/usr/include/python2.5 \
-DPYTHON_EXECUTABLE=/usr/bin/python2.5 \
-DPYTHON_LIBRARIES="-framework Python" \
-DXSLTPROC_EXECUTABLE=/usr/bin/xsltproc
make
<<

InstallScript: <<
#!/bin/sh -ev
make install
cd %i/lib
for I in libboost_*.%v.dylib; do
install_name_tool -id %p/lib/$I $I
done
cd %i/include
mkdir boost-1_41
mv boost boost-1_41
ln -s boost-1_41/boost boost
<<

DocFiles: LICENSE_1_0.txt boost.png boost.css index.html rst.css libs more tools

SplitOff: <<
Package: %n-shlibs

Files: <<
lib/libboost_date_time-mt.%v.dylib
lib/libboost_filesystem-mt.%v.dylib
lib/libboost_graph-mt.%v.dylib
lib/libboost_iostreams-mt.%v.dylib
lib/libboost_prg_exec_monitor-mt.%v.dylib
lib/libboost_program_options-mt.%v.dylib
lib/libboost_python-mt.%v.dylib
lib/libboost_regex-mt.%v.dylib
lib/libboost_serialization-mt.%v.dylib
lib/libboost_signals-mt.%v.dylib
lib/libboost_system-mt.%v.dylib
lib/libboost_thread-mt.%v.dylib
lib/libboost_unit_test_framework-mt.%v.dylib
lib/libboost_wave-mt.%v.dylib
lib/libboost_wserialization-mt.%v.dylib
<<
Shlibs: <<
%p/lib/libboost_date_time-mt.%v.dylib 1.41.0 %n (>= 1.41.0-1)
%p/lib/libboost_filesystem-mt.%v.dylib 1.41.0 %n (>= 1.41.0-1)
%p/lib/libboost_graph-mt.%v.dylib 1.41.0 %n (>= 1.41.0-1)
%p/lib/libboost_iostreams-mt.%v.dylib 1.41.0 %n (>= 1.41.0-1)
%p/lib/libboost_prg_exec_monitor-mt.%v.dylib 1.41.0 %n (>= 
1.41.0-1)
%p/lib/libboost_program_options-mt.%v.dylib 1.41.0 %n (>= 
1.41.0-1)
%p/lib/libboost_python-mt.%v.dylib 1.41.0 %n (>= 1.41.0-1

[cvs] dists/10.4/unstable/main/finkinfo/base gettext-tools.info, 1.10, 1.11 libgettext3-shlibs.info, 1.10, 1.11 libgettext8-shlibs.info, 1.5, 1.6

2009-12-20 Thread Max Horn
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17982

Modified Files:
gettext-tools.info libgettext3-shlibs.info 
libgettext8-shlibs.info 
Log Message:
Removed BC with ccache & dist-cc from gettext-tools; aligned descs of some 
gettext related packages

Index: libgettext3-shlibs.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/libgettext3-shlibs.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- libgettext3-shlibs.info 9 Dec 2009 16:52:52 -   1.10
+++ libgettext3-shlibs.info 20 Dec 2009 17:26:20 -  1.11
@@ -34,7 +34,7 @@
   Depends: %N (= %v-%r), gettext-bin (>= %v-%r)
   BuildDependsOnly: true
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities (Development Files)
+  Description: GNU Internationalization utils (Development Files)
   Files: include lib/*.a lib/*.la lib/libintl.dylib lib/libasprintf.dylib 
 <<
 
@@ -43,7 +43,7 @@
   Depends: %N (>= %v-%r)
   Replaces: gettext-tools (<< 0.14.5-1), libgettext3-shlibs (<< 0.14.5-1)
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities
+  Description: GNU Internationalization utils
   Files: bin share/gettext share/info share/locale share/man
   InfoDocs: autosprintf.info
 <<
@@ -51,7 +51,7 @@
 Splitoff3: <<
   Package: gettext-doc
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities (Documentation)
+  Description: GNU Internationalization utils (Documentation)
   Files: share/doc/gettext share/doc/libasprintf
 <<
 

Index: gettext-tools.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/gettext-tools.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- gettext-tools.info  19 Dec 2009 20:54:31 -  1.10
+++ gettext-tools.info  20 Dec 2009 17:26:20 -  1.11
@@ -1,6 +1,6 @@
 Package: gettext-tools
 Version: 0.17
-Revision: 16
+Revision: 17
 Source: mirror:gnu:gettext/gettext-%v.tar.gz
 #Source: mirror:sourceforge:fink/gettext-%v.tar.gz
 Source-MD5: 58a2bc6d39c0ba57823034d55d65d606
@@ -24,7 +24,6 @@
libiconv-dev (>= 1.12-3),
libncurses5 (>= 5.4-20041023-1011)
 <<
-BuildConflicts: ccache-default, distcc-default
 Conflicts: gettext-tools-0.17
 Replaces: gettext-dev (<= 0.10.40-20), gettext (<= 0.10.40-4), gettext-bin (<= 
0.10.40-20), libgettext3-shlibs (<< 0.14.5-1), libgettextpo2-shlibs (<< 
0.14.5-2), gettext-tools-0.17
 NoSetMAKEFLAGS: true
@@ -58,7 +57,7 @@
   <<
   BuildDependsOnly: true
   DocFiles: README* AUTHORS COPYING* NEWS THANKS ChangeLog*
-  Description: GNU Internationalization utilities (Development Files)
+  Description: GNU Internationalization utils (Development Files)
   Files: include lib/*.a lib/*.la lib/libgettextpo.dylib 
 <<
 
@@ -83,7 +82,7 @@
 #Splitoff3: <<
 #  Package: gettext-tools-doc
 #  DocFiles: README* AUTHORS COPYING* NEWS THANKS ChangeLog*
-#  Description: GNU Internationalization utilities (Documentation)
+#  Description: GNU Internationalization utils (Documentation)
 #  Files: share/doc/gettext
 #<<
 

Index: libgettext8-shlibs.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/libgettext8-shlibs.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libgettext8-shlibs.info 9 Dec 2009 16:52:52 -   1.5
+++ libgettext8-shlibs.info 20 Dec 2009 17:26:20 -  1.6
@@ -37,7 +37,7 @@
   Depends: %N (= %v-%r), gettext-bin (>= %v-%r)
   BuildDependsOnly: true
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities (Development Files)
+  Description: GNU Internationalization utils (Development Files)
   Files: include lib/libintl.la lib/libintl.dylib 
 <<
 
@@ -46,14 +46,14 @@
   Depends: %N (>= %v-%r)
   Replaces: gettext-tools (<< 0.14.5-1), libgettext3-shlibs (<< 0.14.5-1)
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities
+  Description: GNU Internationalization utils
   Files: bin share/gettext share/locale share/man
 <<
 
 Splitoff3: <<
   Package: gettext-doc
   DocFiles: README* AUTHORS gettext-runtime/BUGS COPYING* NEWS THANKS 
ChangeLog*
-  Description: GNU Internationalization utilities (Documentation)
+  Description: GNU Internationalization utils (Documentation)
   Files: share/doc/gettext
 <<
 


--
This SF.Net email is sponsored by the 

[cvs] dists/10.4/unstable/crypto/finkinfo libnice.info,1.3,1.4

2009-12-20 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7618/crypto/finkinfo

Modified Files:
libnice.info 
Log Message:
libgettext8 ftw

Index: libnice.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/libnice.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libnice.info22 Aug 2009 11:24:04 -  1.3
+++ libnice.info20 Dec 2009 20:31:33 -  1.4
@@ -1,8 +1,8 @@
 Package: libnice
 Version: 0.0.9
-Revision: 4
+Revision: 5
 Depends: %N-shlibs (= %v-%r)
-BuildDepends: pkgconfig (>= 0.9.0-1), glib2-dev (>= 2.20.3-1), 
gstreamer-0.10-dev (>= 0.10.24-1), libgettext3-dev (>= 0.14.5-2), libgssdp-dev 
(>= 0.6.4-4), libgupnp-igd (>= 0.1.3-3), libgupnp-dev (>= 0.12.8-2), 
libsoup2.4.1-ssl (>= 2.26.2-2), libxml2 (>= 2.6.32-1)
+BuildDepends: pkgconfig (>= 0.9.0-1), glib2-dev (>= 2.20.3-1), 
gstreamer-0.10-dev (>= 0.10.24-1), libgettext8-dev (>= 0.14.5-2), libgssdp-dev 
(>= 0.6.4-4), libgupnp-igd (>= 0.1.3-3), libgupnp-dev (>= 0.12.8-2), 
libsoup2.4.1-ssl (>= 2.26.2-2), libxml2 (>= 2.6.32-1)
 BuildDependsOnly: true
 Source: http://nice.freedesktop.org/releases/%n-%v.tar.gz
 Source-MD5: 19ac2565ee7487c1f32487b948110b19
@@ -12,7 +12,7 @@
 DocFiles: AUTHORS COPYING* ChangeLog NEWS README TODO
 Splitoff: <<
   Package: %N-shlibs
-  Depends: glib2-shlibs (>= 2.20.3-1), gstreamer-0.10-shlibs (>= 0.10.24-1), 
libgettext3-shlibs (>= 0.14.5-2), libgssdp-shlibs (>= 0.6.4-4), 
libgupnp-igd-shlibs (>= 0.1.3-3), libgupnp-shlibs (>= 0.12.8-2), 
libsoup2.4.1-ssl-shlibs (>= 2.26.2-2), libxml2-shlibs (>= 2.6.32-1)
+  Depends: glib2-shlibs (>= 2.20.3-1), gstreamer-0.10-shlibs (>= 0.10.24-1), 
libgettext8-shlibs (>= 0.14.5-2), libgssdp-shlibs (>= 0.6.4-4), 
libgupnp-igd-shlibs (>= 0.1.3-3), libgupnp-shlibs (>= 0.12.8-2), 
libsoup2.4.1-ssl-shlibs (>= 2.26.2-2), libxml2-shlibs (>= 2.6.32-1)
   Files: <<
 lib/libnice.0.dylib
 lib/gstreamer-0.10/libgstnice.so


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/crypto/finkinfo farsight2.info,1.9,1.10

2009-12-20 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8766/crypto/finkinfo

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

Index: farsight2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/crypto/finkinfo/farsight2.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- farsight2.info  8 Dec 2009 23:35:40 -   1.9
+++ farsight2.info  20 Dec 2009 20:44:16 -  1.10
@@ -1,11 +1,11 @@
 Package: farsight2
-Version: 0.0.15
-Revision: 4
+Version: 0.0.16
+Revision: 2
 BuildDependsOnly: true
 Depends: %N-shlibs (= %v-%r)
 BuildDepends: pkgconfig (>= 0.9.0-1), glib2-dev (>= 2.20.3-1), gnutls26 (>= 
2.8.0-1), gst-plugins-base-0.10-dev (>= 0.10.23-1), gstreamer-0.10-dev (>= 
0.10.23-1), libgcrypt (>= 1.4.4-1), libgettext8-dev (>= 0.14.5-2), libgpg-error 
(>= 1.6-2), libgssdp-dev (>= 0.6.4-4), libgupnp-igd (>= 0.1.3-2), libgupnp-dev 
(>= 0.12.8-2), libiconv-dev (>= 1.12-3), libsoup2.4.1-ssl (>= 2.26.2-2), 
libtasn1-3 (>= 2.2-2), libxml2 (>= 2.6.32-1), uuid (>= 1.6.2-4), libnice (>= 
0.0.9-2), python26
 Source: http://farsight.freedesktop.org/releases/%n/%n-%v.tar.gz
-Source-MD5: 563ae54fb4df477eaf11e047e1550df7
+Source-MD5: ca6261e19cfcfe8a6e5e51b8c2f5ad16
 SetCFLAGS: -Os
 ConfigureParams: --mandir=%p/share/man --disable-dependency-tracking 
--disable-python
 InstallScript: make install DESTDIR=%d
@@ -15,7 +15,6 @@
   Depends: glib2-shlibs (>= 2.20.3-1), gnutls26-shlibs (>= 2.8.0-1), 
gst-plugins-base-0.10-shlibs (>= 0.10.23-1), gstreamer-0.10-shlibs (>= 
0.10.23-1), libgcrypt-shlibs (>= 1.4.4-1), libgettext8-shlibs (>= 0.14.5-2), 
libgpg-error-shlibs (>= 1.6-2), libgssdp-shlibs (>= 0.6.4-4), 
libgupnp-igd-shlibs (>= 0.1.3-2), libgupnp-shlibs (>= 0.12.8-2), libiconv (>= 
1.12-3), libsoup2.4.1-ssl-shlibs (>= 2.26.2-2), libtasn1-3-shlibs (>= 2.2-2), 
libxml2-shlibs (>= 2.6.32-1), uuid-shlibs (>= 1.6.2-4), libnice-shlibs (>= 
0.0.9-2)
   Files: <<
 lib/libgstfarsight-0.10.0.dylib
-lib/libgstfarsight-0.10.0.3.1.dylib
 lib/farsight2-0.0/lib*.so
 lib/gstreamer-0.10/lib*.so
   <<


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/net vnstat.info,1.2,1.3

2009-12-20 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10390/main/finkinfo/net

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

Index: vnstat.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/vnstat.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vnstat.info 18 Aug 2009 11:23:41 -  1.2
+++ vnstat.info 20 Dec 2009 21:00:15 -  1.3
@@ -1,8 +1,8 @@
 Package: vnstat
-Version: 1.8
+Version: 1.9
 Revision: 2
 Source: http://humdi.net/%n/%n-%v.tar.gz
-Source-MD5: 99a30716b5013e7e249e500ee6ee2985
+Source-MD5: ebaf8352fa3674faea2fe2ce1001a38d
 PatchScript: perl -pi -e 
"s,/usr/local,%p,g;s,/usr,%p,g;s,/var,%p/var,g;s,/etc,%p/etc,g;s,/bin,%p/bin,g" 
Makefile
 CompileScript: make
 InstallScript: <<


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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/kde kprayertime4-kde4-x11.info, NONE, 1.1

2009-12-20 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/kde
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv14928/main/finkinfo/kde

Added Files:
kprayertime4-kde4-x11.info 
Log Message:
new pkg

--- NEW FILE: kprayertime4-kde4-x11.info ---
Package: kprayertime4-kde4-x11
Version: 4.0
Revision: 1002
Depends: x11, x11-shlibs, kdebase4-runtime-x11, kdelibs4-x11-shlibs (>= 
4.2.4-1),  qt4-x11-core-shlibs (>= 4.5.2-1), qt4-x11-gui-shlibs (>= 4.5.2-1)
BuildDepends: fink (>= 0.29.7-1), gettext-tools, cmake (>= 2.6.3-1), 
kdelibs4-x11-dev (>= 4.2.4-1), qt4-x11 (>= 4.5.2-1), automoc-x11 (>= 0.9.89-0), 
soprano-x11-dev (>= 2.2.3-7), kdelibs4-x11-dev (>= 4.2.4-1), x11-dev, 
kde4-buildenv (>= 4.2.4-2)
Source: 
mirror:sourceforge:project/kprayertime/kprayertime4-src/kprayertime4.src.tar.gz
Source-MD5: 161dc584bdac1572cd1b1ede3d4ede6f
SourceDirectory: kprayertime4
CompileScript: <<
#!/bin/sh -ev
export KDE4_PREFIX=%p KDE4_TYPE=x11
. %p/sbin/kde4-buildenv.sh
cmake $KDE4_CMAKE_ARGS .
make
<<
InstallScript: make install/fast DESTDIR=%d
#DocFiles: README
License: GPL
GCC: 4.0
Homepage: http://kprayertime.sourceforge.net
Maintainer: Jack Fink 
Description: KDE4 - Plasmoid for islamic prayer times



--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
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/games scummvm.info,1.8,1.9

2009-12-20 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22176/main/finkinfo/games

Modified Files:
scummvm.info 
Log Message:
restrict to 32bit

Index: scummvm.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/games/scummvm.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- scummvm.info3 Sep 2009 13:45:45 -   1.8
+++ scummvm.info21 Dec 2009 03:48:31 -  1.9
@@ -1,6 +1,7 @@
 Package: scummvm
 Version: 1.0.0rc1
 Revision: 1003
+Architecture: powerpc, i386
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
 Source-MD5: f3fabedc7ff2424d6a4bc678229b22ce
 Depends: fluidsynth-shlibs (>= 1.0.8-153), libflac8 (>= 1.2.1-1000), 
libmad-shlibs (>= 0.15.1b-5), libogg-shlibs (>= 1.1.4-1), libvorbis0-shlibs (>= 
1.2.2-1), sdl-shlibs (>= 1.2.13-1)


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/fangism/finkinfo guile19.info,1.4,1.5

2009-12-20 Thread fangism
Update of /cvsroot/fink/experimental/fangism/finkinfo
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22209

Modified Files:
guile19.info 
Log Message:
explicit dependency on gc{,-shlibs} (a.k.a. BDW-GC)


Index: guile19.info
===
RCS file: /cvsroot/fink/experimental/fangism/finkinfo/guile19.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- guile19.info20 Dec 2009 04:07:38 -  1.4
+++ guile19.info21 Dec 2009 03:49:42 -  1.5
@@ -1,11 +1,12 @@
 Package: guile19
 Version: 1.9.6
-Revision: 2
+Revision: 3
 BuildDepends: <<
   readline5 (>= 5.0-1004),
   libncurses5 (>= 5.4-20041023-1006),
   libtool2,
   libunistring0, 
+  gc,
   gmp,
   libiconv-dev,
   fink (>= 0.28)
@@ -60,6 +61,7 @@
 SplitOff: <<
   Package: %N-shlibs
   Depends: <<
+gc-shlibs,
 libncurses5-shlibs (>= 5.4-20041023-1006),
 libiconv,
 libunistring0-shlibs


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink/mirror ChangeLog, 1.134, 1.135 VERSION, 1.33, 1.34 cpan, 1.11, 1.12 freebsd, 1.2, 1.3 get-mirrors.pl, 1.10, 1.11 gimp, 1.13, 1.14 gnome, 1.12, 1.13 gnu, 1.18, 1.19 kde, 1.9, 1.10

2009-12-20 Thread monipol
Update of /cvsroot/fink/fink/mirror
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv6492

Modified Files:
ChangeLog VERSION cpan freebsd get-mirrors.pl gimp gnome gnu 
kde 
Log Message:
Releasing version 0.29.10.2 which updates cpan, freebsd, gimp, gnome, gnu, kde. 
get-mirror.pl now uses decoded_content instead of content when parsing HTML 
response data


Index: gnome
===
RCS file: /cvsroot/fink/fink/mirror/gnome,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- gnome   26 Sep 2007 13:30:09 -  1.12
+++ gnome   21 Dec 2009 06:09:51 -  1.13
@@ -1,16 +1,15 @@
 # Official mirror list: http://ftp.gnome.org/pub/GNOME/MIRRORS
-Timestamp: 2007-09-25
+Timestamp: 2009-12-20
 
 Primary: ftp://ftp.gnome.org/pub/GNOME
 
 asi-JP: ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME
-aus-AU: http://mirror.aarnet.edu.au/pub/GNOME
 eur-BE: http://ftp.belnet.be/mirror/ftp.gnome.org
 eur-ES: ftp://ftp.dit.upm.es/pub/GNOME
 eur-FR: http://fr2.rpmfind.net/linux/gnome.org
 eur-NO: ftp://ftp.no.gnome.org/pub/GNOME
 eur-SE: ftp://ftp.gnome.org/pub/GNOME
 eur-SE: http://ftp.acc.umu.se/pub/GNOME
+eur-SE: http://ftp.df.lth.se/pub/gnome
 nam-US: ftp://ftp.cse.buffalo.edu/pub/Gnome
-nam-US: http://mirrors.ibiblio.org/pub/mirrors/gnome
 sam-BR: http://linorg.usp.br/gnome

Index: gnu
===
RCS file: /cvsroot/fink/fink/mirror/gnu,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- gnu 26 Sep 2007 13:30:09 -  1.18
+++ gnu 21 Dec 2009 06:09:51 -  1.19
@@ -1,20 +1,18 @@
-# Official mirror list: http://www.gnu.org/order/ftp.html
-Timestamp: 2007-09-25
+# Official mirror list: http://www.gnu.org/prep/ftp.html
+Timestamp: 2009-12-21
 
 Primary: ftp://ftp.gnu.org/gnu
 
+afr-NA: ftp://download.polytechnic.edu.na/pub/ftp.gnu.org/gnu
+afr-NA: http://download.polytechnic.edu.na/pub/ftp.gnu.org/gnu
+afr-ZA: ftp://ftp.is.co.za/mirror/ftp.gnu.org/gnu
 asi-JP: ftp://ftp.ring.gr.jp/pub/GNU
-asi-JP: ftp://tron.um.u-tokyo.ac.jp/pub/GNU
 asi-JP: http://core.ring.gr.jp/pub/GNU
-asi-TH: http://ftp.thaios.net/gnu
-asi-TH: http://mirror.in.th/gnu/ftp/gnu
 asi-TW: ftp://ftp.ntu.edu.tw/pub/gnu/gnu
 asi-TW: ftp://ftp.twaren.net/Unix/GNU/gnu
 asi-TW: http://ftp.twaren.net/Unix/GNU/gnu
-aus-AU: ftp://gnu.mirror.pacific.net.au/gnu/gnu
 eur-AT: ftp://gd.tuwien.ac.at/gnu/gnusrc
 eur-AT: http://gd.tuwien.ac.at/gnu/gnusrc
-eur-BA: ftp://gnu.blic.net/pub/gnu
 eur-BE: ftp://ftp.easynet.be/gnu
 eur-BE: http://ftp.easynet.be/ftp/gnu
 eur-CH: ftp://sunsite.cnlab-switch.ch/mirror/gnu
@@ -26,60 +24,82 @@
 eur-DE: ftp://ftp.cw.net/pub/gnu
 eur-DE: ftp://ftp.cw.net/pub/gnu
 eur-DE: ftp://ftp.informatik.rwth-aachen.de/pub/gnu
-eur-DE: ftp://ftp.math.uni-bremen.de/pub/gnu
-eur-DE: http://gnu-ftp.basemirror.de/gnu
 eur-DE: http://www.de-mirrors.de/gnuftp
+eur-DE: http://www.softliste.de/gnu
+eur-DE: http://www.very-clever.com/download/gnu
+eur-DK: ftp://mirrors.dotsrc.org/gnu
 eur-DK: http://ftp.download-by.net/gnu/gnu
+eur-DK: http://mirrors.dotsrc.org/gnu
+eur-ES: ftp://ftp.gul.es/gnu/pub/gnu
+eur-ES: http://ftp.gul.es/gnu/pub/gnu
 eur-FI: ftp://ftp.funet.fi/pub/gnu/prep
-eur-FR: ftp://ftp.cs.univ-paris8.fr/mirrors/ftp.gnu.org/gnu
+eur-FI: http://www.nic.funet.fi/pub/gnu/ftp.gnu.org/pub/gnu
+eur-FR: ftp://ftp.ironie.org/ftp.gnu.org/pub/gnu
 eur-FR: ftp://mirror.cict.fr/gnu
+eur-FR: http://gnu.mirror.ironie.org/pub/gnu
 eur-GR: ftp://ftp.cc.uoc.gr/mirrors/gnu
 eur-GR: ftp://ftp.duth.gr/pub/gnu
-eur-GR: ftp://ftp.forthnet.gr/pub/gnu
 eur-GR: ftp://ftp.ntua.gr/pub/gnu
 eur-GR: http://ftp.cc.uoc.gr/mirrors/gnu
 eur-IE: ftp://ftp.esat.net/pub/gnu
 eur-IE: ftp://ftp.heanet.ie/mirrors/ftp.gnu.org/gnu
 eur-IE: http://ftp.heanet.ie/mirrors/ftp.gnu.org/gnu
-eur-IT: ftp://ftp.digitaltrust.it/pub/gnu
 eur-NL: ftp://ftp.mirror.nl/pub/mirror/gnu
 eur-NL: ftp://ftp.nluug.nl/pub/gnu
-eur-NL: ftp://ftp.spegulo.be/pub/gnu/ftp/gnu
-eur-NL: http://gnuftp.spegulo.be
+eur-NL: http://mirrors.aixtools.net/gnu
 eur-NO: ftp://ftp.uninett.no/pub/gnu
 eur-PL: ftp://ftp.piotrkosoft.net/pub/mirrors/ftp.gnu.org/gnu
 eur-PL: ftp://ftp.task.gda.pl/pub/gnu
+eur-PL: ftp://ftp.tpnet.pl/d12/gnu
 eur-PL: ftp://sunsite.icm.edu.pl/pub/gnu
+eur-PL: http://ftp.tpnet.pl/vol/d12/gnu
 eur-PL: http://piotrkosoft.net/pub/mirrors/ftp.gnu.org/gnu
-eur-PT: ftp://ftp.ist.utl.pt/pub/GNU/gnu/gnu
+eur-PT: ftp://mirrors.nfsi.pt/pub/gnu
+eur-PT: http://mirrors.nfsi.pt/gnu
 eur-RU: ftp://ftp.chg.ru/pub/gnu
+eur-SE: ftp://ftp.df.lth.se/pub/ftp.gnu.org/pub/gnu
 eur-SE: ftp://ftp.isy.liu.se/pub/gnu
-eur-SE: ftp://ftp.stacken.kth.se/pub/gnu
 eur-SE: ftp://ftp.sunet.se/pub/gnu
+eur-SE: http://ftp.df.lth.se/pub/ftp.gnu.org/pub/gnu
+eur-SI: http://mirror.lihnidos.org/GNU/ftp/gnu
+eur-SK: http://www.fyxm.net/gnu
 eur-TR: ftp://ftp.ulak.net.tr/gnu/gnu
 eur-UA: ftp://ftp.gnu.org.ua/gnu
+eur-UA: http://gn

[cvs] dists/10.4/unstable/main/finkinfo/base fink-mirrors.info, 1.16, 1.17

2009-12-20 Thread monipol
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/base
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8138

Modified Files:
fink-mirrors.info 
Log Message:
New version. Updates cpan, freebsd, gimp, gnome, gnu, kde, and get-mirror.pl 
now uses decoded_content instead of content when parsing HTML response data


Index: fink-mirrors.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/base/fink-mirrors.info,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- fink-mirrors.info   16 Nov 2009 00:48:14 -  1.16
+++ fink-mirrors.info   21 Dec 2009 06:24:52 -  1.17
@@ -1,9 +1,9 @@
 Package: fink-mirrors
-Version: 0.29.10.1
+Version: 0.29.10.2
 Revision: 1
 Essential: yes
 Source: mirror:custom:fink/%n-%v.tar.gz
-Source-MD5: 60db0ebf2aee224c2b9126413a380816
+Source-MD5: fd6f6873ccdd381207daea73bb2b951e
 Depends: fink (>= 0.17.3-1)
 Replaces: fink (<< 0.17.2-1)
 CompileScript:  sed -e "s|@PREFIX@|%p|g" < postinstall.pl.in > postinstall.pl


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dpkg-base-files ChangeLog, 1.11, 1.12 dpkg-base-files.info.in, 1.4, 1.5 postinst.in, 1.4, 1.5

2009-12-20 Thread Daniel Macks
Update of /cvsroot/fink/dpkg-base-files
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10614

Modified Files:
ChangeLog dpkg-base-files.info.in postinst.in 
Log Message:
have potential script fragments for .la cleaning.


Index: dpkg-base-files.info.in
===
RCS file: /cvsroot/fink/dpkg-base-files/dpkg-base-files.info.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dpkg-base-files.info.in 20 Dec 2009 08:08:37 -  1.4
+++ dpkg-base-files.info.in 21 Dec 2009 06:45:44 -  1.5
@@ -9,8 +9,12 @@
 InstallScript: ./install.sh %i
 #
 PostInstScript: <<
-   if [ "$2" = "configure" ]; then
-   echo "Would clean up all installed .la files"
+   if [ "$1" = "configure" ]; then
+   echo "Cleaning up all installed .la files (this may take a 
moment)"
+   echo '  find "%p" -name '"'"'*.la'"'"' -and -type f -print0 | 
xargs -0 perl -pi -e "s/^(dependency_libs)=.*/\1='"''"'/" || true'
+#  find "%p" -name '*.la' -and -type f -print0 | xargs -0 perl -pi 
-e "s/^(dependency_libs)=.*/\1=''/" || true
+   echo "dry-run-only debug; this would hit:"
+   find "%p" -name '*.la' -and -type f -print0 | xargs -0 echo || 
true
fi
 <<
 #

Index: postinst.in
===
RCS file: /cvsroot/fink/dpkg-base-files/postinst.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- postinst.in 20 Dec 2009 08:38:54 -  1.4
+++ postinst.in 21 Dec 2009 06:45:45 -  1.5
@@ -14,10 +14,12 @@
 shift;
 
 if [ "$2" = "configure" ]; then
-echo "configuring $pkg: would clean up .la files being installed:"
+echo "Cleaning up .la files being installed:"
 for lafile in `grep '\.la$' "/sw/var/lib/dpkg/info/$pkg.list"`; do
-   echo "$lafile"
+   echo '  [ -l "'$lafile'" ] || [ -d "'$lafile'" ] || perl -pi -e 
"s/^(dependency_libs)=.*/\1='"''"'/" "'$lafile'" || true'
+#  [ -l "$lafile" ] || [ -d "$lafile" ] || perl -pi -e 
"s/^(dependency_libs)=.*/\1=''/" "$lafile" || true
 done
+echo "dry-run-only debug"
 fi
 
 [ -z $1 ] || "$@"

Index: ChangeLog
===
RCS file: /cvsroot/fink/dpkg-base-files/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- ChangeLog   20 Dec 2009 08:38:54 -  1.11
+++ ChangeLog   21 Dec 2009 06:45:44 -  1.12
@@ -1,3 +1,7 @@
+2009-12-21  Daniel Macks  
+
+   * dpkg-base-files.info.in, postinst.in: dry-run of .la cleaning
+
 2009-12-19  Daniel Macks  
 
* postinst.in: figure out the being-installed list of .la


--
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs