[cvs] dists/10.4/unstable/main/finkinfo/editors vim.info,1.148,1.149

2010-12-05 Thread Hisashi Todd Fujinaka
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv5084

Modified Files:
vim.info 
Log Message:
Welcome to Vim-7.3.075.

Index: vim.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/editors/vim.info,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -d -r1.148 -r1.149
--- vim.info26 Nov 2010 03:37:32 -  1.148
+++ vim.info5 Dec 2010 08:00:22 -   1.149
@@ -1,10 +1,10 @@
 Info2: 
 Package: vim%type_pkg[-nox]
 Type: -nox (boolean)
-Version: 7.3.069
+Version: 7.3.075
 Revision: 1
 Source: http://www.i8u.org/~htodd/finksrc/vim-%v.tar.bz2
-Source-MD5: 181da9b3480287b0b86f878afe18875e
+Source-MD5: 184e8c6a2c304515d9e37824a7307673
 SourceDirectory: vim
 PatchFile: vim.patch
 PatchFile-MD5: 68aa5f5b96a275425ec41df8f27653d2


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/crypto ssh-copy-id.info, 1.1, 1.2

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv733/unstable/main/finkinfo/crypto

Modified Files:
ssh-copy-id.info 
Log Message:
fix a typo/change in DescPort: and promote to stable after positive feedback.

Index: ssh-copy-id.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/crypto/ssh-copy-id.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ssh-copy-id.info1 Jul 2010 01:37:10 -   1.1
+++ ssh-copy-id.info5 Dec 2010 11:05:41 -   1.2
@@ -1,6 +1,6 @@
 Package: ssh-copy-id
 Version: 1.0.0
-Revision: 1
+Revision: 2
 Architecture: powerpc, i386, x86_64
 
 Source: none
@@ -81,7 +81,7 @@
 
 DescPort: 
  script is copied from this page: 
- http://wiki.unixboard.de/index.php/Ssh-copy-id
+ http://www.unixboard.de/wiki/index.php?title=Ssh-copy-id
  and modified according to what is found in ubuntu.
  In addition, the following escapes were applied:
  $ - \$ (shell)


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/crypto ssh-copy-id.info, NONE, 1.1

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/crypto
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv733/stable/main/finkinfo/crypto

Added Files:
ssh-copy-id.info 
Log Message:
fix a typo/change in DescPort: and promote to stable after positive feedback.

--- NEW FILE: ssh-copy-id.info ---
Package: ssh-copy-id
Version: 1.0.0
Revision: 2
Architecture: powerpc, i386, x86_64

Source: none
NoSourceDirectory: true

CompileScript: 
#!/bin/sh -ev

# create the ssh-copy-id file
cat %b/ssh-copy-id FILEEOF
#!/bin/sh

# Shell script to install your public key on a remote machine
# Takes the remote machine name as an argument.
# Obviously, the remote machine must accept password authentication,
# or one of the other keys in your ssh-agent, for this to work.

ID_FILE=\${HOME}/.ssh/id_rsa.pub

if [ -i = \$1 ]; then
  shift
  # check if we have 2 parameters left, if so the first is the new ID file
  if [ -n \$2 ]; then
if expr \$1 : .*\.pub  /dev/null ; then
  ID_FILE=\$1
else
  ID_FILE=\$1.pub
fi
shift # and this should leave \$1 as the target name
  fi
else
  if [ x\$SSH_AUTH_SOCK != x ]  ssh-add -L /dev/null 21; then
GET_ID=\$GET_ID ssh-add -L
  fi
fi

if [ -z \`eval \$GET_ID\` ]  [ -r \${ID_FILE} ] ; then
  GET_ID=cat \${ID_FILE}
fi

if [ -z \`eval \$GET_ID\` ]; then
  echo \$0: ERROR: No identities found 2
  exit 1
fi

if [ \$# -lt 1 ] || [ \$1 = -h ] || [ \$1 = --help ]; then
  echo Usage: \$0 [-i [identity_file]] [u...@]machine 2
  exit 1
fi

{ eval \$GET_ID ; } | ssh \${1%%:} umask 077; test -d .ssh || mkdir .ssh ; 
cat  .ssh/authorized_keys || exit 1

cat EOF
Now try logging into the machine, with ssh '\${1%%:}', and check in:

  .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.

EOF
FILEEOF


InstallScript: 
#!/bin/sh -ev
  mkdir %i/bin/
  install -c -m 755 %b/ssh-copy-id %i/bin/


License: GPL/LGPL

Description: Transfer script for ssh public key

DescDetail: 
This script copies your public key to another site. 
Authentification there is through password or another public key.


DescPort: 
 script is copied from this page: 
 http://www.unixboard.de/wiki/index.php?title=Ssh-copy-id
 and modified according to what is found in ubuntu.
 In addition, the following escapes were applied:
 $ - \$ (shell)
 ` - \` (shell)
 % - %% (fink)


Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/devel xdev-toolkit.info, NONE, 1.1

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv1569

Added Files:
xdev-toolkit.info 
Log Message:
promote to stable.

--- NEW FILE: xdev-toolkit.info ---
Package: xdev-toolkit
Version: 20101117
Revision: 1
Description: Lazarus/FPC cross-platform development tools
Architecture: powerpc, i386, x86_64
BuildDepends: lazarus-common
Depends: lazarus-common
License: LGPL

# Unpack Phase:
Source: http://web.me.com/macpgmr/XDev/XDevForLaz_20101117.zip
Source-MD5: 2948491a8b890a7019e8f9ca9458364d

SourceDirectory: ./

# Compile Phase (NOTE: there is no configure):
CompileScript: 
#!/bin/sh -ev

# compile programs
fpc CvtHelp.pas
fpc TestRtfDoc.pas
fpc ViewWith.pas
fpc dfmtolfm.pas
fpc makepasx.pas
fpc makever.pas

# compile additional units
fpc PrefsUtil.pas
fpc PropListUtil.pas
fpc HelpUtil.pas -Fu/%p/share/lazarus/lcl/units/%m-darwin/


# Install Phase:
InstallScript: 
#!/bin/sh -ev

# Install programs
  mkdir %i/bin
  install -m 755 CvtHelp  %i/bin/CvtHelp
  install -m 755 TestRtfDoc   %i/bin/TestRtfDoc
  install -m 755 ViewWith %i/bin/ViewWith
  install -m 755 dfmtolfm %i/bin/dfmtolfm
  install -m 755 makepasx %i/bin/makepasx
  install -m 755 makever  %i/bin/makever
  install -m 755 create_app_mac.sh  %i/bin/create_app_mac.sh

# Install units
  FPC_VERSION=`fpc -iV`
  INSTALL_DIR=%i/lib/fpc/$FPC_VERSION/units/%m-darwin/%n
  mkdir -p $INSTALL_DIR
  install -m 644 HelpUtil.o   $INSTALL_DIR
  install -m 644 HelpUtil.ppu $INSTALL_DIR
  install -m 644 RtfDoc.o   $INSTALL_DIR
  install -m 644 RtfDoc.ppu $INSTALL_DIR
  install -m 644 ViewDoc.o   $INSTALL_DIR
  install -m 644 ViewDoc.ppu $INSTALL_DIR
  install -m 644 PrefsUtil.o   $INSTALL_DIR
  install -m 644 PrefsUtil.ppu $INSTALL_DIR
  install -m 644 PropListUtil.o   $INSTALL_DIR
  install -m 644 PropListUtil.ppu $INSTALL_DIR

# Install sources
  mkdir -p %i/share/fpcsrc/%n
  install -m 644 *.pas %i/share/fpcsrc/%n/


DocFiles: XDevStatus.html

DescDetail: 
The XDev Toolkit has these programs and units:

MakePasX  DfmToLfm: Delphi converters
MakeVer: Create a version info file
CvtHelp  HelpUtil:  Convert WinHelp RTF to HTML
create_app_mac.sh:   Create an app bundle
RtfDoc  ViewDoc:RTF document creation and viewing


DescUsage: 
Please read the documentation in 
http://p/share/doc/%n/XDevStatus.html


DescPort: Native platform only. To do: cross-platform

Homepage: http://web.me.com/macpgmr/XDev/XDevStatus.html
Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel pasdoc.info,1.2,1.3

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11075/unstable/main/finkinfo/devel

Modified Files:
pasdoc.info 
Log Message:
pasdoc: update from upstream and some minor adjustments.

Index: pasdoc.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/pasdoc.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pasdoc.info 2 Nov 2010 09:13:10 -   1.2
+++ pasdoc.info 5 Dec 2010 12:07:10 -   1.3
@@ -1,5 +1,5 @@
 Package: pasdoc
-Version: 0.12.0
+Version: 0.12.1
 Revision: 1
 Architecture: powerpc, i386, x86_64
 Description: Documentation tool for Pascal source code
@@ -9,16 +9,15 @@
 
 # Unpack Phase
 Source: mirror:sourceforge:/%n/PasDoc%%20Sources/%v/%n-%v-src.tar.gz
-Source-MD5: f6e0450e2b40d5f330ae8422c6ec503a
+Source-MD5: 6a230cd5b253bbab886197742c0f43fa
 SourceDirectory: pasdoc
 
 # Patch Phase
 Patchscript: 
 #!/bin/sh -ev
-# Mac OS X 10.5 and up need -gw for dwarf debug format
-# maybe, this will be fixed some time by upstream or fpc
-if [[ $(sw_vers -productVersion)  10.4 ]]; then
-  sed -i 's|-gl|-gl\n-gw|g' pasdoc-fpc.cfg
+# Mac OS X 10.4 needs -gs for stabs debug format
+if [[ $(sw_vers -productVersion) = 10.4 ]]; then
+  sed -i 's|-gw|-gs|g' pasdoc-fpc.cfg
 fi
 
 
@@ -44,7 +43,20 @@
 
 
 DescPort: 
- Still to do: pasdoc_gui?
+ Status: starting app.
+ Steps towards pasdoc_gui:
+  1) lazbuild pasdoc_package.lpk
+  2) lazbuild pasdoc_gui.lpi
+  but does not run properly until make bundle is clicked in lazarus.
+
+  Warnings: Font and Fontsize is not found:
+  FindCarbonFontID Error: ATSUFindFontFromName  failed with result -8796
+  TCarbonSpinEdit.GetPreferredSize Error: GetBestControlRect  failed with 
result -30599
+  FindCarbonFontID Error: ATSUFindFontFromName  failed with result -8796
+
+  Todo:
+  Make a nice bundle, i.e. icon, move binary into the bundle.
+  check for dependencies. graphviz is mentioned. 
 
 
 Homepage: http://pasdoc.sipsolutions.net/


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/devel pasdoc.info,1.2,1.3

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv11075/stable/main/finkinfo/devel

Modified Files:
pasdoc.info 
Log Message:
pasdoc: update from upstream and some minor adjustments.

Index: pasdoc.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/devel/pasdoc.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pasdoc.info 2 Nov 2010 09:13:10 -   1.2
+++ pasdoc.info 5 Dec 2010 12:07:09 -   1.3
@@ -1,5 +1,5 @@
 Package: pasdoc
-Version: 0.12.0
+Version: 0.12.1
 Revision: 1
 Architecture: powerpc, i386, x86_64
 Description: Documentation tool for Pascal source code
@@ -9,16 +9,15 @@
 
 # Unpack Phase
 Source: mirror:sourceforge:/%n/PasDoc%%20Sources/%v/%n-%v-src.tar.gz
-Source-MD5: f6e0450e2b40d5f330ae8422c6ec503a
+Source-MD5: 6a230cd5b253bbab886197742c0f43fa
 SourceDirectory: pasdoc
 
 # Patch Phase
 Patchscript: 
 #!/bin/sh -ev
-# Mac OS X 10.5 and up need -gw for dwarf debug format
-# maybe, this will be fixed some time by upstream or fpc
-if [[ $(sw_vers -productVersion)  10.4 ]]; then
-  sed -i 's|-gl|-gl\n-gw|g' pasdoc-fpc.cfg
+# Mac OS X 10.4 needs -gs for stabs debug format
+if [[ $(sw_vers -productVersion) = 10.4 ]]; then
+  sed -i 's|-gw|-gs|g' pasdoc-fpc.cfg
 fi
 
 
@@ -44,7 +43,20 @@
 
 
 DescPort: 
- Still to do: pasdoc_gui?
+ Status: starting app.
+ Steps towards pasdoc_gui:
+  1) lazbuild pasdoc_package.lpk
+  2) lazbuild pasdoc_gui.lpi
+  but does not run properly until make bundle is clicked in lazarus.
+
+  Warnings: Font and Fontsize is not found:
+  FindCarbonFontID Error: ATSUFindFontFromName  failed with result -8796
+  TCarbonSpinEdit.GetPreferredSize Error: GetBestControlRect  failed with 
result -30599
+  FindCarbonFontID Error: ATSUFindFontFromName  failed with result -8796
+
+  Todo:
+  Make a nice bundle, i.e. icon, move binary into the bundle.
+  check for dependencies. graphviz is mentioned. 
 
 
 Homepage: http://pasdoc.sipsolutions.net/


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/graphics dcraw.info,1.7,1.8

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22897/unstable/main/finkinfo/graphics

Modified Files:
dcraw.info 
Log Message:
dcraw: Upstream update and bug fix of this version.

Index: dcraw.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/dcraw.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- dcraw.info  23 Apr 2010 16:08:26 -  1.7
+++ dcraw.info  5 Dec 2010 13:16:52 -   1.8
@@ -1,6 +1,6 @@
 Package: dcraw
-Version: 8.99
-Revision: 2
+Version: 9.05
+Revision: 1
 Description: Raw digital photo decoder
 Architecture: powerpc, i386, x86_64
 BuildDepends: libjpeg, lcms, libgettext8-dev, libiconv-bin, gettext-tools
@@ -9,9 +9,20 @@
 
 # Unpack Phase:
 Source: http://www.cybercom.net/~dcoffin/dcraw/archive/dcraw-%v.tar.gz
-Source-MD5: b6469a5ac64ac6e974022b00f09fb465
+
+Source-MD5: b06ad99909ede5f1a129fa4b53d32e04
 SourceDirectory: dcraw
 
+# Patch Phase (bug report to upstream was sent by email):
+# Expect to remove this.
+# Replace version 1.439 with version 1.440 in dir dcraw
+# remove dir dcraw, because its name conflicts with the binary
+PatchScript: 
+#!/bin/sh -ev
+  mv -f dcraw/dcraw.c .
+  rmdir dcraw
+
+
 # Compile Phase (NOTE: there is no configure):
 CompileScript: 
 #!/bin/sh -ev
@@ -58,8 +69,8 @@
 
 DescPort: 
  The compile and install scripts are generated from the commands in the
- file install. The nl files for nl are not 
- complete and are skipped.
+ file install. 
+ The files for nl are not complete and are skipped.
 
 
 Homepage: http://www.cybercom.net/~dcoffin/dcraw


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/graphics dcraw.info,1.5,1.6

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22897/stable/main/finkinfo/graphics

Modified Files:
dcraw.info 
Log Message:
dcraw: Upstream update and bug fix of this version.

Index: dcraw.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/dcraw.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- dcraw.info  23 Apr 2010 16:08:22 -  1.5
+++ dcraw.info  5 Dec 2010 13:16:52 -   1.6
@@ -1,6 +1,6 @@
 Package: dcraw
-Version: 8.99
-Revision: 2
+Version: 9.05
+Revision: 1
 Description: Raw digital photo decoder
 Architecture: powerpc, i386, x86_64
 BuildDepends: libjpeg, lcms, libgettext8-dev, libiconv-bin, gettext-tools
@@ -9,9 +9,20 @@
 
 # Unpack Phase:
 Source: http://www.cybercom.net/~dcoffin/dcraw/archive/dcraw-%v.tar.gz
-Source-MD5: b6469a5ac64ac6e974022b00f09fb465
+
+Source-MD5: b06ad99909ede5f1a129fa4b53d32e04
 SourceDirectory: dcraw
 
+# Patch Phase (bug report to upstream was sent by email):
+# Expect to remove this.
+# Replace version 1.439 with version 1.440 in dir dcraw
+# remove dir dcraw, because its name conflicts with the binary
+PatchScript: 
+#!/bin/sh -ev
+  mv -f dcraw/dcraw.c .
+  rmdir dcraw
+
+
 # Compile Phase (NOTE: there is no configure):
 CompileScript: 
 #!/bin/sh -ev
@@ -58,8 +69,8 @@
 
 DescPort: 
  The compile and install scripts are generated from the commands in the
- file install. The nl files for nl are not 
- complete and are skipped.
+ file install. 
+ The files for nl are not complete and are skipped.
 
 
 Homepage: http://www.cybercom.net/~dcoffin/dcraw


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


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

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15370

Added Files:
libutf8cpp.info 
Log Message:
new from -submissions 
https://sourceforge.net/tracker/?func=detailatid=414256aid=3101517group_id=17203


--- NEW FILE: libutf8cpp.info ---
Package: libutf8cpp
Version: 2.3.0
Revision: 1
Description: UTF-8 with C++ in a Portable Way
DescUsage: 
The headers are installed in to a separate directory, %p/include/utf8cpp,
in order to avoid collisions. To use them, the directory must be
explicitly included when compiling, e.g.: g++ -I%p/include/utf8cpp

License: BSD
HomePage: http://utfcpp.sourceforge.net
Maintainer: Abdulla Kamar abdulla.kamar+f...@gmail.com

Source: 
mirror:sourceforge:project/utfcpp/utf8cpp_2x/Release%%202.3/utf8_v2_3.zip
Source-MD5: 27f8ec35d739a24cfd2a91647ff8551f
SourceDirectory: .
BuildDependsOnly: true

CompileScript: 


InstallScript: 
find . -type f | xargs chmod 644
mkdir -p %i/include/utf8cpp
cp -r source/* %i/include/utf8cpp


DocFiles: doc/ReleaseNotes doc/utf8cpp.html


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/devel cvsgrab.info,1.2,1.3

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv23593

Modified Files:
cvsgrab.info 
Log Message:
val-fix


Index: cvsgrab.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/devel/cvsgrab.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- cvsgrab.info2 Mar 2008 18:31:56 -   1.2
+++ cvsgrab.info5 Dec 2010 16:32:19 -   1.3
@@ -15,7 +15,7 @@
   install -c -m 644 samples/* %i/share/doc/%n/samples/
 
 DocFiles: doc/CHANGES doc/COPYING doc/License* doc/README doc/ant.html
-Description: Reads the repository via its ViewCVS web interface
+Description: Read repository's ViewCVS web interface
 DescDetail: 
 CVSGrab is another kind of CVS client. When other CVS clients use the cvs
 protocol or ssh to read the repository, this utility reads the repository


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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 aria2.info,1.34,1.35

2010-12-05 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv26983

Modified Files:
aria2.info 
Log Message:
New upstream version. Now includes a bash_completion file.


Index: aria2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/net/aria2.info,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- aria2.info  2 Nov 2010 01:38:30 -   1.34
+++ aria2.info  5 Dec 2010 16:47:59 -   1.35
@@ -1,5 +1,5 @@
 Package: aria2
-Version: 1.10.6
+Version: 1.10.7
 Revision: 1
 Description: Downloader for HTTP/FTP/BitTorrent/Metalink
 Homepage: http://aria2.sourceforge.net/
@@ -26,13 +26,11 @@
 
 
 Source: mirror:sourceforge:%n/%n-%v.tar.bz2
-Source-MD5: 34029f86d9355872cf4b86267d3513c7
+Source-MD5: 93c2f27015f34f74e7641a61037ed38f
 
 PatchScript: 
#Prevent /usr/include and /usr/lib from being added to dirs
perl -pi -e 's/LIBZ_LIBS=.*$/LIBZ_LIBS=-lz/; 
s/LIBZ_CPPFLAGS=.*$/LIBZ_CPPFLAGS=/' configure
-   #There is no timespec.h on darwin. Use time.h instead.
-   perl -pi -e 's/timespec.h/time.h/' src/clock_gettime_osx.h
 
 
 Depends: 
@@ -79,6 +77,10 @@

 
 
-InstallScript: make install DESTDIR=%d
+InstallScript: 
+   make install DESTDIR=%d
+   mkdir -p %i/etc/bash_completion.d
+   cp doc/bash_completion/aria2c %i/etc/bash_completion.d
+
 
 DocFiles: AUTHORS ChangeLog COPYING LICENSE.OpenSSL NEWS


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/database psycopg2-py.info, 1.13, 1.14

2010-12-05 Thread Kurt Schwehr
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/database
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv576

Modified Files:
psycopg2-py.info 
Log Message:
updated to 2.3.1


Index: psycopg2-py.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/database/psycopg2-py.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- psycopg2-py.info7 Aug 2010 12:17:11 -   1.13
+++ psycopg2-py.info5 Dec 2010 17:11:58 -   1.14
@@ -2,7 +2,7 @@
 # Mac OS X Configuration and Installation
 # Fink - http://fink.sourceforge.net/
 Package: psycopg2-py%type_pkg[python]
-Version: 2.2.2
+Version: 2.3.1
 Revision: 1
 Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 # Description: PostgreSQL for Python %type_raw[python]
@@ -13,14 +13,15 @@
 # Not sure on python 3.1.  Need python-mx-py31 and 2to3-python31 to be run 
before setup.py gets run.
 
 # Dependencies:
-BuildDepends: python%type_pkg[python], postgresql83-dev | postgresql84-dev
-#Depends: python%type_pkg[python], python-mx-py%type_pkg[python], 
postgresql83-shlibs | postgresql84-shlibs
-Depends: python%type_pkg[python], postgresql83-shlibs | postgresql84-shlibs
+BuildDepends: python%type_pkg[python], postgresql83-dev | postgresql84-dev| 
postgresql90-dev
 
-Recommends: postgresql83 | postgresql84
+# python-mx-py%type_pkg[python] 
+Depends: python%type_pkg[python], postgresql83-shlibs | postgresql84-shlibs | 
postgresql90-shlibs 
+
+Recommends: postgresql84
 
 # Unpack Phase:
-Source-MD5: 571af2ad9dfeb522ee5f8553278a4c38
+Source-MD5: dbc71c385b08523e035d4e11cec6a413
 # Source: http://initd.org/pub/software/psycopg/psycopg2-%v.tar.gz
 Source: mirror:custom:psycopg2-%v.tar.gz
 CustomMirror: 


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-base-0.10.info, 1.26, 1.27

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10447

Modified Files:
gst-plugins-base-0.10.info 
Log Message:
rm no-op (patched chunk no longer in file)


Index: gst-plugins-base-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-base-0.10.info,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- gst-plugins-base-0.10.info  3 Oct 2010 16:29:57 -   1.26
+++ gst-plugins-base-0.10.info  5 Dec 2010 20:16:50 -   1.27
@@ -52,7 +52,6 @@
 Source-MD5: 3ad90152b58563e1314af26c263f3c4c
 PatchScript: 
sed -e 's,@GSTVERSION@,%v,' %{PatchFile} | patch -p1
-   perl -pi -e 's,osxvideosink,sdlvideosink,g;' configure
 
 PatchFile: %n.patch
 PatchFile-MD5: 1ff290b1a5dab2f4372b2a955ebd7f28


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-base-0.10.info, 1.27, 1.28 gst-plugins-base-0.10.patch, 1.2, 1.3

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22548

Modified Files:
gst-plugins-base-0.10.info gst-plugins-base-0.10.patch 
Log Message:
GNOME2.28 dep update


Index: gst-plugins-base-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-base-0.10.info,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- gst-plugins-base-0.10.info  5 Dec 2010 20:16:50 -   1.27
+++ gst-plugins-base-0.10.info  5 Dec 2010 21:21:52 -   1.28
@@ -1,49 +1,45 @@
 Package: gst-plugins-base-0.10
 Version: 0.10.30
-Revision: 1
+Revision: 2
 Description: Base plugins for GStreamer
 License: GPL/LGPL
 Maintainer: Benjamin Reed gst-plugins-base-0...@fink.raccoonfink.com
 
 Depends: %N-shlibs (= %v-%r)
 BuildDepends: 
-   avahi-dev,
+   autoconf2.6,
+   automake1.11,
bison,
cairo (= 1.8.10-3),
-   dbus-dev (= 1.2.12-1),
-   expat1,
fink (= 0.29.7-1),
-   fontconfig2-dev (= 2.4.1-1),
+   fink-package-precedence,
+   fontconfig2-dev (= 2.8.0-4),
freetype219 (= 2.3.12-1),
-   gconf2-dev (= 2.20.0-1),
+   gconf2-dev (= 2.28.0-1),
gettext-tools,
glib2-dev (= 2.22.0-1),
glitz,
-   gnome-vfs2-unified-dev (= 1:2.24.0-1),
+   gnome-vfs2-unified-dev (= 1:2.24.2-1),
gstreamer-0.10-dev (= 0.10.30-1),
-   gtk+2-dev (= 2.14.7-1),
gtk-doc (= 1.13-5),
+   gtk+2-dev (= 2.18.0-1),
intltool40 (= 0.36.0-1),
libavahi-glib1-dev,
-   libbonobo2-dev (= 2.20.0-1),
libcdparanoia0-dev (= 3a9.8-11),
libgettext8-dev,
libiconv-dev,
libogg,
-   liboil-0.3 (= 0.3.17-2),
libtheora0,
+   libtool2,
libvorbis0,
libxml2 (= 2.6.32-1),
libxml2-py26,
-   orbit2-dev (= 2.14.10-1),
-   pango1-xft2-ft219-dev (= 1.24.0-1),
+   pango1-xft2-ft219-dev (= 1.24.5-4),
pixman (= 0.16.0-1),
pkgconfig (= 0.23-1),
-   popt,
python26,
pyxml-py26,
-   x11-dev,
-   xmkmf
+   x11-dev
 
 BuildConflicts: coreutils-default ( 5.96-1)
 Replaces: gst-plugins-bad-0.10 ( 0.10.10-1)
@@ -52,27 +48,26 @@
 Source-MD5: 3ad90152b58563e1314af26c263f3c4c
 PatchScript: 
sed -e 's,@GSTVERSION@,%v,' %{PatchFile} | patch -p1
+   find ext gst gst-libs sys tests -name Makefile.am | xargs perl -pi -e 
's/_CFLAGS\s*=/_CPPFLAGS=/'
 
 PatchFile: %n.patch
-PatchFile-MD5: 1ff290b1a5dab2f4372b2a955ebd7f28
+PatchFile-MD5: 5bf250a828224bc86619cbfe0892d0db
 
 SetCFLAGS: -Os -funroll-loops -fstrict-aliasing -fno-common
-SetCPPFLAGS: -fno-common -I%p/lib/freetype219/include/freetype2 
-I%p/lib/freetype219/include -I%p/include/libcdparanoia -I%p/include
-SetLDFLAGS: -L%p/lib/freetype219/lib
-SetLIBS: -L%p/lib -lz
-NoSetCFLAGS: true
-NoSetCPPFLAGS: true
-NoSetLDFLAGS: true
+SetCPPFLAGS: -I%p/include/libcdparanoia
+SetLDFLAGS: -L%p/lib/fontconfig2/lib
 UseMaxBuildJobs: true
-ConfigureParams: --without-check --libexecdir=%p/lib/%n --mandir=%p/share/man 
--enable-gtk-doc --disable-libvisual --disable-static 
--disable-dependency-tracking --enable-tests --enable-failing-tests 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:%p/lib/pango-ft219/lib/pkgconfig:$PKG_CONFIG_PATH
 FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config 
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
+ConfigureParams: --without-check --libexecdir=%p/lib/%n --mandir=%p/share/man 
--enable-gtk-doc --disable-libvisual --disable-static 
--enable-dependency-tracking --enable-tests --enable-failing-tests 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH 
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib
 CompileScript: 
#!/bin/sh -ex

export ac_cv_path_PYTHON=%p/bin/python2.6
export PATH=%p/lib/xmkmf/bin:$PATH
export PERL5LIB=%p/share/gtk-doc/data:$PERL5LIB
+   autoreconf -fi
./configure %c
-   make
+   make V=1
+   fink-package-precedence --prohibit-bdep=%n-dev .
 
 
 InstallScript: 
@@ -84,20 +79,18 @@
Package: %N-shlibs
Description: Base shared library plugins for GStreamer
Depends: 
-   expat1-shlibs,
-   freetype219-shlibs (= 2.3.12-1),
-   gconf2-shlibs (= 2.20.0-1),
-   gnome-vfs2-unified-shlibs (= 1:2.24.0-1),
+   cairo-shlibs (= 1.8.10-3),
+   gconf2-shlibs (= 2.28.0-1),
+   glib2-shlibs (= 2.22.0-1),
+   gnome-vfs2-unified-shlibs (= 1:2.24.2-1),
gstreamer-0.10-shlibs (= 0.10.30-1),
-   gtk+2-shlibs (= 2.14.7-1),
-   libbonobo2-shlibs (= 2.20.0-1),
-   libcdparanoia0-shlibs,
+   libgettext8-shlibs,

[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-base-0.10.info, 1.28, 1.29

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv23975

Modified Files:
gst-plugins-base-0.10.info 
Log Message:
Shut. Up.


Index: gst-plugins-base-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-base-0.10.info,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- gst-plugins-base-0.10.info  5 Dec 2010 21:21:52 -   1.28
+++ gst-plugins-base-0.10.info  5 Dec 2010 21:29:58 -   1.29
@@ -66,7 +66,7 @@
export PERL5LIB=%p/share/gtk-doc/data:$PERL5LIB
autoreconf -fi
./configure %c
-   make V=1
+   make
fink-package-precedence --prohibit-bdep=%n-dev .
 
 


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-base-0.10.info, 1.29, 1.30

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv3869

Modified Files:
gst-plugins-base-0.10.info 
Log Message:
theora libs seem to have split apart, make sure we get current layout


Index: gst-plugins-base-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-base-0.10.info,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- gst-plugins-base-0.10.info  5 Dec 2010 21:29:58 -   1.29
+++ gst-plugins-base-0.10.info  5 Dec 2010 22:13:27 -   1.30
@@ -1,6 +1,6 @@
 Package: gst-plugins-base-0.10
 Version: 0.10.30
-Revision: 2
+Revision: 3
 Description: Base plugins for GStreamer
 License: GPL/LGPL
 Maintainer: Benjamin Reed gst-plugins-base-0...@fink.raccoonfink.com
@@ -29,7 +29,7 @@
libgettext8-dev,
libiconv-dev,
libogg,
-   libtheora0,
+   libtheora0 (= 1.1.1-1),
libtool2,
libvorbis0,
libxml2 (= 2.6.32-1),
@@ -86,8 +86,8 @@
gstreamer-0.10-shlibs (= 0.10.30-1),
libgettext8-shlibs,
libogg-shlibs,
-   libtheoradec1-shlibs,
-   libtheoraenc1-shlibs,
+   libtheoradec1-shlibs (= 1.1.1-1),
+   libtheoraenc1-shlibs (= 1.1.1-1),
libvorbis0-shlibs,
libxml2-shlibs (= 2.6.32-1),
pango1-xft2-ft219-shlibs (= 1.24.5-4),


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-good-0.10.info, 1.30, 1.31

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7605

Modified Files:
gst-plugins-good-0.10.info 
Log Message:
GNOME2.28 dep upgrade


Index: gst-plugins-good-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-good-0.10.info,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- gst-plugins-good-0.10.info  3 Oct 2010 16:29:57 -   1.30
+++ gst-plugins-good-0.10.info  5 Dec 2010 22:31:25 -   1.31
@@ -1,6 +1,6 @@
 Package: gst-plugins-good-0.10
 Version: 0.10.25
-Revision: 1
+Revision: 2
 Description: Good plugins for GStreamer
 License: LGPL
 Maintainer: Benjamin Reed gst-plugins-good-0...@fink.raccoonfink.com
@@ -12,25 +12,24 @@
 BuildDepends: 
aalib,
audiofile,
+   atk1 (= 1.28.0-1),
+   bzip2-dev,
cairo (= 1.8.10-3),
-   dbus-dev (= 1.2.12-1),
+   dbus1.3-dev,
esound (= 0.2.38-1),
-   expat1,
-   fontconfig2-dev (= 2.4.1-1),
+   fink-package-precedence,
+   fontconfig2-dev (= 2.8.0-4),
freetype219 (= 2.3.12-1),
-   gconf2 (= 2.20.0-1),
-   gconf2-dev (= 2.20.0-1),
+   gconf2 (= 2.28.0-1),
+   gconf2-dev (= 2.28.0-1),
gettext-tools,
glib2-dev (= 2.22.0-1),
glitz (= 0.5.6-1),
-   gnome-vfs2-unified-dev (= 1:2.24.0-1),
gstreamer-0.10-dev (= 0.10.30-1),
gst-plugins-base-0.10-dev (= 0.10.30-1),
-   gtk+2-dev (= 2.14.7-1),
+   gtk+2-dev (= 2.18.0-1),
gtk-doc (= 1.13-5),
-   ladspa-dev,
libcaca-dev (= 0.99-1),
-   libcdio-dev,
libdv4,
libflac8-dev,
libgettext8-dev,
@@ -40,16 +39,14 @@
libncurses5,
libncursesw5,
libogg,
-   liboil-0.3 (= 0.3.17-2),
libpng14,
libshout4,
+   libsoup-gnome2.4.1 (= 2.28.0-1),
+   libsoup2.4.1-ssl (= 2.28.0-1),
libspeex1,
-   libtheora0,
-   libusb,
libvorbis0,
libxml2 (= 2.6.32-1),
libxml2-py26,
-   pango1-xft2-ft219-dev (= 1.24.0-1),
pixman (= 0.16.0-1),
python26,
pyxml-py26,
@@ -57,9 +54,7 @@
slang,
taglib (= 1.6.3-1),
wavpack1-dev,
-   x11-dev,
-   xft2-dev,
-   xmkmf
+   x11-dev
 
 Replaces: gst-plugins-bad-0.10
 
@@ -75,14 +70,10 @@
 
 
 SetCFLAGS: -Os -fno-common
-SetCPPFLAGS: -fno-common -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/include
-SetLDFLAGS: -L%p/lib/freetype219/lib
-SetLIBS: -L%p/lib -lz
-NoSetCFLAGS: true
-NoSetCPPFLAGS: true
-NoSetLDFLAGS: true
+SetCPPFLAGS: 
+SetLDFLAGS: 
 UseMaxBuildJobs: true
-ConfigureParams: --without-check --libexecdir=%p/lib/%n --mandir=%p/share/man 
--enable-gtk-doc --disable-static --disable-dependency-tracking --enable-tests 
--enable-failing-tests --disable-schemas-install 
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
+ConfigureParams: --without-check --libexecdir=%p/lib/%n --mandir=%p/share/man 
--enable-gtk-doc --disable-static --enable-dependency-tracking --enable-tests 
--enable-failing-tests --disable-schemas-install 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH
 CompileScript: 
#!/bin/sh -ex

@@ -90,7 +81,8 @@
export PATH=%p/lib/xmkmf/bin:$PATH
export PERL5LIB=%p/share/gtk-doc/data:$PERL5LIB
./configure %c
-   make
+   make V=1
+   fink-package-precedence .
 
 
 InstallScript: make -j1 install DESTDIR=%d
@@ -100,23 +92,31 @@
Description: Good shared library plugins for GStreamer
Depends: 
aalib-shlibs,
-   audiofile-shlibs,
+   bzip2-shlibs,
cairo-shlibs (= 1.8.10-3),
+   dbus1.3-shlibs,
esound-shlibs (= 0.2.38-1),
+   gconf2-shlibs (= 2.28.0-1),
+   glib2-shlibs (= 2.22.0-1),
+   gstreamer-0.10-shlibs (= 0.10.30-1),
gst-plugins-base-0.10-shlibs (= 0.10.30-1),
+   gtk+2-shlibs (= 2.18.0-1),
libcaca-shlibs (= 0.99-1),
-   libcdio7-shlibs,
libdv4-shlibs,
libflac8,
+   libgettext8-shlibs,
libhal1-shlibs,
+   libiconv,
libjpeg8-shlibs,
+   libncurses5-shlibs,
libogg-shlibs,
libpng14-shlibs (= 1.4.1-2),
libshout4-shlibs,
+   libsoup-gnome2.4.1-shlibs (= 2.28.0-1),
+   libsoup2.4.1-ssl-shlibs (= 2.28.0-1),
libspeex1-shlibs,
-   libtheora0-shlibs,

[cvs] dists/10.4/unstable/main/finkinfo/gnome gst-plugins-good-0.10.info, 1.31, 1.32

2010-12-05 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9378

Modified Files:
gst-plugins-good-0.10.info 
Log Message:
rm build-debugging cruft


Index: gst-plugins-good-0.10.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gst-plugins-good-0.10.info,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- gst-plugins-good-0.10.info  5 Dec 2010 22:31:25 -   1.31
+++ gst-plugins-good-0.10.info  5 Dec 2010 22:37:18 -   1.32
@@ -70,8 +70,6 @@
 
 
 SetCFLAGS: -Os -fno-common
-SetCPPFLAGS: 
-SetLDFLAGS: 
 UseMaxBuildJobs: true
 ConfigureParams: --without-check --libexecdir=%p/lib/%n --mandir=%p/share/man 
--enable-gtk-doc --disable-static --enable-dependency-tracking --enable-tests 
--enable-failing-tests --disable-schemas-install 
PKG_CONFIG_PATH=%p/lib/fontconfig2/lib/pkgconfig:$PKG_CONFIG_PATH
 CompileScript: 
@@ -81,7 +79,7 @@
export PATH=%p/lib/xmkmf/bin:$PATH
export PERL5LIB=%p/share/gtk-doc/data:$PERL5LIB
./configure %c
-   make V=1
+   make
fink-package-precedence .
 
 


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/graphics dcraw.info,1.8,1.9

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9426/unstable/main/finkinfo/graphics

Modified Files:
dcraw.info 
Log Message:
dcraw: update of current version after feedback from author about glitch with 
other version.

Index: dcraw.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/graphics/dcraw.info,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- dcraw.info  5 Dec 2010 13:16:52 -   1.8
+++ dcraw.info  6 Dec 2010 06:38:03 -   1.9
@@ -1,6 +1,6 @@
 Package: dcraw
 Version: 9.05
-Revision: 1
+Revision: 2
 Description: Raw digital photo decoder
 Architecture: powerpc, i386, x86_64
 BuildDepends: libjpeg, lcms, libgettext8-dev, libiconv-bin, gettext-tools
@@ -14,12 +14,11 @@
 SourceDirectory: dcraw
 
 # Patch Phase (bug report to upstream was sent by email):
-# Expect to remove this.
-# Replace version 1.439 with version 1.440 in dir dcraw
+# remove version 1.440 in dir dcraw, accidental presence
 # remove dir dcraw, because its name conflicts with the binary
 PatchScript: 
 #!/bin/sh -ev
-  mv -f dcraw/dcraw.c .
+  rm -f dcraw/dcraw.c
   rmdir dcraw
 
 


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
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/graphics dcraw.info,1.6,1.7

2010-12-05 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics
In directory 
sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9426/stable/main/finkinfo/graphics

Modified Files:
dcraw.info 
Log Message:
dcraw: update of current version after feedback from author about glitch with 
other version.

Index: dcraw.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/graphics/dcraw.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- dcraw.info  5 Dec 2010 13:16:52 -   1.6
+++ dcraw.info  6 Dec 2010 06:38:03 -   1.7
@@ -1,6 +1,6 @@
 Package: dcraw
 Version: 9.05
-Revision: 1
+Revision: 2
 Description: Raw digital photo decoder
 Architecture: powerpc, i386, x86_64
 BuildDepends: libjpeg, lcms, libgettext8-dev, libiconv-bin, gettext-tools
@@ -14,12 +14,11 @@
 SourceDirectory: dcraw
 
 # Patch Phase (bug report to upstream was sent by email):
-# Expect to remove this.
-# Replace version 1.439 with version 1.440 in dir dcraw
+# remove version 1.440 in dir dcraw, accidental presence
 # remove dir dcraw, because its name conflicts with the binary
 PatchScript: 
 #!/bin/sh -ev
-  mv -f dcraw/dcraw.c .
+  rm -f dcraw/dcraw.c
   rmdir dcraw
 
 


--
What happens now with your Lotus Notes apps - do you make another costly 
upgrade, or settle for being marooned without product support? Time to move
off Lotus Notes and onto the cloud with Force.com, apps are easier to build,
use, and manage than apps on traditional platforms. Sign up for the Lotus 
Notes Migration Kit to learn more. http://p.sf.net/sfu/salesforce-d2d
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs