dists/10.3/stable/main/finkinfo/languages python24.info,NONE,1.1 python24.patch,NONE,1.1

2005-09-15 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11954

Added Files:
python24.info python24.patch 
Log Message:
moved from unstable.


--- NEW FILE: python24.patch ---
--- Python-2.4/configure.orig   Sat Dec 11 14:30:53 2004
+++ Python-2.4/configureSat Dec 11 14:38:12 2004
@@ -3816,7 +3816,7 @@
;;
# is there any other compiler on Darwin besides gcc?
Darwin*)
-   BASECFLAGS=$BASECFLAGS -Wno-long-double -no-cpp-precomp 
-mno-fused-madd
+   BASECFLAGS=$BASECFLAGS -fno-common -Wno-long-double 
-no-cpp-precomp -mno-fused-madd
;;
 esac
 ;;
@@ -10295,7 +10295,8 @@
LDSHARED=$LDSHARED '-Wl,-F$(PYTHONFRAMEWORKPREFIX) 
-framework $(PYTHONFRAMEWORK)'
else
# No framework. Ignore undefined symbols, assuming they 
come from Python
-   LDSHARED=$LDSHARED -undefined suppress
+#  LDSHARED=$LDSHARED -undefined suppress
+   LDSHARED=$LDSHARED -flat_namespace -undefined suppress
fi ;;
Darwin/1.4*|Darwin/5.*|Darwin/6.*)
LDSHARED='$(CC) $(LDFLAGS) -bundle'
@@ -10305,8 +10306,10 @@
LDSHARED=$LDSHARED '-Wl,-F$(PYTHONFRAMEWORKPREFIX) 
-framework $(PYTHONFRAMEWORK)'
else
# No framework, use the Python app as bundle-loader
-   BLDSHARED=$LDSHARED '-bundle_loader $(BUILDPYTHON)'
-   LDSHARED=$LDSHARED '-bundle_loader 
$(BINDIR)/python$(VERSION)$(EXE)'
+#  BLDSHARED=$LDSHARED '-bundle_loader $(BUILDPYTHON)'
+#  LDSHARED=$LDSHARED '-bundle_loader 
$(BINDIR)/python$(VERSION)$(EXE)'
+   BLDSHARED=$LDSHARED -flat_namespace -undefined 
suppress
+   LDSHARED=$LDSHARED -flat_namespace -undefined suppress
fi ;;
Darwin/*)
# Use -undefined dynamic_lookup whenever possible (10.3 and 
later).
--- Python-2.4//Makefile.pre.in.origSat Dec 11 14:25:10 2004
+++ Python-2.4/Makefile.pre.in  Sat Dec 11 14:25:25 2004
@@ -56,7 +56,7 @@
 OPT=   @OPT@
 BASECFLAGS=@BASECFLAGS@
 CFLAGS=$(BASECFLAGS) $(OPT)
-CPPFLAGS=  -I. -I$(srcdir)/Include
+CPPFLAGS=  -I. -I$(srcdir)/Include [EMAIL PROTECTED]@/include
 LDFLAGS=   @LDFLAGS@
 LDLAST=@LDLAST@
 SGI_ABI=   @SGI_ABI@
--- Python-2.4/Misc/setuid-prog.c.orig  Sat Dec 11 14:29:22 2004
+++ Python-2.4/Misc/setuid-prog.c   Sat Dec 11 14:30:13 2004
@@ -70,6 +70,13 @@
 #define environ _environ
 #endif
 
+#if defined(__APPLE__)
+# include sys/time.h
+# include crt_externs.h
+# define environ (*_NSGetEnviron())
+#endif /* __APPLE__ */
+
+
 /* don't change def_IFS */
 char def_IFS[] = IFS= \t\n;
 /* you may want to change def_PATH, but you should really change it in */
--- Python-2.4/Modules/posixmodule.c.orig   Sat Dec 11 14:27:52 2004
+++ Python-2.4/Modules/posixmodule.cSat Dec 11 14:28:17 2004
@@ -298,7 +298,7 @@
 #endif
 
 /* Return a dictionary corresponding to the POSIX environment table */
-#ifdef WITH_NEXT_FRAMEWORK
+#ifdef __APPLE__
 /* On Darwin/MacOSX a shared library or framework has no access to
 ** environ directly, we must obtain it with _NSGetEnviron().
 */
@@ -316,7 +316,7 @@
d = PyDict_New();
if (d == NULL)
return NULL;
-#ifdef WITH_NEXT_FRAMEWORK
+#ifdef __APPLE__
if (environ == NULL)
environ = *_NSGetEnviron();
 #endif
--- Python-2.4/Lib/pydoc.py Mon Dec 13 11:24:02 2004
+++ Python-2.4/Lib/pydoc.py.origMon Dec 13 11:21:37 2004
@@ -1615,19 +1615,7 @@
 def __init__(self, input, output):
 self.input = input
 self.output = output
-self.docdir = None
-execdir = os.path.dirname(sys.executable)
-homedir = os.environ.get('PYTHONHOME')
-for dir in [os.environ.get('PYTHONDOCS'),
-homedir and os.path.join(homedir, 'doc'),
-os.path.join(execdir, 'doc'),
-'/usr/doc/python-docs-' + split(sys.version)[0],
-'/usr/doc/python-' + split(sys.version)[0],
-'/usr/doc/python-docs-' + sys.version[:3],
-'/usr/doc/python-' + sys.version[:3],
-os.path.join(sys.prefix, 
'Resources/English.lproj/Documentation')]:
-if dir and os.path.isdir(os.path.join(dir, 'lib')):
-self.docdir = dir
+self.docdir = os.path.join(sys.prefix, 
'share','doc','python'+sys.version[0]+sys.version[2],'html')
 
 def __repr__(self):
 if inspect.stack()[1][3] == '?':
--- Python-2.4/setup.py.origSat Dec 11 14:38:36 2004
+++ Python-2.4/setup.py Sat Dec 11 14:47:51 2004
@@ -245,8 +245,8 @@
 # Add paths to popular package managers on OS X/darwin
 if sys.platform == 

dists/10.4-transitional/stable/main/finkinfo/languages python24.info,NONE,1.1 python24.patch,NONE,1.1

2005-09-15 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/languages
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12109

Added Files:
python24.info python24.patch 
Log Message:
Moved from unstable.


--- NEW FILE: python24.patch ---
--- Python-2.4/configure.orig   Sat Dec 11 14:30:53 2004
+++ Python-2.4/configureSat Dec 11 14:38:12 2004
@@ -3816,7 +3816,7 @@
;;
# is there any other compiler on Darwin besides gcc?
Darwin*)
-   BASECFLAGS=$BASECFLAGS -Wno-long-double -no-cpp-precomp 
-mno-fused-madd
+   BASECFLAGS=$BASECFLAGS -fno-common -Wno-long-double 
-no-cpp-precomp -mno-fused-madd
;;
 esac
 ;;
@@ -10295,7 +10295,8 @@
LDSHARED=$LDSHARED '-Wl,-F$(PYTHONFRAMEWORKPREFIX) 
-framework $(PYTHONFRAMEWORK)'
else
# No framework. Ignore undefined symbols, assuming they 
come from Python
-   LDSHARED=$LDSHARED -undefined suppress
+#  LDSHARED=$LDSHARED -undefined suppress
+   LDSHARED=$LDSHARED -flat_namespace -undefined suppress
fi ;;
Darwin/1.4*|Darwin/5.*|Darwin/6.*)
LDSHARED='$(CC) $(LDFLAGS) -bundle'
@@ -10305,8 +10306,10 @@
LDSHARED=$LDSHARED '-Wl,-F$(PYTHONFRAMEWORKPREFIX) 
-framework $(PYTHONFRAMEWORK)'
else
# No framework, use the Python app as bundle-loader
-   BLDSHARED=$LDSHARED '-bundle_loader $(BUILDPYTHON)'
-   LDSHARED=$LDSHARED '-bundle_loader 
$(BINDIR)/python$(VERSION)$(EXE)'
+#  BLDSHARED=$LDSHARED '-bundle_loader $(BUILDPYTHON)'
+#  LDSHARED=$LDSHARED '-bundle_loader 
$(BINDIR)/python$(VERSION)$(EXE)'
+   BLDSHARED=$LDSHARED -flat_namespace -undefined 
suppress
+   LDSHARED=$LDSHARED -flat_namespace -undefined suppress
fi ;;
Darwin/*)
# Use -undefined dynamic_lookup whenever possible (10.3 and 
later).
--- Python-2.4//Makefile.pre.in.origSat Dec 11 14:25:10 2004
+++ Python-2.4/Makefile.pre.in  Sat Dec 11 14:25:25 2004
@@ -56,7 +56,7 @@
 OPT=   @OPT@
 BASECFLAGS=@BASECFLAGS@
 CFLAGS=$(BASECFLAGS) $(OPT)
-CPPFLAGS=  -I. -I$(srcdir)/Include
+CPPFLAGS=  -I. -I$(srcdir)/Include [EMAIL PROTECTED]@/include
 LDFLAGS=   @LDFLAGS@
 LDLAST=@LDLAST@
 SGI_ABI=   @SGI_ABI@
--- Python-2.4/Misc/setuid-prog.c.orig  Sat Dec 11 14:29:22 2004
+++ Python-2.4/Misc/setuid-prog.c   Sat Dec 11 14:30:13 2004
@@ -70,6 +70,13 @@
 #define environ _environ
 #endif
 
+#if defined(__APPLE__)
+# include sys/time.h
+# include crt_externs.h
+# define environ (*_NSGetEnviron())
+#endif /* __APPLE__ */
+
+
 /* don't change def_IFS */
 char def_IFS[] = IFS= \t\n;
 /* you may want to change def_PATH, but you should really change it in */
--- Python-2.4/Modules/posixmodule.c.orig   Sat Dec 11 14:27:52 2004
+++ Python-2.4/Modules/posixmodule.cSat Dec 11 14:28:17 2004
@@ -298,7 +298,7 @@
 #endif
 
 /* Return a dictionary corresponding to the POSIX environment table */
-#ifdef WITH_NEXT_FRAMEWORK
+#ifdef __APPLE__
 /* On Darwin/MacOSX a shared library or framework has no access to
 ** environ directly, we must obtain it with _NSGetEnviron().
 */
@@ -316,7 +316,7 @@
d = PyDict_New();
if (d == NULL)
return NULL;
-#ifdef WITH_NEXT_FRAMEWORK
+#ifdef __APPLE__
if (environ == NULL)
environ = *_NSGetEnviron();
 #endif
--- Python-2.4/Lib/pydoc.py Mon Dec 13 11:24:02 2004
+++ Python-2.4/Lib/pydoc.py.origMon Dec 13 11:21:37 2004
@@ -1615,19 +1615,7 @@
 def __init__(self, input, output):
 self.input = input
 self.output = output
-self.docdir = None
-execdir = os.path.dirname(sys.executable)
-homedir = os.environ.get('PYTHONHOME')
-for dir in [os.environ.get('PYTHONDOCS'),
-homedir and os.path.join(homedir, 'doc'),
-os.path.join(execdir, 'doc'),
-'/usr/doc/python-docs-' + split(sys.version)[0],
-'/usr/doc/python-' + split(sys.version)[0],
-'/usr/doc/python-docs-' + sys.version[:3],
-'/usr/doc/python-' + sys.version[:3],
-os.path.join(sys.prefix, 
'Resources/English.lproj/Documentation')]:
-if dir and os.path.isdir(os.path.join(dir, 'lib')):
-self.docdir = dir
+self.docdir = os.path.join(sys.prefix, 
'share','doc','python'+sys.version[0]+sys.version[2],'html')
 
 def __repr__(self):
 if inspect.stack()[1][3] == '?':
--- Python-2.4/setup.py.origSat Dec 11 14:38:36 2004
+++ Python-2.4/setup.py Sat Dec 11 14:47:51 2004
@@ -245,8 +245,8 @@
 # Add paths to popular package managers on OS X/darwin
 if 

dists/10.4-transitional/stable/main/finkinfo/graphics imagemagick.info,NONE,1.1

2005-09-15 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.4-transitional/stable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12592

Added Files:
imagemagick.info 
Log Message:
Moved from stable.


--- NEW FILE: imagemagick.info ---
Info2: 
Package: imagemagick%type_pkg[-nox]
Type: -nox (boolean)
Version: 6.1.8
Revision: 1
GCC: 3.3
Source: mirror:sourceforge:imagemagick/ImageMagick-%v-7.tar.gz
Source-MD5: a79d01f885b2727489c26238946be27a
SourceDirectory: ImageMagick-%v
SourceRename: ImageMagick-%v.tar.gz
Depends: %N-shlibs (= %v-%r), (%type_raw[-nox] = .) x11-shlibs, 
(%type_raw[-nox] = .) x11, libtool14-shlibs
BuildDepends: libjpeg, libpng3, libtiff, libxml2, lcms, bzip2-dev, 
libiconv-dev, (%type_raw[-nox] = .) x11-dev, libtool14
Conflicts: imagemagick, imagemagick-nox
Replaces: imagemagick, imagemagick-nox
Provides: (%type_raw[-nox] = -nox) imagemagick
ConfigureParams: --without-perl --mandir='${prefix}/share/man' --enable-lzw 
--without-hdf5 --with-bzlib --without-dps --without-fpx --with-ttf 
--without-gslib --with-gs-font-dir=%p/share/ghostscript/fonts --without-jbig 
--with-jpeg --without-jp2 --with-lcms --without-mpeg2 --with-magic-plus-plus 
--with-png --with-tiff -without-wmf --with-xml --with-zlib 
CompileScript: 
 #!/bin/sh
 if [ %type_raw[-nox] == . ]; then
 ac_cv_func_poll=no ./configure %c --with-x
 fi
 if [ %type_raw[-nox] == -nox ]; then
 ac_cv_func_poll=no ./configure %c --without-x
 fi
 make

Description: Image manipulation tools
InstallScript: 
 #!/bin/sh
 make install DESTDIR=%d
 if [ %type_raw[-nox] == . ]; then
 perl -pi.bak -e s|-lXext -lSM -lICE -lX11||g %i/lib/libMagick*la
 perl -pi.bak -e s|-L/usr/X11R6/lib||g %i/lib/libMagick*la
 fi
 /bin/rm -f %i/lib/libltdl*

DescDetail: 
 ImageMagick is a robust collection of tools and libraries to read, 
 write, and manipulate an image in many image formats (over 68 major formats)
 including popular formats like TIFF, JPEG, PNG, PDF, PhotoCD, and GIF.
 With ImageMagick you can create images dynamically, making it 
 suitable for Web applications. You can also resize, rotate, sharpen,
 color reduce, or add special effects to an image and save your
 completed work in the same or a different image format.

DescPort: 
 In version 5.5.6-23, we get around the libpoll problem in OS X 10.3 by
 fooling ./configure into thinking that poll is not present.

SplitOff: 
  Package: %N-shlibs
  Depends: libjpeg-shlibs, libpng3-shlibs, libtiff-shlibs,  bzip2, ghostscript, 
libxml2-shlibs, lcms-shlibs, (%type_raw[-nox] = .) x11-shlibs, (%type_raw[-nox] 
= .) x11
  Conflicts: imagemagick-shlibs, imagemagick-nox-shlibs
  Replaces: imagemagick-shlibs, imagemagick-nox-shlibs
  Provides: (%type_raw[-nox] = -nox) imagemagick-shlibs
  Files: lib/lib*.*.dylib %p/lib/ImageMagick-%v
  Shlibs: 
   %p/lib/libMagick++.6.dylib 8.0.0 %n (= 6.1.8-7)
   %p/lib/libWand.6.dylib 8.0.0 %n (= 6.1.8-7)
   %p/lib/libMagick.6.dylib 8.0.0 %n (= 6.1.8-7)
  
  DocFiles: www/Copyright.html README.txt ChangeLog NEWS

SplitOff2: 
 Package: %N-dev
 Depends: %N-shlibs (= %v-%r), (%type_raw[-nox] = .) x11-shlibs, 
(%type_raw[-nox] = .) x11
 Conflicts: imagemagick-dev, imagemagick-nox-dev
 Replaces: imagemagick-dev, imagemagick-nox-dev
 Provides: (%type_raw[-nox] = -nox) imagemagick-dev
 Files: include lib/lib*.* lib/pkgconfig %p/bin/*-config
 BuildDependsOnly: True
 DocFiles: www/Copyright.html README.txt ChangeLog NEWS

DocFiles: www/Copyright.html README.txt ChangeLog NEWS
License: BSD
Maintainer: Jeffrey Whitaker [EMAIL PROTECTED]
Homepage: http://www.imagemagick.org/
#end of Info2




---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/stable/crypto/finkinfo python24-socket-ssl.info,NONE,1.1 python24-socket-ssl.patch,NONE,1.1

2005-09-15 Thread Jeff Whitaker
Update of /cvsroot/fink/dists/10.4-transitional/stable/crypto/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13389

Added Files:
python24-socket-ssl.info python24-socket-ssl.patch 
Log Message:
Moved from unstable.


--- NEW FILE: python24-socket-ssl.info ---
Package: python24-socket-ssl
Version: 2.4
Revision: 101
Description: Socket plugin for python (SSL version)
Maintainer: Jeffrey Whitaker [EMAIL PROTECTED]
Replaces: python24-socket, python24-socket-nox
Depends: openssl097-shlibs
BuildDepends: python24 (= %v-%r) | python24-nox (= %v-%r), readline-shlibs 
(= 4.3-25), expat-shlibs, gdbm3-shlibs, gmp-shlibs (= 4.1.2-11), db42-ssl, 
tcltk-shlibs (= 8.4.1), tcltk (= 8.4.1-1), readline (= 4.3-25), gdbm3 , gmp 
(= 4.1.2-11), tcltk-dev, expat, openssl097-dev
Source: http://python.org/ftp/python/%v/Python-%v.tgz
Source-MD5: 149ad508f936eccf669d52682cf8e606
PatchScript: (sed 's|@PREFIX@|%p|g'  %a/%n.patch | patch -p1)
GCC: 3.3
CompileScript: 
 %p/bin/python2.4 setup_socket_ssl.py build

InstallScript: 
 mkdir -p %i/lib/python2.4/lib-dynload
 cp build/lib.*/_socket.so %i/lib/python2.4/lib-dynload
 cp build/lib.*/_ssl.so %i/lib/python2.4/lib-dynload

DocFiles: README LICENSE 
License: OSI-Approved
Homepage: http://www.python.org

--- NEW FILE: python24-socket-ssl.patch ---
--- Python-2.4/setup_socket_ssl.py.orig Tue Apr  1 11:31:13 2003
+++ Python-2.4/setup_socket_ssl.py  Tue Apr  1 11:31:05 2003
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+
+from distutils.core import setup, Extension
+import os
+import sys
+
+try:
+setup (name = python-sockets-ssl,
+   version = 2.4,
+   description = socket module w/ssl enabled,
+   ext_modules = [
+Extension('_socket', ['Modules/socketmodule.c'],
+   include_dirs = [@PREFIX@/include/openssl],
+   library_dirs = [@PREFIX@/lib/],
+   libraries = ['ssl', 'crypto'],
+   define_macros = [('USE_SSL',1)] ),
+Extension('_ssl', ['Modules/_ssl.c'],
+   include_dirs = [@PREFIX@/include/openssl],
+   library_dirs = [@PREFIX@/lib/],
+   libraries = ['ssl', 'crypto'],
+   depends = ['socketmodule.h'] )
+]
+   )
+except:
+import sys
+import traceback
+traceback.print_exc()
+sys.exit(1)



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/beren12/finkinfo/utils .cvsignore,NONE,1.1 cdrdao.info,NONE,1.1 cdrdao.patch,NONE,1.1

2005-09-15 Thread Chris Zubrzycki
Update of /cvsroot/fink/experimental/beren12/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31180

Added Files:
.cvsignore cdrdao.info cdrdao.patch 
Log Message:
builds - unstable


--- NEW FILE: cdrdao.info ---
Package: cdrdao
Version: 1.2.0
Revision: 10
GCC: 3.3
Source: mirror:sourceforge:%n/%n-%v.tar.gz
SourceDirectory: %n-%v
Source-MD5: dc2bdef7a7c8973e678ba4a4a2d9cc7e
BuildDepends: pccts, lame-dev, gcc3.3, libao2, libmad, libvorbis0, libogg
Depends: libmad-shlibs, libogg-shlibs, libao2-shlibs, libvorbis0-shlibs, 
lame-shlibs
Patch: %n.patch
UpdateConfigGuessInDirs: scsilib/conf
NoSetLDFLAGS: true
SetLDFLAGS: -Wl,-search_paths_first -framework IOKit -framework CoreFoundation
SetCC: gcc-3.3
SetCXX: g++-3.3
ConfigureParams: --with-pcctsbin=%p/bin --with-pcctsinc=%p/include/pccts 
--mandir='${prefix}/share/man' --with-lame-lib=%p/lib 
--with-lame-include=%p/include/ --without-xdao --disable-dependency-tracking

CompileScript: 
  rm -rf pccts
  ./configure %c
  make


InstallScript: 
  make install DESTDIR=%d
  mkdir -p %i/share/doc/cdrdao
  mv testtocs %i/share/doc/cdrdao/example-tocs
  mv utils/toc2cue utils/toc2mp3 %i/bin
  mv contrib %i/share/doc/cdrdao/


DocFiles: COPYING CREDITS README* AUTHORS  ChangeLog NEWS
Description: Create CDs in disc-at-once (DAO) mode
DescDetail: 
Writes audio CD-Rs in disc-at-once (DAO) mode allowing control over
pre-gaps (length down to 0, nonzero audio data) and sub-channel
information like ISRC codes. All data that is written to the disc must
be specified with a text file. Audio data may be in WAVE or raw format.

License: GPL
Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
Homepage: http://cdrdao.sourceforge.net/

--- NEW FILE: .cvsignore ---
*~

--- NEW FILE: cdrdao.patch ---
diff -ruN cdrdao-1.2.0/dao/main.cc cdrdao-1.2.0.new/dao/main.cc
--- cdrdao-1.2.0/dao/main.cc2005-05-09 11:48:40.0 -0400
+++ cdrdao-1.2.0.new/dao/main.cc2005-09-14 10:23:30.0 -0400
@@ -122,6 +122,11 @@
 static const char *SCSI_DEVICE = /dev/cdrecorder;
 static int FIFO_BUFFERS = 32;
 
+#elif defined(__APPLE__)  defined(__GNUC__)
+
+static const char *SCSI_DEVICE = IOCompactDiscServices;
+static int FIFO_BUFFERS = 32;
+
 #else
 
 static const char *SCSI_DEVICE = 0,0,0;



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/net mtr.info,1.1,1.2

2005-09-15 Thread Jeremy Higgs
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/net
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11013

Modified Files:
mtr.info 
Log Message:
Fixed the package description.

Index: mtr.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/net/mtr.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mtr.info27 Apr 2005 03:26:12 -  1.1
+++ mtr.info15 Sep 2005 14:07:43 -  1.2
@@ -9,7 +9,7 @@
 ConfigureParams: --mandir='${prefix}/share/man' --sbindir='${prefix}/bin'
 SetCPPFLAGS: -no-cpp-precomp -DBIND_8_COMPAT
 DocFiles: AUTHORS  COPYING ChangeLog FORMATS NEWS README SECURITY TODO
-Description: Combines 'traceroute' and 'ping' functionality
+Description: Combines 'traceroute' and 'ping'
 DescDetail: 
 mtr is a simple network diagnostic tool, which combines the functionality of 
 the 'traceroute' and 'ping' programs into one.



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/beren12/finkinfo/utils cdrdao.info,1.1,NONE cdrdao.patch,1.1,NONE

2005-09-15 Thread Chris Zubrzycki
Update of /cvsroot/fink/experimental/beren12/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19445

Removed Files:
cdrdao.info cdrdao.patch 
Log Message:
to unstable

--- cdrdao.info DELETED ---

--- cdrdao.patch DELETED ---



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/utils cdrdao.info,1.1,1.2 cdrdao.patch,1.1,1.2

2005-09-15 Thread Chris Zubrzycki
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/utils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19974

Modified Files:
cdrdao.info cdrdao.patch 
Log Message:
new version


Index: cdrdao.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/utils/cdrdao.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cdrdao.info 27 Apr 2005 03:26:48 -  1.1
+++ cdrdao.info 15 Sep 2005 14:43:55 -  1.2
@@ -1,18 +1,19 @@
 Package: cdrdao
-Version: 1.1.7
-Revision: 23
+Version: 1.2.0
+Revision: 10
 GCC: 3.3
-Source: mirror:sourceforge:%n/%n-%v.src.tar.bz2
+Source: mirror:sourceforge:%n/%n-%v.tar.gz
 SourceDirectory: %n-%v
-Source-MD5: a85c0fa006ad3af64b76fd86b10b2ad4
-BuildDepends: pccts, lame-dev, gcc3.3
-Depends: lame-shlibs, lame
+Source-MD5: dc2bdef7a7c8973e678ba4a4a2d9cc7e
+BuildDepends: pccts, lame-dev, gcc3.3, libao2, libmad, libvorbis0, libogg
+Depends: libmad-shlibs, libogg-shlibs, libao2-shlibs, libvorbis0-shlibs, 
lame-shlibs
 Patch: %n.patch
 UpdateConfigGuessInDirs: scsilib/conf
-SetLDFLAGS: -framework IOKit -framework CoreFoundation
+NoSetLDFLAGS: true
+SetLDFLAGS: -Wl,-search_paths_first -framework IOKit -framework CoreFoundation
 SetCC: gcc-3.3
 SetCXX: g++-3.3
-ConfigureParams: --with-pcctsbin=%p/bin --with-pcctsinc=%p/include/pccts 
--mandir='${prefix}/share/man' --with-lame-lib=%p/lib 
--with-lame-include=%p/include/ --disable-gtkmmtest
+ConfigureParams: --with-pcctsbin=%p/bin --with-pcctsinc=%p/include/pccts 
--mandir='${prefix}/share/man' --with-lame-lib=%p/lib 
--with-lame-include=%p/include/ --without-xdao --disable-dependency-tracking
 
 CompileScript: 
   rm -rf pccts
@@ -28,7 +29,7 @@
   mv contrib %i/share/doc/cdrdao/
 
 
-DocFiles: COPYING CREDITS README* Release*
+DocFiles: COPYING CREDITS README* AUTHORS  ChangeLog NEWS
 Description: Create CDs in disc-at-once (DAO) mode
 DescDetail: 
 Writes audio CD-Rs in disc-at-once (DAO) mode allowing control over
@@ -36,10 +37,6 @@
 information like ISRC codes. All data that is written to the disc must
 be specified with a text file. Audio data may be in WAVE or raw format.
 
-DescPackaging: 
-Changed license from GPL to Restrictive, because it depends on the
-restrictive package lame.
-
-License: Restrictive
+License: GPL
 Maintainer: Chris Zubrzycki [EMAIL PROTECTED]
 Homepage: http://cdrdao.sourceforge.net/

Index: cdrdao.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/utils/cdrdao.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- cdrdao.patch27 Apr 2005 03:26:48 -  1.1
+++ cdrdao.patch15 Sep 2005 14:43:55 -  1.2
@@ -1,45 +1,7 @@
-diff -ruN cdrdao-1.1.7/Makefile.in cdrdao-1.1.7.new/Makefile.in
 cdrdao-1.1.7/Makefile.in   Sun Oct  6 14:53:55 2002
-+++ cdrdao-1.1.7.new/Makefile.in   Tue Oct 29 11:27:01 2002
-@@ -41,8 +41,8 @@
- #
- #
- #
--SUBDIRS = @pccts_target@ @scsilib_dir@ trackdb paranoia dao utils @xdao@
--SUBDIRSINST = trackdb dao utils @xdao@
-+SUBDIRS = @pccts_target@ @scsilib_dir@ trackdb paranoia dao utils
-+SUBDIRSINST = trackdb dao utils
- 
- all:
-   for d in $(SUBDIRS) ; do  \
-diff -ruN cdrdao-1.1.7/dao/Makefile.in cdrdao-1.1.7.new/dao/Makefile.in
 cdrdao-1.1.7/dao/Makefile.in   Sun Oct  6 14:53:56 2002
-+++ cdrdao-1.1.7.new/dao/Makefile.in   Tue Oct 29 11:27:01 2002
-@@ -67,14 +67,14 @@
- all: $(PRG)
- 
- install: all installdirs
--  $(INSTALL_PROGRAM) $(PRG) $(bindir)
--  $(INSTALL_DATA) cdrdao.man $(man1dir)/cdrdao.1
--  $(INSTALL_DATA) cdrdao.drivers $(DRIVER_TABLE_FILE)
-+  $(INSTALL_PROGRAM) $(PRG) $(DESTDIR)$(bindir)
-+  $(INSTALL_DATA) cdrdao.man $(DESTDIR)$(man1dir)/cdrdao.1
-+  $(INSTALL_DATA) cdrdao.drivers $(DESTDIR)$(DRIVER_TABLE_FILE)
- 
- installdirs:
--  $(srcdir)/../mkinstalldirs $(bindir)
--  $(srcdir)/../mkinstalldirs $(man1dir)
--  $(srcdir)/../mkinstalldirs $(CDRDAO_DATA_DIR)
-+  $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir)
-+  $(srcdir)/../mkinstalldirs $(DESTDIR)$(man1dir)
-+  $(srcdir)/../mkinstalldirs $(DESTDIR)$(CDRDAO_DATA_DIR)
- 
- clean:
-   rm -f *.o $(PRG)
-diff -ruN cdrdao-1.1.7/dao/main.cc cdrdao-1.1.7.new/dao/main.cc
 cdrdao-1.1.7/dao/main.cc   Sun Oct  6 14:53:56 2002
-+++ cdrdao-1.1.7.new/dao/main.cc   Tue Oct 29 11:30:12 2002
-@@ -105,6 +105,11 @@
+diff -ruN cdrdao-1.2.0/dao/main.cc cdrdao-1.2.0.new/dao/main.cc
+--- cdrdao-1.2.0/dao/main.cc   2005-05-09 11:48:40.0 -0400
 cdrdao-1.2.0.new/dao/main.cc   2005-09-14 10:23:30.0 -0400
+@@ -122,6 +122,11 @@
  static const char *SCSI_DEVICE = /dev/cdrecorder;
  static int FIFO_BUFFERS = 32;
  
@@ -51,94 +13,3 @@
  #else
  
  static const char *SCSI_DEVICE = 0,0,0;
-diff -ruN cdrdao-1.1.7/utils/Makefile.in 

dists/10.3/unstable/main/finkinfo/kde kdewebdev3.info,1.17,1.18 kdewebdev3.patch,1.2,1.3

2005-09-15 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5817/10.3/unstable/main/finkinfo/kde

Modified Files:
kdewebdev3.info kdewebdev3.patch 
Log Message:
includehint fix

Index: kdewebdev3.patch
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/kde/kdewebdev3.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- kdewebdev3.patch18 Dec 2004 18:14:47 -  1.2
+++ kdewebdev3.patch15 Sep 2005 16:02:46 -  1.3
@@ -1,157 +1,12 @@
-diff -uNr kdewebdev-3.3.1/admin/ltmain.sh kdewebdev-3.3.1-new/admin/ltmain.sh
 kdewebdev-3.3.1/admin/ltmain.shTue Jun 15 12:47:06 2004
-+++ kdewebdev-3.3.1-new/admin/ltmain.shMon Oct 18 16:11:57 2004
-@@ -4397,6 +4397,7 @@
-   # We should set the shlibpath_var
-   rpath=
-   for dir in $temp_rpath; do
-+ if test $dir != @FINKPREFIX@/lib; then
- case $dir in
- [\\/]* | [A-Za-z]:[\\/]*)
-   # Absolute path.
-@@ -4407,6 +4408,7 @@
-   rpath=$rpath\$thisdir/$dir:
-   ;;
- esac
-+ fi
-   done
-   temp_rpath=$rpath
-   fi
-diff -uNr kdewebdev-3.3.1/configure kdewebdev-3.3.1-new/configure
 kdewebdev-3.3.1/configure  Sun Oct  3 10:38:31 2004
-+++ kdewebdev-3.3.1-new/configure  Mon Oct 18 16:11:57 2004
-@@ -7979,6 +7979,19 @@
- lt_cv_sys_max_cmd_len=8192;
- ;;
- 
-+  netbsd* | freebsd* | openbsd* | darwin* )
-+# This has been around since 386BSD, at least.  Likely further.
-+if test -x /sbin/sysctl; then
-+  lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
-+elif test -x /usr/sbin/sysctl; then
-+  lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
-+else
-+  lt_cv_sys_max_cmd_len=65536 # usable default for *BSD
-+fi
-+# And add a safety zone
-+lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
-+;;
-+
-  *)
- # If test is not a shell built-in, we'll probably end up computing a
- # maximum length that is only half of the actual maximum length, but
-@@ -9622,10 +9635,21 @@
-   archive_cmds_need_lc=no
-   case $host_os in
-   rhapsody* | darwin1.[012])
--  allow_undefined_flag='-undefined suppress'
-+  allow_undefined_flag='-Wl,-undefined -Wl,suppress'
-   ;;
-   *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
-   esac
-   lt_int_apple_cc_single_mod=no
-@@ -11475,7 +11499,18 @@
-   allow_undefined_flag='-undefined suppress'
-   ;;
- *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
- esac
- output_verbose_link_cmd='echo'
-@@ -12526,7 +12561,18 @@
-   allow_undefined_flag_CXX='-undefined suppress'
-   ;;
- *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag_CXX='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag_CXX='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag_CXX='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag_CXX='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
- esac
- lt_int_apple_cc_single_mod=no
-@@ -16349,7 +16395,18 @@
-   allow_undefined_flag_F77='-undefined suppress'
-   ;;
-   *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag_F77='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag_F77='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+

dists/10.4-transitional/unstable/main/finkinfo/kde kdewebdev3.info,1.7,1.8 kdewebdev3.patch,1.1,1.2

2005-09-15 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5817/10.4-transitional/unstable/main/finkinfo/kde

Modified Files:
kdewebdev3.info kdewebdev3.patch 
Log Message:
includehint fix

Index: kdewebdev3.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/kde/kdewebdev3.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- kdewebdev3.patch27 Apr 2005 03:25:51 -  1.1
+++ kdewebdev3.patch15 Sep 2005 16:02:47 -  1.2
@@ -1,157 +1,12 @@
-diff -uNr kdewebdev-3.3.1/admin/ltmain.sh kdewebdev-3.3.1-new/admin/ltmain.sh
 kdewebdev-3.3.1/admin/ltmain.shTue Jun 15 12:47:06 2004
-+++ kdewebdev-3.3.1-new/admin/ltmain.shMon Oct 18 16:11:57 2004
-@@ -4397,6 +4397,7 @@
-   # We should set the shlibpath_var
-   rpath=
-   for dir in $temp_rpath; do
-+ if test $dir != @FINKPREFIX@/lib; then
- case $dir in
- [\\/]* | [A-Za-z]:[\\/]*)
-   # Absolute path.
-@@ -4407,6 +4408,7 @@
-   rpath=$rpath\$thisdir/$dir:
-   ;;
- esac
-+ fi
-   done
-   temp_rpath=$rpath
-   fi
-diff -uNr kdewebdev-3.3.1/configure kdewebdev-3.3.1-new/configure
 kdewebdev-3.3.1/configure  Sun Oct  3 10:38:31 2004
-+++ kdewebdev-3.3.1-new/configure  Mon Oct 18 16:11:57 2004
-@@ -7979,6 +7979,19 @@
- lt_cv_sys_max_cmd_len=8192;
- ;;
- 
-+  netbsd* | freebsd* | openbsd* | darwin* )
-+# This has been around since 386BSD, at least.  Likely further.
-+if test -x /sbin/sysctl; then
-+  lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
-+elif test -x /usr/sbin/sysctl; then
-+  lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
-+else
-+  lt_cv_sys_max_cmd_len=65536 # usable default for *BSD
-+fi
-+# And add a safety zone
-+lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
-+;;
-+
-  *)
- # If test is not a shell built-in, we'll probably end up computing a
- # maximum length that is only half of the actual maximum length, but
-@@ -9622,10 +9635,21 @@
-   archive_cmds_need_lc=no
-   case $host_os in
-   rhapsody* | darwin1.[012])
--  allow_undefined_flag='-undefined suppress'
-+  allow_undefined_flag='-Wl,-undefined -Wl,suppress'
-   ;;
-   *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
-   esac
-   lt_int_apple_cc_single_mod=no
-@@ -11475,7 +11499,18 @@
-   allow_undefined_flag='-undefined suppress'
-   ;;
- *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
- esac
- output_verbose_link_cmd='echo'
-@@ -12526,7 +12561,18 @@
-   allow_undefined_flag_CXX='-undefined suppress'
-   ;;
- *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag_CXX='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag_CXX='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  10.[012])
-+allow_undefined_flag_CXX='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+;;
-+  10.*)
-+allow_undefined_flag_CXX='-Wl,-undefined -Wl,dynamic_lookup'
-+;;
-+esac
-+  fi
-   ;;
- esac
- lt_int_apple_cc_single_mod=no
-@@ -16349,7 +16395,18 @@
-   allow_undefined_flag_F77='-undefined suppress'
-   ;;
-   *) # Darwin 1.3 on
--  test -z ${LD_TWOLEVEL_NAMESPACE}  
allow_undefined_flag_F77='-flat_namespace -undefined suppress'
-+  if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
-+allow_undefined_flag_F77='-Wl,-flat_namespace -Wl,-undefined 
-Wl,suppress'
-+  else
-+case ${MACOSX_DEPLOYMENT_TARGET} in
-+  

experimental/bmaret ggv.info,1.2,NONE

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9389

Removed Files:
ggv.info 
Log Message:
Now in unstable.


--- ggv.info DELETED ---



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gpdf.info,1.5,1.6

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11698

Modified Files:
gpdf.info 
Log Message:
New version.

Index: gpdf.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gpdf.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- gpdf.info   7 Jul 2005 17:37:19 -   1.5
+++ gpdf.info   15 Sep 2005 16:17:16 -  1.6
@@ -1,16 +1,71 @@
 Package: gpdf
-Version: 0.132
-Revision: 9
+Version: 2.10.0
+Revision: 1
 GCC: 3.3
-Depends: atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound (= 
0.2.34-1), gconf2 (= 2.6.0-1), gettext, ghostscript (= 8.00-1) | 
system-ghostscript8, glib2 (= 2.4.0-1), gnome-vfs2 (= 2.6.0-1) | 
gnome-vfs2-ssl (= 2.6.0-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 2.3.16-1), 
libbonobo2 (= 2.6.0-1), libbonoboui2 (= 2.6.0-1), libglade2-shlibs (= 
2.3.6-1), libgnome2 (= 2.6.0-1), libgnomecanvas2 (= 2.6.0-1), 
libgnomeprint2.2 (= 2.6.0-1), libgnomeprintui2.2 (= 2.6.0-1), libgnomeui2 (= 
2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), 
pango1-xft2 (= 1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2)
-BuildDepends: audiofile, glib2-dev (= 2.4.0-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libgnomecanvas2-dev (= 
2.6.0-1), libjpeg, orbit2-dev (= 2.10.0-1), gconf2-dev (= 2.6.0-1), 
gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1), libxml2 (= 
2.6.7-1), libbonobo2-dev (= 2.6.0-1), libglade2 (= 2.3.6-1), libgnome2-dev 
(= 2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), 
libgnomeprint2.2-dev (= 2.6.0-1), libgnomeprintui2.2-dev (= 2.6.0-1), 
pkgconfig, intltool, popt, gettext-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1), esound (= 0.2.34-1), gnome-keyring-dev 
(= 0.4.3-1)
-Source: mirror:gnome:sources/%n/%v/%n-%v.tar.bz2
-Source-MD5: 1b8ba3384210b89a3628281e6aa5edaa
+Depends: 
+  atk1-shlibs (= 1.6.0-1),
+  audiofile-shlibs (= 0.2.5-1),
+  esound (= 0.2.34-1),
+  gconf2 (= 2.6.0-1),
+  gettext,
+  ghostscript (= 8.00-1) | system-ghostscript8,
+  glib2 (= 2.4.0-1), 
+  gnome-vfs2 (= 2.6.0-1) | gnome-vfs2-ssl (= 2.6.0-1),
+  gnome-keyring,
+  gnome-keyring-shlibs,
+  gtk+2 (= 2.4.0-1),
+  libart2-shlibs (= 2.3.16-1),
+  libbonobo2 (= 2.6.0-1),
+  libbonoboui2 (= 2.6.0-1),
+  libglade2-shlibs (= 2.3.6-1),
+  libgnome2 (= 2.6.0-1),
+  libgnomecanvas2 (= 2.6.0-1),
+  libgnomeprint2.2 (= 2.6.0-1),
+  libgnomeprintui2.2 (= 2.6.0-1),
+  libgnomeui2 (= 2.6.0-1),
+  libiconv,
+  libxml2-shlibs (= 2.6.7-1),
+  orbit2 (= 2.10.0-1),
+  pango1-xft2 (= 1.4.0-1),
+  popt-shlibs,
+  scrollkeeper (= 0.3.12-2)
+
+BuildDepends: 
+  atk1 (= 1.6.0-1),
+  audiofile,
+  esound (= 0.2.34-1),
+  gconf2-dev (= 2.6.0-1),
+  gettext-bin,
+  gettext-dev,
+  gettext-tools,
+  glib2-dev (= 2.4.0-1),
+  gnome-keyring-dev (= 0.4.3-1),
+  gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1),
+  gtk+2-dev (= 2.4.0-1),
+  intltool,
+  libart2 (= 2.3.16-1),
+  libbonobo2-dev (= 2.6.0-1),
+  libbonoboui2-dev (= 2.6.0-1),
+  libglade2 (= 2.3.6-1),
+  libgnome2-dev (= 2.6.0-1),
+  libgnomecanvas2-dev (= 2.6.0-1),
+  libgnomeprint2.2-dev (= 2.6.0-1),
+  libgnomeprintui2.2-dev (= 2.6.0-1),
+  libgnomeui2-dev (= 2.6.0-1),
+  libiconv-dev,
+  libjpeg,
+  libxml2 (= 2.6.7-1),
+  orbit2-dev (= 2.10.0-1),
+  pango1-xft2-dev (= 1.4.0-1),
+  pkgconfig,
+  popt
+
+Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
+Source-MD5: 9278cd3b9d06e3b1d364452f0e512fa9
 PatchScript: 
   perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/omf.make help/*/Makefile.in
   perl -pi.bak -e 's|\(uint\)|\(guint\)|g' xpdf/gpdf-thumbnails-view.cc
 
-SetCPPFLAGS: -no-cpp-precomp
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
 ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
 InstallScript: make install DESTDIR=%d



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gpdf.info,1.14,1.15

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12230

Modified Files:
gpdf.info 
Log Message:
New version.

Index: gpdf.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gpdf.info,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- gpdf.info   8 Jul 2005 02:21:30 -   1.14
+++ gpdf.info   15 Sep 2005 16:19:27 -  1.15
@@ -1,13 +1,71 @@
 Package: gpdf
-Version: 0.132
-Revision: 8
+Version: 2.10.0
+Revision: 1
 GCC: 3.3
-Depends: atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound (= 
0.2.34-1), gconf2 (= 2.6.0-1), gettext, ghostscript (= 8.00-1) | 
system-ghostscript8, glib2 (= 2.4.0-1), gnome-vfs2 (= 2.6.0-1) | 
gnome-vfs2-ssl (= 2.6.0-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 2.3.16-1), 
libbonobo2 (= 2.6.0-1), libbonoboui2 (= 2.6.0-1), libglade2-shlibs (= 
2.3.6-1), libgnome2 (= 2.6.0-1), libgnomecanvas2 (= 2.6.0-1), 
libgnomeprint2.2 (= 2.6.0-1), libgnomeprintui2.2 (= 2.6.0-1), libgnomeui2 (= 
2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), 
pango1-xft2 (= 1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2)
-BuildDepends: audiofile, glib2-dev (= 2.4.0-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libgnomecanvas2-dev (= 
2.6.0-1), libjpeg, orbit2-dev (= 2.10.0-1), gconf2-dev (= 2.6.0-1), 
gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1), libxml2 (= 
2.6.7-1), libbonobo2-dev (= 2.6.0-1), libglade2 (= 2.3.6-1), libgnome2-dev 
(= 2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), 
libgnomeprint2.2-dev (= 2.6.0-1), libgnomeprintui2.2-dev (= 2.6.0-1), 
pkgconfig, intltool, popt, gettext-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1), esound (= 0.2.34-1), gnome-keyring-dev 
(= 0.4.3-1)
-Source: mirror:gnome:sources/%n/%v/%n-%v.tar.bz2
-Source-MD5: 1b8ba3384210b89a3628281e6aa5edaa
-PatchScript: perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/omf.make help/*/Makefile.in
-SetCPPFLAGS: -no-cpp-precomp
+Depends: 
+  atk1-shlibs (= 1.6.0-1),
+  audiofile-shlibs (= 0.2.5-1),
+  esound (= 0.2.34-1),
+  gconf2 (= 2.6.0-1),
+  gettext,
+  ghostscript (= 8.00-1) | system-ghostscript8,
+  glib2 (= 2.4.0-1), 
+  gnome-vfs2 (= 2.6.0-1) | gnome-vfs2-ssl (= 2.6.0-1),
+  gnome-keyring,
+  gnome-keyring-shlibs,
+  gtk+2 (= 2.4.0-1),
+  libart2-shlibs (= 2.3.16-1),
+  libbonobo2 (= 2.6.0-1),
+  libbonoboui2 (= 2.6.0-1),
+  libglade2-shlibs (= 2.3.6-1),
+  libgnome2 (= 2.6.0-1),
+  libgnomecanvas2 (= 2.6.0-1),
+  libgnomeprint2.2 (= 2.6.0-1),
+  libgnomeprintui2.2 (= 2.6.0-1),
+  libgnomeui2 (= 2.6.0-1),
+  libiconv,
+  libxml2-shlibs (= 2.6.7-1),
+  orbit2 (= 2.10.0-1),
+  pango1-xft2 (= 1.4.0-1),
+  popt-shlibs,
+  scrollkeeper (= 0.3.12-2)
+
+BuildDepends: 
+  atk1 (= 1.6.0-1),
+  audiofile,
+  esound (= 0.2.34-1),
+  gconf2-dev (= 2.6.0-1),
+  gettext-bin,
+  gettext-dev,
+  gettext-tools,
+  glib2-dev (= 2.4.0-1),
+  gnome-keyring-dev (= 0.4.3-1),
+  gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1),
+  gtk+2-dev (= 2.4.0-1),
+  intltool,
+  libart2 (= 2.3.16-1),
+  libbonobo2-dev (= 2.6.0-1),
+  libbonoboui2-dev (= 2.6.0-1),
+  libglade2 (= 2.3.6-1),
+  libgnome2-dev (= 2.6.0-1),
+  libgnomecanvas2-dev (= 2.6.0-1),
+  libgnomeprint2.2-dev (= 2.6.0-1),
+  libgnomeprintui2.2-dev (= 2.6.0-1),
+  libgnomeui2-dev (= 2.6.0-1),
+  libiconv-dev,
+  libjpeg,
+  libxml2 (= 2.6.7-1),
+  orbit2-dev (= 2.10.0-1),
+  pango1-xft2-dev (= 1.4.0-1),
+  pkgconfig,
+  popt
+
+Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
+Source-MD5: 9278cd3b9d06e3b1d364452f0e512fa9
+PatchScript: 
+  perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/omf.make help/*/Makefile.in
+  perl -pi.bak -e 's|\(uint\)|\(guint\)|g' xpdf/gpdf-thumbnails-view.cc
+
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
 ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
 InstallScript: make install DESTDIR=%d



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/bmaret gpdf.info,1.2,NONE

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12867

Removed Files:
gpdf.info 
Log Message:
Now in unstable.

--- gpdf.info DELETED ---



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/devel cvs.patch,NONE,1.1 cvs.info,1.9,1.10

2005-09-15 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1060/unstable/main/finkinfo/devel

Modified Files:
cvs.info 
Added Files:
cvs.patch 
Log Message:
new links to stable for 10.3

new cvs and xcircuit revisions to unstable


Index: cvs.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel/cvs.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cvs.info1 Sep 2005 15:52:09 -   1.9
+++ cvs.info15 Sep 2005 17:51:26 -  1.10
@@ -1,11 +1,12 @@
 Package: cvs
-Version: 1.12.11
+Version: 1.12.12
 Revision: 2
 Maintainer: Alexander Hansen [EMAIL PROTECTED]
 #
 Source: mirror:gnu:non-gnu/%n/%n-%v.tar.bz2 
-Source-MD5: f35e7da174b306d07f335d287c2af939
+Source-MD5: e930ce9a6e75c06555cadb13796d04c4
 ConfigureParams: --mandir=%p/share/man --infodir=%p/share/info 
--with-gssapi=/usr --with-krb4=/usr --enable-case-sensitivity
+Patch: %n.patch
 InstallScript: 
  make install DESTDIR=%d
 
@@ -33,7 +34,7 @@
  Enabling this on a case insensitive system should
   have little effect on the server or client
   operation:  from the help text in the configure script.
- Use system's zlib (Tiger only).
+ Patch to remove a bad mmap issue on Darwin (thanks, pogma!)
 Prior versions by Sylvain Cuaz [EMAIL PROTECTED]
 
 Homepage: http://www.nongnu.org/cvs/

--- NEW FILE: cvs.patch ---
--- cvs-1.12.12/configure   2005-04-18 13:20:26.0 -0400
+++ cvs-1.12.12.patched/configure   2005-09-09 10:42:13.0 -0400
@@ -12710,7 +12710,6 @@
 if test $ac_cv_func_mmap_fixed_mapped = yes; then
 
 cat confdefs.h \_ACEOF
-#define HAVE_MMAP 1
 _ACEOF
 
 fi



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/web links.info,NONE,1.1

2005-09-15 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/web
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1060/stable/main/finkinfo/web

Added Files:
links.info 
Log Message:
new links to stable for 10.3

new cvs and xcircuit revisions to unstable


--- NEW FILE: links.info ---
Package: links
Version: 0.99
Revision: 2
BuildDepends: system-openssl-dev
BuildConflicts: openssl-dev, openssl097-dev
Source: mirror:custom:%n-%v.tar.gz
CustomMirror: 
  Primary: http://artax.karlin.mff.cuni.cz/~mikulas/links/download/

Source-MD5: c487673abcd6ffe568ab04e6003abdc8
Conflicts: 
Replaces: links-ssl
ConfigureParams: --mandir='${prefix}/share/man' --with-ssl 
--with-ssl-dir=%p/lib/system-openssl
DocFiles: AUTHORS BUGS COPYING ChangeLog NEWS README SITES TODO
Description: Lynx-like text WWW browser with tables
DescPort: Updated to new version, uses system-openssl now
License: GPL
Maintainer: Chris Turkel [EMAIL PROTECTED]
Homepage: http://artax.karlin.mff.cuni.cz/~mikulas/links/


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/sci xcircuit.info,1.20,1.21

2005-09-15 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1060/unstable/main/finkinfo/sci

Modified Files:
xcircuit.info 
Log Message:
new links to stable for 10.3

new cvs and xcircuit revisions to unstable


Index: xcircuit.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/sci/xcircuit.info,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- xcircuit.info   16 Aug 2005 01:11:35 -  1.20
+++ xcircuit.info   15 Sep 2005 17:51:27 -  1.21
@@ -1,10 +1,10 @@
 Package: xcircuit
-Version: 3.3.31
+Version: 3.3.33
 Revision: 1
 Depends: x11, ghostscript, tcltk
 BuildDepends: m4, tcltk-dev, x11-dev
 Source: http://xcircuit.ece.jhu.edu/archive/%n-%v.tgz
-Source-MD5: e65e01eacd2669ba4b4eaf2fdf98c7c3
+Source-MD5: 6a729614533f39c6657c54dad726821d
 ConfigureParams: --with-gnu-ld --mandir=%p/share/man
 SetCFLAGS: -I/usr/X11R6/include -fno-common
 # Patch: %n.patch



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/bmaret/finkinfo - New directory

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2692/finkinfo

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




---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/bmaret gossip.info,1.1,NONE loudmouth.info,1.1,NONE poppler.info,1.1,NONE xboard.info,1.1,NONE xboard.patch,1.1,NONE

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5306

Removed Files:
gossip.info loudmouth.info poppler.info xboard.info 
xboard.patch 
Log Message:
Moved to bmaret/finkinfo

--- gossip.info DELETED ---

--- poppler.info DELETED ---

--- xboard.patch DELETED ---

--- xboard.info DELETED ---

--- loudmouth.info DELETED ---



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/bmaret/finkinfo gossip.info,NONE,1.1 loudmouth.info,NONE,1.1 poppler.info,NONE,1.1 xboard.info,NONE,1.1 xboard.patch,NONE,1.1

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5306/finkinfo

Added Files:
gossip.info loudmouth.info poppler.info xboard.info 
xboard.patch 
Log Message:
Moved to bmaret/finkinfo

--- NEW FILE: gossip.info ---
Package: gossip
Version: 0.9
Revision: 1
Description: Instant messaging client for GNOME
License: GPL
Maintainer: Sebastien Maret [EMAIL PROTECTED]
Depends: 
   libglade2-shlibs, loudmouth-shlibs (= 0.17), libgnomeui2-shlibs,
   gnome-keyring-shlibs, libjpeg-shlibs, libgnomeui2-shlibs, x11-shlibs,
   libgnomecanvas2-shlibs, libgnome2-shlibs, esound-shlibs,
   audiofile-shlibs, libart2-shlibs, pango1-shlibs, 
   gtk+2-shlibs (= 2.4.0), atk1-shlibs, gnome-vfs2-shlibs, 
   gconf2-shlibs, libbonobo2-shlibs, orbit2-shlibs, popt-shlibs, 
   glib2-shlibs (= 2.4.0), gettext, libxslt-shlibs (= 1.0.0), 
   libxml2-shlibs (= 2.4.7), libiconv

BuildDepends: 
   libglade2, loudmouth (= 0.17), libgnomeui2, libgnomeui2-dev,
   gnome-keyring, gnome-keyring-dev, libjpeg, libjpeg-bin,
   libbonoboui2, libbonoboui2-dev, x11, x11-dev, libgnomecanvas2,
   libgnomecanvas2-dev, libgnome2, libgnome2-dev, esound, esound-bin,
   esound-common, audiofile, audiofile-bin, libart2, pango1, pango1-dev,
   gtk+2 (= 2.4.0), gtk+2-dev (= 2.4.0), atk1, gnome-vfs2,
   gnome-vfs2-dev, gconf2, gconf2-dev, libbonobo2, libbonobo2-dev,
   orbit2, orbit2-dev, popt, glib2 (= 2.4.0), glib2-dev (= 2.4.0),
   gettext-dev, libxslt (= 1.0.0), libxslt-bin (= 1.0.0), 
   libxml2 (= 2.4.7), libxml2-bin (= 2.4.7), libiconv-bin, 
   libiconv-dev
 
Source: http://ftp.gnome.org/pub/GNOME/sources/gossip/%v/gossip-%v.tar.bz2
Source-MD5: 8bbe3dac8d0da7e0b936971a01545f14
DocFiles: README COPYING
Homepage: http://developer.imendio.com/wiki/Gossip 
DescDetail: 
Gossip is an instant messaging client for GNOME. Layered on top of the
open protocol Jabber is a clean and easy-to-use interface, providing
users of the GNOME Desktop a friendly way to keep in touch with their
friends.


--- NEW FILE: poppler.info ---
Package: poppler
Version: 0.4.2
Revision: 1
Description: PDF rendering library
License: GPL
Maintainer: Sebastien Maret [EMAIL PROTECTED]
Depends: 
  %n-shlibs (= %v-%r), gtk+2-shlibs, glib2-shlibs, libgettext3-shlibs 

BuildDepends: gtk+2-dev, x11-dev, libgettext3-dev, libiconv-dev
BuildDependsOnly: True
Source: http://poppler.freedesktop.org/%n-%v.tar.gz
Source-MD5: beb1eea135a3c5b679a7a22d01a500c0
GCC: 3.3
DocFiles: README README-XPDF COPYING
Shlibs: 
  %p/lib/poppler.0.dylib 1.0.0 poppler (= 0.4.1-1)
  %p/lib/poppler-glib.0.dylib 1.0.0 poppler (= 0.4.1-1)

SplitOff: 
  Package: %n-shlibs
  Files: 
lib/libpoppler.0.0.0.dylib lib/libpoppler.0.dylib
lib/libpoppler-glib.0.0.0.dylib lib/libpoppler-glib.0.dylib 
  
  DocFiles: COPYING

Homepage: http://poppler.freedesktop.org/
DescDetail: 
Poppler is a PDF rendering library based on the xpdf-3.0 code base.



--- NEW FILE: xboard.patch ---
diff -ruN -x '*~' xboard-4.2.7/Makefile.in xboard-4.2.7.patched/Makefile.in
--- xboard-4.2.7/Makefile.in2003-11-28 16:12:57.0 -0500
+++ xboard-4.2.7.patched/Makefile.in2005-08-02 16:01:14.0 -0400
@@ -70,8 +70,6 @@
$(INSTALL_DATA) $(srcdir)/xboard.man $(man6dir)/xboard$(man6ext)
$(INSTALL_DATA) $(srcdir)/zic2xpm.man $(man6dir)/zic2xpm$(man6ext)
$(INSTALL_DATA) xboard.info $(infodir)/xboard.info
-   -PATH=$$PATH:/sbin:/usr/sbin install-info \
-   $(infodir)/xboard.info $(infodir)/dir
 
 installdirs: mkinstalldirs
$(srcdir)/mkinstalldirs $(bindir) $(mandir) $(man6dir) $(infodir)

--- NEW FILE: xboard.info ---
Package: xboard
Version: 4.2.7
Revision: 1
Maintainer: Matthias Neeracher [EMAIL PROTECTED]
Depends: x11, chess
BuildDepends: texinfo, x11-dev
Source: gnu
Source-MD5: b70ad8ff7569975302c5fb402d5eea32
Patch: %n.patch
ConfigureParams: --mandir=%i/share/man
DocFiles: COPYING COPYRIGHT FAQ FAQ.html READ_ME ToDo
InfoDocs: xboard.info
Description: X11 based chess playing interface
DescDetail: 
XBoard is a graphical user interfaces for chess. It displays a
chessboard on the screen, accepts moves made with the mouse, and loads
and saves games in Portable Game Notation (PGN). It serves as
front-ends for many different chess services, including chess engines
(such as GNU Chess, Crafty, or many others), chess servers on the
Internet, correspondence chess played by electronic mail, and PNG
viewer.

DescPort:  
Straightforward port, except that xboard misguidedly calls install-info.

License: GPL
Homepage: http://www.tim-mann.org/xboard.html

--- NEW FILE: loudmouth.info ---
Package: loudmouth
Version: 1.0
Revision: 1
Description: C library for the Jabber protocol
License: GPL
Maintainer: Sebastien Maret [EMAIL PROTECTED]
Depends: 
   %N-shlibs (= %v-%r), glib2-shlibs, libiconv, gettext

BuildDepends: 
   glib2-dev, gtk-doc, libiconv-bin, libiconv-dev, gettext-dev

BuildDependsOnly: True
Source: 

dists/10.4-transitional/unstable/main/finkinfo/gnome gpdf.info,1.6,1.7

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

Modified Files:
gpdf.info 
Log Message:
Dependency and gconf2 usage fixes.


Index: gpdf.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gpdf.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- gpdf.info   15 Sep 2005 16:17:16 -  1.6
+++ gpdf.info   15 Sep 2005 18:31:38 -  1.7
@@ -1,19 +1,19 @@
 Package: gpdf
 Version: 2.10.0
-Revision: 1
+Revision: 2
 GCC: 3.3
 Depends: 
   atk1-shlibs (= 1.6.0-1),
   audiofile-shlibs (= 0.2.5-1),
-  esound (= 0.2.34-1),
+  esound-shlibs (= 0.2.34-1),
   gconf2 (= 2.6.0-1),
-  gettext,
+  libgettext3-shlibs,
   ghostscript (= 8.00-1) | system-ghostscript8,
   glib2 (= 2.4.0-1), 
-  gnome-vfs2 (= 2.6.0-1) | gnome-vfs2-ssl (= 2.6.0-1),
+  gnome-vfs2-ssl (= 2.6.0-1) | gnome-vfs2 (= 2.6.0-1),
   gnome-keyring,
   gnome-keyring-shlibs,
-  gtk+2 (= 2.4.0-1),
+  gtk+2 (= 2.5.4-1),
   libart2-shlibs (= 2.3.16-1),
   libbonobo2 (= 2.6.0-1),
   libbonoboui2 (= 2.6.0-1),
@@ -28,7 +28,9 @@
   orbit2 (= 2.10.0-1),
   pango1-xft2 (= 1.4.0-1),
   popt-shlibs,
-  scrollkeeper (= 0.3.12-2)
+  scrollkeeper (= 0.3.12-2),
+  x11,
+  libpaper1-shlibs
 
 BuildDepends: 
   atk1 (= 1.6.0-1),
@@ -36,12 +38,12 @@
   esound (= 0.2.34-1),
   gconf2-dev (= 2.6.0-1),
   gettext-bin,
-  gettext-dev,
+  libgettext3-dev,
   gettext-tools,
   glib2-dev (= 2.4.0-1),
   gnome-keyring-dev (= 0.4.3-1),
-  gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1),
-  gtk+2-dev (= 2.4.0-1),
+  gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1),
+  gtk+2-dev (= 2.5.4-1),
   intltool,
   libart2 (= 2.3.16-1),
   libbonobo2-dev (= 2.6.0-1),
@@ -58,7 +60,10 @@
   orbit2-dev (= 2.10.0-1),
   pango1-xft2-dev (= 1.4.0-1),
   pkgconfig,
-  popt
+  popt,
+  x11-dev,
+  libpaper1-dev,
+  tetex-base
 
 Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
 Source-MD5: 9278cd3b9d06e3b1d364452f0e512fa9
@@ -67,11 +72,15 @@
   perl -pi.bak -e 's|\(uint\)|\(guint\)|g' xpdf/gpdf-thumbnails-view.cc
 
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
-ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
-InstallScript: make install DESTDIR=%d
+ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking
+InstallScript: 
+  GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=%d
+
 PostInstScript: 
   if [ configure = $1 ]; then
 scrollkeeper-update -q
+export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+gconftool-2 --makefile-install-rule %p/etc/gconf/schemas/ggv.schemas 
/dev/null
   fi
 
 PostRmScript:   
@@ -79,7 +88,8 @@
 scrollkeeper-update -q
   fi
 
-DocFiles: AUTHORS COPYING ChangeLog README 
+ConfFiles: %p/etc/gconf/schemas/gpdf.schemas
+DocFiles: AUTHORS CHANGES COPYING ChangeLog po/ChangeLog:ChangeLog.po NEWS 
README README.GPdf
 Description: GNOME pdf viewer
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gpdf.info,1.15,1.16

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

Modified Files:
gpdf.info 
Log Message:
Dependency and gconf2 usage fixes.


Index: gpdf.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gpdf.info,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- gpdf.info   15 Sep 2005 16:19:27 -  1.15
+++ gpdf.info   15 Sep 2005 18:31:36 -  1.16
@@ -1,19 +1,19 @@
 Package: gpdf
 Version: 2.10.0
-Revision: 1
+Revision: 2
 GCC: 3.3
 Depends: 
   atk1-shlibs (= 1.6.0-1),
   audiofile-shlibs (= 0.2.5-1),
-  esound (= 0.2.34-1),
+  esound-shlibs (= 0.2.34-1),
   gconf2 (= 2.6.0-1),
-  gettext,
+  libgettext3-shlibs,
   ghostscript (= 8.00-1) | system-ghostscript8,
   glib2 (= 2.4.0-1), 
-  gnome-vfs2 (= 2.6.0-1) | gnome-vfs2-ssl (= 2.6.0-1),
+  gnome-vfs2-ssl (= 2.6.0-1) | gnome-vfs2 (= 2.6.0-1),
   gnome-keyring,
   gnome-keyring-shlibs,
-  gtk+2 (= 2.4.0-1),
+  gtk+2 (= 2.5.4-1),
   libart2-shlibs (= 2.3.16-1),
   libbonobo2 (= 2.6.0-1),
   libbonoboui2 (= 2.6.0-1),
@@ -28,7 +28,9 @@
   orbit2 (= 2.10.0-1),
   pango1-xft2 (= 1.4.0-1),
   popt-shlibs,
-  scrollkeeper (= 0.3.12-2)
+  scrollkeeper (= 0.3.12-2),
+  x11,
+  libpaper1-shlibs
 
 BuildDepends: 
   atk1 (= 1.6.0-1),
@@ -36,12 +38,12 @@
   esound (= 0.2.34-1),
   gconf2-dev (= 2.6.0-1),
   gettext-bin,
-  gettext-dev,
+  libgettext3-dev,
   gettext-tools,
   glib2-dev (= 2.4.0-1),
   gnome-keyring-dev (= 0.4.3-1),
-  gnome-vfs2-dev (= 2.6.0-1) | gnome-vfs2-ssl-dev (= 2.6.0-1),
-  gtk+2-dev (= 2.4.0-1),
+  gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1),
+  gtk+2-dev (= 2.5.4-1),
   intltool,
   libart2 (= 2.3.16-1),
   libbonobo2-dev (= 2.6.0-1),
@@ -58,7 +60,10 @@
   orbit2-dev (= 2.10.0-1),
   pango1-xft2-dev (= 1.4.0-1),
   pkgconfig,
-  popt
+  popt,
+  x11-dev,
+  libpaper1-dev,
+  tetex-base
 
 Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
 Source-MD5: 9278cd3b9d06e3b1d364452f0e512fa9
@@ -67,11 +72,15 @@
   perl -pi.bak -e 's|\(uint\)|\(guint\)|g' xpdf/gpdf-thumbnails-view.cc
 
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
-ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
-InstallScript: make install DESTDIR=%d
+ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking
+InstallScript: 
+  GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=%d
+
 PostInstScript: 
   if [ configure = $1 ]; then
 scrollkeeper-update -q
+export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
+gconftool-2 --makefile-install-rule %p/etc/gconf/schemas/ggv.schemas 
/dev/null
   fi
 
 PostRmScript:   
@@ -79,7 +88,8 @@
 scrollkeeper-update -q
   fi
 
-DocFiles: AUTHORS COPYING ChangeLog README 
+ConfFiles: %p/etc/gconf/schemas/gpdf.schemas
+DocFiles: AUTHORS CHANGES COPYING ChangeLog po/ChangeLog:ChangeLog.po NEWS 
README README.GPdf
 Description: GNOME pdf viewer
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/bmaret/finkinfo loudmouth.info,1.1,1.2

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14872

Modified Files:
loudmouth.info 
Log Message:
New version
Added missing dependency
No SSL support yet


Index: loudmouth.info
===
RCS file: /cvsroot/fink/experimental/bmaret/finkinfo/loudmouth.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- loudmouth.info  15 Sep 2005 18:08:36 -  1.1
+++ loudmouth.info  15 Sep 2005 18:44:19 -  1.2
@@ -8,15 +8,17 @@
%N-shlibs (= %v-%r), glib2-shlibs, libiconv, gettext
 
 BuildDepends: 
-   glib2-dev, gtk-doc, libiconv-bin, libiconv-dev, gettext-dev
+   glib2-dev, gtk-doc, libiconv-bin, libiconv-dev, gettext-dev, pkgconfig
 
 BuildDependsOnly: True
 Source: http://ftp.imendio.com/pub/imendio/loudmouth/src/%n-%v.tar.gz
-Source-MD5: b1f7cf8e20e21ec4ee47d07c9c514e92
+Source-MD5: ecf8a1c0bd69149a918ca0b03fde4e06
+ConfigureParams: --mandir=%p/share/man --with-ssl=no
+GCC: 3.3
 SplitOff: 
Package: %N-shlibs
Files: lib/libloudmouth-1.0.0.0.dylib lib/libloudmouth-1.0.dylib
-   Shlibs: %p/lib/loudmouth-1.0.dylib 0.0.0 loudmouth (= 0.90-1)
+   Shlibs: %p/lib/loudmouth-1.0.dylib 1.0.0 loudmouth (= 1.0-1)
DocFiles: COPYING
 
 DocFiles: README COPYING
@@ -26,3 +28,6 @@
 with the Jabber protocol. It's designed to be easy to get started with
 and yet extensible to let you do anything the Jabber protocol allows.
 
+DescPackaging: 
+No SSL support yet. Would need to create a -ssl variant.
+



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/stable/main/finkinfo/graphics fontforge.patch,1.2,1.3 fontforge.info,1.11,1.12

2005-09-15 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.3/stable/main/finkinfo/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14873

Modified Files:
fontforge.info 
Added Files:
fontforge.patch 
Log Message:
Updated version to match 10.4 now that freetype219 is available.

Index: fontforge.info
===
RCS file: 
/cvsroot/fink/dists/10.3/stable/main/finkinfo/graphics/fontforge.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- fontforge.info  2 Jun 2005 02:29:35 -   1.11
+++ fontforge.info  15 Sep 2005 18:44:20 -  1.12
@@ -1,15 +1,15 @@
 Package: fontforge
-Version: 20050117
+Version: 20050809
 Revision: 1
 License: BSD
-Source: mirror:sourceforge:%n/%n_full-%v.tgz
-Source-MD5: eb1b17de78b8a211a60f08a3e2a7a548
+Source: mirror:sourceforge:%n/%n_full-%v.tar.bz2
+Source-MD5: c9517e9c49c2f6d9bc68f556fcc5fcd1
 SourceDirectory: %n-%v
 Source2: mirror:sourceforge:%n/%n_htdocs-%v.tgz
-Source2-MD5: 0c4c17ba0389654707322888577f4434
+Source2-MD5: 2051870401876cc1ea7c7a68309baf87
 Source2ExtractDir: %n-%v/%n_htdocs
-Depends: giflib-shlibs | libungif-shlibs, libpng3-shlibs, libtiff-shlibs, 
libjpeg-shlibs, libxml2-shlibs, libiconv, libuninameslist1-shlibs, x11
-BuildDepends: giflib, libpng3, libtiff, libjpeg, libxml2, libiconv-dev, 
libuninameslist1, x11-dev
+Depends: giflib-shlibs | libungif-shlibs, libpng3-shlibs, libtiff-shlibs, 
libjpeg-shlibs, libxml2-shlibs, libiconv, libuninameslist1-shlibs, x11, 
freetype219-shlibs
+BuildDepends: giflib, libpng3, libtiff, libjpeg, libxml2, libiconv-dev, 
libuninameslist1, x11-dev, freetype219
 Recommends: autotrace-bin | potrace
 Conflicts: pfaedit
 Replaces: pfaedit
@@ -27,13 +27,13 @@
 DescPort: Makefile ignores CPPFLAGS and LDFLAGS so we use CFLAGS instead.
 Homepage: http://fontforge.sourceforge.net/
 Maintainer: Daniel Johnson [EMAIL PROTECTED]
-PatchScript: perl -pi.bak -e 's,ungif,gif,g' configure
+PatchScript: sed 's|@PREFIX@|%p|g ' %a/%{ni}.patch | patch -p1
 NoSetCPPFLAGS: True
 NoSetLDFLAGS: True
 SetCFLAGS: -I%p/include/libxml2
-SetLIBRARY_PATH: /usr/X11R6/lib:%p/lib
+SetLIBRARY_PATH: %p/lib/freetype219/lib:/usr/X11R6/lib:%p/lib
 ConfigureParams: --mandir='${prefix}/share/man' --with-x --with-regular-link 
--enable-shared=no --enable-static=yes
-CompileScript: export CPATH=%p/include; ./configure %c; make 
STATIC_LIBS=-lgif -lpng -lz -ltiff -ljpeg -lfreetype -L%p/lib -lxml2 
-luninameslist
+CompileScript: export CPATH=%p/lib/freetype219/include:%p/include; export 
PATH=%p/lib/freetype219/bin:$PATH; ./configure %c; make STATIC_LIBS=-L%p/lib 
-L%p/lib/freetype219/lib -lgif -lpng -lz -ltiff -ljpeg -lxml2 -luninameslist 
-lfreetype
 InstallScript: 
   mkdir cidmap
   tar -xz -C cidmap -f %n_htdocs/cidmaps.tgz

--- NEW FILE: fontforge.patch ---
diff -ru fontforge-20050624.orig/configure fontforge-20050624/configure
--- fontforge-20050624.orig/configure   2005-06-13 13:31:59.0 -0400
+++ fontforge-20050624/configure2005-07-04 16:56:14.0 -0400
@@ -7521,9 +7521,9 @@
 
 
 
- CPPFLAGS=$CPPFLAGS -I/sw/include
- LDFLAGS=$LDFLAGS -L/sw/lib
- gww_rpath=-rpath /sw/lib
+# CPPFLAGS=$CPPFLAGS -I/sw/include
+# LDFLAGS=$LDFLAGS -L/sw/lib
+ gww_rpath=
  LIBS=/System/Library/Frameworks/CoreServices.framework/CoreServices $LIBS
  ;;
 powerpc-*-*linux*)
@@ -8087,7 +8087,7 @@
 echo $as_me:$LINENO: result: $ac_cv_file__usr_include_libxml2_libxml 5
 echo ${ECHO_T}$ac_cv_file__usr_include_libxml2_libxml 6
 if test $ac_cv_file__usr_include_libxml2_libxml = yes; then
-  CFLAGS=$CFLAGS -I/usr/include/libxml2/
+  true
 else
 
  echo $as_me:$LINENO: checking for /usr/local/include/libxml2/libxml 5
@@ -8108,7 +8108,7 @@
 echo $as_me:$LINENO: result: $ac_cv_file__usr_local_include_libxml2_libxml 
5
 echo ${ECHO_T}$ac_cv_file__usr_local_include_libxml2_libxml 6
 if test $ac_cv_file__usr_local_include_libxml2_libxml = yes; then
-  CFLAGS=$CFLAGS -I/usr/local/include -I/usr/local/include/libxml2/
+  true
 else
   cat confdefs.h \_ACEOF
 #define _NO_LIBXML 1
@@ -8120,13 +8120,13 @@
 
 
 
-echo $as_me:$LINENO: checking for DGifOpenFileName in -lungif 5
-echo $ECHO_N checking for DGifOpenFileName in -lungif... $ECHO_C 6
-if test ${ac_cv_lib_ungif_DGifOpenFileName+set} = set; then
+echo $as_me:$LINENO: checking for DGifOpenFileName in -lgif 5
+echo $ECHO_N checking for DGifOpenFileName in -lgif... $ECHO_C 6
+if test ${ac_cv_lib_gif_DGifOpenFileName+set} = set; then
   echo $ECHO_N (cached) $ECHO_C 6
 else
   ac_check_lib_save_LIBS=$LIBS
-LIBS=-lungif  $LIBS
+LIBS=-lgif  $LIBS
 cat conftest.$ac_ext _ACEOF
 /* confdefs.h.  */
 _ACEOF
@@ -8171,20 +8171,20 @@
   ac_status=$?
   echo $as_me:$LINENO: \$? = $ac_status 5
   (exit $ac_status); }; }; then
-  ac_cv_lib_ungif_DGifOpenFileName=yes
+  ac_cv_lib_gif_DGifOpenFileName=yes
 else
   echo $as_me: failed program was: 5
 sed 's/^/| /' conftest.$ac_ext 5
 
-ac_cv_lib_ungif_DGifOpenFileName=no

experimental/bmaret/finkinfo gossip.info,1.1,1.2

2005-09-15 Thread S�bastien Maret
Update of /cvsroot/fink/experimental/bmaret/finkinfo
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18659

Modified Files:
gossip.info 
Log Message:
New version


Index: gossip.info
===
RCS file: /cvsroot/fink/experimental/bmaret/finkinfo/gossip.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- gossip.info 15 Sep 2005 18:08:36 -  1.1
+++ gossip.info 15 Sep 2005 18:58:36 -  1.2
@@ -5,7 +5,7 @@
 License: GPL
 Maintainer: Sebastien Maret [EMAIL PROTECTED]
 Depends: 
-   libglade2-shlibs, loudmouth-shlibs (= 0.17), libgnomeui2-shlibs,
+   libglade2-shlibs, loudmouth-shlibs (= 1.0-1), libgnomeui2-shlibs,
gnome-keyring-shlibs, libjpeg-shlibs, libgnomeui2-shlibs, x11-shlibs,
libgnomecanvas2-shlibs, libgnome2-shlibs, esound-shlibs,
audiofile-shlibs, libart2-shlibs, pango1-shlibs, 
@@ -15,7 +15,7 @@
libxml2-shlibs (= 2.4.7), libiconv
 
 BuildDepends: 
-   libglade2, loudmouth (= 0.17), libgnomeui2, libgnomeui2-dev,
+   libglade2, loudmouth (= 1.0-1), libgnomeui2, libgnomeui2-dev,
gnome-keyring, gnome-keyring-dev, libjpeg, libjpeg-bin,
libbonoboui2, libbonoboui2-dev, x11, x11-dev, libgnomecanvas2,
libgnomecanvas2-dev, libgnome2, libgnome2-dev, esound, esound-bin,
@@ -28,7 +28,7 @@
libiconv-dev
  
 Source: http://ftp.gnome.org/pub/GNOME/sources/gossip/%v/gossip-%v.tar.bz2
-Source-MD5: 8bbe3dac8d0da7e0b936971a01545f14
+Source-MD5: af017e1652a96009d30ad2dd4ef9
 DocFiles: README COPYING
 Homepage: http://developer.imendio.com/wiki/Gossip 
 DescDetail: 



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/dmacks/finkinfo/gnome - New directory

2005-09-15 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21117/gnome

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




---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/dmacks/finkinfo/gnome-2.10 gnome-menus0.info,1.1,NONE gnome-menus0.patch,1.1,NONE gnome-python2-extras-py.info,1.1,NONE gnome-python2-extras-py.patch,1.1,NONE gnome-python2-py.info,1.2,NO

2005-09-15 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome-2.10
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21563/gnome-2.10

Removed Files:
gnome-menus0.info gnome-menus0.patch 
gnome-python2-extras-py.info gnome-python2-extras-py.patch 
gnome-python2-py.info gok.info libgnomecups.info 
pygtk2-py.info pygtk2-py.patch 
Log Message:
We ain't gnome-2.10 no more.


--- gnome-python2-py.info DELETED ---

--- gnome-python2-extras-py.patch DELETED ---

--- gok.info DELETED ---

--- pygtk2-py.patch DELETED ---

--- gnome-menus0.patch DELETED ---

--- libgnomecups.info DELETED ---

--- gnome-menus0.info DELETED ---

--- gnome-python2-extras-py.info DELETED ---

--- pygtk2-py.info DELETED ---



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/dmacks/finkinfo/gnome gnome-menus0.info,NONE,1.1 gnome-menus0.patch,NONE,1.1 gnome-python2-extras-py.info,NONE,1.1 gnome-python2-extras-py.patch,NONE,1.1 gnome-python2-py.info,NONE,1.1 go

2005-09-15 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21563/gnome

Added Files:
gnome-menus0.info gnome-menus0.patch 
gnome-python2-extras-py.info gnome-python2-extras-py.patch 
gnome-python2-py.info gok.info libgnomecups.info 
pygtk2-py.info pygtk2-py.patch 
Log Message:
We ain't gnome-2.10 no more.


--- NEW FILE: gnome-python2-py.info ---
Info2: 
Package: gnome-python2-py%type_pkg[python]
Version: 2.12.0
Revision: 1
Maintainer: Jeremy Higgs [EMAIL PROTECTED]
Source: mirror:gnome:sources/gnome-python/2.12/gnome-python-%v.tar.bz2
Source-MD5: 5a8f636a0cf8f179094287017f69bc39
Type: python (2.3 2.4)
Depends: 
  python%type_pkg[python],
  pyorbit2-py%type_pkg[python] (= 2.0.1-1),
  pygtk2-py%type_pkg[python] (=2.6.2-1),
  gnome-vfs2-ssl (= 2.9.3-1) | gnome-vfs2 (= 2.9.3-1),
  gconf2-shlibs (= 2.11.1-1),
  libbonobo2 (= 2.8.0-1),
  libbonoboui2 (= 2.8.0-1),
  libxml2-shlibs,
  orbit2-shlibs,
  popt-shlibs,
  glib2-shlibs (= 2.6.0-1),
  libgettext3-shlibs,
  libiconv,
  libart2-shlibs,
  atk1-shlibs,
  audiofile-shlibs,
  esound-shlibs,
  gtk+2-shlibs (= 2.6.0-1),
  libgnome2-shlibs (= 2.8.0-1),
  libgnomeui2-shlibs (= 2.8.0-1),
  libgnomecanvas2-shlibs (= 2.8.0-1),
  libjpeg-shlibs,
  pango1-xft2-shlibs,
  x11

BuildDepends: 
  pkgconfig,
  pyorbit2-py%type_pkg[python]-dev (= 2.0.1-1),
  pygtk2-py%type_pkg[python]-dev (=2.6.2-1),
  gnome-vfs2-ssl-dev (= 2.9.3-1) | gnome-vfs2-dev (= 2.9.3-1),
  gconf2-dev (= 2.11.1-1),
  libbonobo2-dev (= 2.8.0-1),
  libbonoboui2-dev (= 2.8.0-1),
  libxml2,
  orbit2-dev,
  popt,
  glib2-dev (= 2.6.0-1),
  libgettext3-dev,
  libiconv-dev,
  libart2,
  atk1,
  audiofile,
  esound,
  gtk+2-dev (= 2.6.0-1),
  libgnome2-dev (= 2.8.0-1),
  libgnomeui2-dev (= 2.8.0-1),
  libgnomecanvas2-dev (= 2.8.0-1),
  libjpeg,
  pango1-xft2-dev,
  x11-dev

Replaces %{Ni}23, %{Ni}24
Suggests: gnome-python2-extras-py%type_pkg[python]
PatchScript: 
  perl -pi -e 's/#include pygobject.h/#define NO_IMPORT_PYGOBJECT\n$/' 
gconf/gconf-types.c
  perl -pi -e 's/#define NO_IMPORT_PYGOBJECT/$\n#define NO_IMPORT_PYGNOMEVFS/' 
gnome/ui.override
  perl -pi -e 's/#define NO_IMPORT_PYGOBJECT/$\n#define NO_IMPORT_PYORBIT/' 
bonobo/pybonobo.c
  perl -pi -e 's/#include pygobject.h/#define NO_IMPORT_PYGOBJECT\n$/' 
gnomevfs/vfs-async-handle.c
  perl -pi -e 's|-lpython|-L%p/lib/python%type_raw[python]/config $|' 
gnomevfs/Makefile.in

SetCPPFLAGS: -no-cpp-precomp -fno-common
ConfigureParams: --disable-dependency-tracking
CompileScript: 
  PYTHON='%p/bin/python%type_raw[python]' ./configure %c
  make
# make check

InstallScript: 
  make install prefix=%i
# install -d -m 755 %i/share/doc/%n/examples
# install -m 644 examples/* %i/share/doc/%n/examples

DocFiles: AUTHORS COPYING ChangeLog* NEWS README
#
SplitOff: 
  Package: %N-dev
  Depends: %N (= %v-%r)
  Conflicts: %{Ni}23-dev, %{Ni}24-dev
  Replaces: %{Ni}23-dev, %{Ni}24-dev, %{Ni}23 ( 2.12.0-1), %{Ni}24 ( 
2.12.0-1)
  BuildDependsOnly: true
  Files: 
include
lib/gnome-vfs-2.0/modules/*.la
lib/python%type_raw[python]/site-packages/gtk-2.0/*.la 
lib/python%type_raw[python]/site-packages/gtk-2.0/gnome/*.la 
lib/python%type_raw[python]/site-packages/gtk-2.0/bonobo/*.la 
lib/pkgconfig
share/pygtk
  
  DocFiles: AUTHORS COPYING ChangeLog* NEWS README

#
SplitOff2: 
  Package: %N-vfsmodule
  Depends: %N (= %v-%r)
  Conflicts: %{Ni}23-vfsmodule, %{Ni}24-vfsmodule
  Replaces: %{Ni}23-vfsmodule, %{Ni}24-vfsmodule
  Files: lib/gnome-vfs-2.0
  DocFiles: AUTHORS COPYING ChangeLog* NEWS README

#
Description: Python bindings for GNOME2
DescDetail: 
gnome-python2 provides bindings for the GNOME2 libraries to use the
Python programming language.

DescPackaging: 
  Some modules moved to from %n to gnome-python-extras-pyXX starting
  in %n 2.9.1; we Depends on -extra don't break packages that depend
  on us.

  Moved development files into %N-dev starting in 2.12.0-1.

  'make check' requires active x11 display.

DescPort: 
  Add some #NO_IMPORT_PY* to prevent non-extern symbol collisions.
  Patch to find path to -lpythonX.X
  See: http://bugzilla.gnome.org/show_bug.cgi?id=315382

Homepage: http://www.daa.com.au/~james/pygtk/
License: LGPL


--- NEW FILE: gnome-python2-extras-py.patch ---
diff -Nurd -x'*~' gnome-python-extras-2.12.0.orig/configure 
gnome-python-extras-2.12.0/configure
--- gnome-python-extras-2.12.0.orig/configure   2005-09-10 13:23:25.0 
-0400
+++ gnome-python-extras-2.12.0/configure2005-09-15 01:39:45.0 
-0400
@@ -21256,57 +21256,6 @@
 fi
 
 build_gtksourceview=false
-
-pkg_failed=no
-echo $as_me:$LINENO: checking for GTKSOURCEVIEW 5
-echo $ECHO_N checking for GTKSOURCEVIEW... $ECHO_C 6
-
-if test -n $PKG_CONFIG; then
-if test -n $PKG_CONFIG  \
-{ (echo $as_me:$LINENO: \$PKG_CONFIG --exists --print-errors 
\gtksourceview-1.0 = 1.1.90\) 5
-  ($PKG_CONFIG --exists --print-errors gtksourceview-1.0 = 1.1.90) 25
-  

dists/10.3/unstable/main/finkinfo/libs libuninameslist1.info,1.3,1.4 libuninameslist1.patch,1.1,1.2

2005-09-15 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26149

Modified Files:
libuninameslist1.info libuninameslist1.patch 
Log Message:
New upstream version (20050712).

Index: libuninameslist1.patch
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/libuninameslist1.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libuninameslist1.patch  27 Feb 2004 08:29:39 -  1.1
+++ libuninameslist1.patch  15 Sep 2005 19:25:18 -  1.2
@@ -1,12 +1,17 @@
-diff -ru libuninameslist/Makefile.in libuninameslist.patched/Makefile.in
 libuninameslist/Makefile.inFri Jul 11 00:36:26 2003
-+++ libuninameslist.patched/Makefile.inSat Feb 21 13:21:00 2004
-@@ -21,7 +21,7 @@
- CFLAGS = @CFLAGS@ $(WFLAGS)
+diff -ru libuninameslist.orig/Makefile.in libuninameslist/Makefile.in
+--- libuninameslist.orig/Makefile.in   2004-07-07 13:28:59.0 -0400
 libuninameslist/Makefile.in2005-09-15 15:16:41.0 -0400
+@@ -23,11 +23,11 @@
+ both: libuninameslist.la libuninameslist-fr.la
  
  libuninameslist.la: nameslist.lo
 -  $(LIBTOOL) $(CC) $(CFLAGS) -o libuninameslist.la nameslist.lo \
 +  $(LIBTOOL) $(CC) $(CFLAGS) -no-undefined -o libuninameslist.la 
nameslist.lo \
-rpath $(libdir) -version-info 
$(UN_VERSION):$(UN_REVISION):$(UN_AGE)
  
+ libuninameslist-fr.la: nameslist-fr.lo
+-  $(LIBTOOL) $(CC) $(CFLAGS) -o libuninameslist-fr.la nameslist-fr.lo \
++  $(LIBTOOL) $(CC) $(CFLAGS) -no-undefined -o libuninameslist-fr.la 
nameslist-fr.lo \
+   -rpath $(libdir) -version-info 
$(UN_VERSION):$(UN_REVISION):$(UN_AGE)
+ 
  

Index: libuninameslist1.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/libs/libuninameslist1.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- libuninameslist1.info   26 Jun 2005 20:33:10 -  1.3
+++ libuninameslist1.info   15 Sep 2005 19:25:18 -  1.4
@@ -1,9 +1,9 @@
 Package: libuninameslist1
-Version: 040701
+Version: 20050712
 Revision: 1
 License: BSD
 Source: mirror:sourceforge:libuninameslist/libuninameslist_src-%v.tgz
-Source-MD5: fb565640e98bfbc5e633caae4a4b95c3
+Source-MD5: 154549efe3a45ed4fa8d4e63ff6dbabf
 SourceDirectory: libuninameslist
 Depends: %n-shlibs (=%v-%r)
 BuildDependsOnly: True
@@ -24,7 +24,10 @@
 Maintainer: Daniel Johnson [EMAIL PROTECTED]
 SplitOff: 
   Package: %N-shlibs
-  Files: lib/libuninameslist.0.0.1.dylib lib/libuninameslist.0.dylib
-  Shlibs: %p/lib/libuninameslist.0.dylib 1.0.0 %n (= 030713-1)
+  Files: lib/libuninameslist.0.0.1.dylib lib/libuninameslist-fr.0.0.1.dylib 
lib/libuninameslist.0.dylib lib/libuninameslist-fr.0.dylib
+  Shlibs: 
+%p/lib/libuninameslist.0.dylib 1.0.0 %n (= 030713-1)
+%p/lib/libuninameslist-fr.0.dylib 1.0.0 %n (= 20050712-1)
+  
   DocFiles: COPYING LICENSE
 



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/libs libuninameslist1.info,1.2,1.3 libuninameslist1.patch,1.1,1.2

2005-09-15 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26340

Modified Files:
libuninameslist1.info libuninameslist1.patch 
Log Message:
New upstream version (20050712).

Index: libuninameslist1.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/libuninameslist1.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libuninameslist1.patch  27 Apr 2005 03:26:03 -  1.1
+++ libuninameslist1.patch  15 Sep 2005 19:25:56 -  1.2
@@ -1,12 +1,17 @@
-diff -ru libuninameslist/Makefile.in libuninameslist.patched/Makefile.in
 libuninameslist/Makefile.inFri Jul 11 00:36:26 2003
-+++ libuninameslist.patched/Makefile.inSat Feb 21 13:21:00 2004
-@@ -21,7 +21,7 @@
- CFLAGS = @CFLAGS@ $(WFLAGS)
+diff -ru libuninameslist.orig/Makefile.in libuninameslist/Makefile.in
+--- libuninameslist.orig/Makefile.in   2004-07-07 13:28:59.0 -0400
 libuninameslist/Makefile.in2005-09-15 15:16:41.0 -0400
+@@ -23,11 +23,11 @@
+ both: libuninameslist.la libuninameslist-fr.la
  
  libuninameslist.la: nameslist.lo
 -  $(LIBTOOL) $(CC) $(CFLAGS) -o libuninameslist.la nameslist.lo \
 +  $(LIBTOOL) $(CC) $(CFLAGS) -no-undefined -o libuninameslist.la 
nameslist.lo \
-rpath $(libdir) -version-info 
$(UN_VERSION):$(UN_REVISION):$(UN_AGE)
  
+ libuninameslist-fr.la: nameslist-fr.lo
+-  $(LIBTOOL) $(CC) $(CFLAGS) -o libuninameslist-fr.la nameslist-fr.lo \
++  $(LIBTOOL) $(CC) $(CFLAGS) -no-undefined -o libuninameslist-fr.la 
nameslist-fr.lo \
+   -rpath $(libdir) -version-info 
$(UN_VERSION):$(UN_REVISION):$(UN_AGE)
+ 
  

Index: libuninameslist1.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/libs/libuninameslist1.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- libuninameslist1.info   26 Jun 2005 20:34:18 -  1.2
+++ libuninameslist1.info   15 Sep 2005 19:25:56 -  1.3
@@ -1,9 +1,9 @@
 Package: libuninameslist1
-Version: 040701
+Version: 20050712
 Revision: 1
 License: BSD
 Source: mirror:sourceforge:libuninameslist/libuninameslist_src-%v.tgz
-Source-MD5: fb565640e98bfbc5e633caae4a4b95c3
+Source-MD5: 154549efe3a45ed4fa8d4e63ff6dbabf
 SourceDirectory: libuninameslist
 Depends: %n-shlibs (=%v-%r)
 BuildDependsOnly: True
@@ -24,7 +24,10 @@
 Maintainer: Daniel Johnson [EMAIL PROTECTED]
 SplitOff: 
   Package: %N-shlibs
-  Files: lib/libuninameslist.0.0.1.dylib lib/libuninameslist.0.dylib
-  Shlibs: %p/lib/libuninameslist.0.dylib 1.0.0 %n (= 030713-1)
+  Files: lib/libuninameslist.0.0.1.dylib lib/libuninameslist-fr.0.0.1.dylib 
lib/libuninameslist.0.dylib lib/libuninameslist-fr.0.dylib
+  Shlibs: 
+%p/lib/libuninameslist.0.dylib 1.0.0 %n (= 030713-1)
+%p/lib/libuninameslist-fr.0.dylib 1.0.0 %n (= 20050712-1)
+  
   DocFiles: COPYING LICENSE
 



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome libxklavier1.info,1.5,1.6

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

Modified Files:
libxklavier1.info 
Log Message:
Make room for new lib-major version


Index: libxklavier1.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/libxklavier1.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- libxklavier1.info   12 Mar 2005 17:47:33 -  1.5
+++ libxklavier1.info   15 Sep 2005 20:41:23 -  1.6
@@ -1,8 +1,10 @@
 Package: libxklavier1
 Version: 1.02
-Revision: 6
+Revision: 7
 Depends: %N-shlibs (= %v-%r), atk1-shlibs (= 1.6.0-1), gettext, glib2 (= 
2.4.0-1), gtk+2 (= 2.4.0-1), libiconv, pango1-xft2 (= 1.4.0-1), libxml2-shlibs
 BuildDepends: glib2-dev (= 2.4.0-1), atk1 (= 1.6.0-1), pango1-xft2-dev (= 
1.4.0-1), gtk+2-dev (= 2.4.0-1), gtk+2 (= 2.4.0-1), pkgconfig, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, libxml2
+Conflicts: libxklavier10
+Replaces: libxklavier10
 Source: mirror:sourceforge:gswitchit/libxklavier-%v.tar.gz
 Source-MD5: fba323a69bc904e9889df7fb5491ea55
 NoSetCPPFLAGS: true



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

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

Modified Files:
libxklavier1.info 
Log Message:
Make room for new lib-major version


Index: libxklavier1.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/libxklavier1.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- libxklavier1.info   27 Apr 2005 03:25:41 -  1.1
+++ libxklavier1.info   15 Sep 2005 20:41:23 -  1.2
@@ -1,8 +1,10 @@
 Package: libxklavier1
 Version: 1.02
-Revision: 6
+Revision: 7
 Depends: %N-shlibs (= %v-%r), atk1-shlibs (= 1.6.0-1), gettext, glib2 (= 
2.4.0-1), gtk+2 (= 2.4.0-1), libiconv, pango1-xft2 (= 1.4.0-1), libxml2-shlibs
 BuildDepends: glib2-dev (= 2.4.0-1), atk1 (= 1.6.0-1), pango1-xft2-dev (= 
1.4.0-1), gtk+2-dev (= 2.4.0-1), gtk+2 (= 2.4.0-1), pkgconfig, gettext-dev, 
gettext-bin, gettext-tools, libiconv-dev, libxml2
+Conflicts: libxklavier10
+Replaces: libxklavier10
 Source: mirror:sourceforge:gswitchit/libxklavier-%v.tar.gz
 Source-MD5: fba323a69bc904e9889df7fb5491ea55
 NoSetCPPFLAGS: true



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome libxklavier10.info,NONE,1.1 libxklavier10.patch,NONE,1.1

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

Added Files:
libxklavier10.info libxklavier10.patch 
Log Message:
New version (new lib-major version)


--- NEW FILE: libxklavier10.info ---
Package: libxklavier10
Version: 2.0
Revision: 1
Depends: %N-shlibs (= %v-%r), libiconv, libxml2-shlibs, x11
BuildDepends: pkgconfig, libiconv-dev, libxml2, doxygen, x11-dev
Source: mirror:gnome:sources/libxklavier/%v/libxklavier-%v.tar.bz2
Source-MD5: 8da1a1a2ba934e94288bef8a4e4ca62d
Conflicts: libxklavier1
Replaces: libxklavier1
PatchScript: sed 's/@FINK_PACKAGE@/%n/' %a/%n.patch | patch -p1
SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
ConfigureParams: --disable-dependency-tracking --enable-doxygen
InstallScript: make install DESTDIR=%d
BuildDependsOnly: True
SplitOff: 
  Package: %N-shlibs
  Depends: libiconv, libxml2-shlibs
  Files: lib/libxklavier.10*dylib share/%N
  Shlibs: %p/lib/libxklavier.10.0.0.dylib 11.0.0 %n (= 2.0-1)

DocFiles: AUTHORS COPYING.LIB CREDITS ChangeLog NEWS README
Description: Library to make XKB stuff easier
DescPort: 
XKB doesn't work on OS X, so force its activation function to fail.

We're not quite clean for -Werror during compiling.

Upstream failed to generate the AM_ICONV macro in configure, but we
don't seem to need its results in order to compile so not fixing it.
(Where's the bugzilla for this thing?)

License: LGPL
Maintainer: The Gnome Core Team [EMAIL PROTECTED]
Homepage: http://www.gnome.org/

--- NEW FILE: libxklavier10.patch ---
diff -Nurd -x'*~' libxklavier-2.0.orig/Makefile.in libxklavier-2.0/Makefile.in
--- libxklavier-2.0.orig/Makefile.in2005-02-25 18:02:55.0 -0500
+++ libxklavier-2.0/Makefile.in 2005-09-15 16:25:07.0 -0400
@@ -202,7 +202,7 @@
 xkbheaders_present = @xkbheaders_present@
 SUBDIRS = libxklavier doc tests
 config_xml_DATA = xfree86.xml
-config_xmldir = $(datadir)/$(PACKAGE)
+config_xmldir = $(datadir)/@FINK_PACKAGE@
 EXTRA_DIST = libxklavier.spec libxklavier.spec.in \
  Doxyfile Doxyfile.in autogen.sh \
  CREDITS libxklavier.pc.in \
diff -Nurd -x'*~' libxklavier-2.0.orig/libxklavier/Makefile.in 
libxklavier-2.0/libxklavier/Makefile.in
--- libxklavier-2.0.orig/libxklavier/Makefile.in2005-02-25 
18:02:55.0 -0500
+++ libxklavier-2.0/libxklavier/Makefile.in 2005-09-15 16:04:54.0 
-0400
@@ -205,7 +205,7 @@
 @[EMAIL PROTECTED] = -DENABLE_XKB_SUPPORT=1
 @[EMAIL PROTECTED] = -DDISABLE_XMM_SUPPORT=1
 @[EMAIL PROTECTED] = -DENABLE_XMM_SUPPORT=1
-AM_CFLAGS = -Wall -Werror -DDATA_DIR=\$(datadir)/$(PACKAGE)\ \
+AM_CFLAGS = -Wall -DDATA_DIR=\$(datadir)/$(PACKAGE)\ \
   -I. -I$(includedir) $(XML_CFLAGS) -I$(x_includes) -I$(top_srcdir) \
   $(XKB_HEADERS_PRESENT_CFLAG) \
   $(ENABLE_XKB_SUPPORT_CFLAG) \
diff -Nurd -x'*~' libxklavier-2.0.orig/libxklavier/xklavier_config_xkb.c 
libxklavier-2.0/libxklavier/xklavier_config_xkb.c
--- libxklavier-2.0.orig/libxklavier/xklavier_config_xkb.c  2005-02-23 
19:40:50.0 -0500
+++ libxklavier-2.0/libxklavier/xklavier_config_xkb.c   2005-09-15 
15:41:48.0 -0400
@@ -362,6 +362,9 @@
   }
 #endif
 
+/* Not supported on OS X */
+return True;
+
 #ifdef XKB_HEADERS_PRESENT
   XkbComponentNamesRec componentNames;
   memset( componentNames, 0, sizeof( componentNames ) );



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome libxklavier10.info,NONE,1.1 libxklavier10.patch,NONE,1.1

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

Added Files:
libxklavier10.info libxklavier10.patch 
Log Message:
New version (new lib-major version)


--- NEW FILE: libxklavier10.info ---
Package: libxklavier10
Version: 2.0
Revision: 1
Depends: %N-shlibs (= %v-%r), libiconv, libxml2-shlibs, x11
BuildDepends: pkgconfig, libiconv-dev, libxml2, doxygen, x11-dev
Source: mirror:gnome:sources/libxklavier/%v/libxklavier-%v.tar.bz2
Source-MD5: 8da1a1a2ba934e94288bef8a4e4ca62d
Conflicts: libxklavier1
Replaces: libxklavier1
PatchScript: sed 's/@FINK_PACKAGE@/%n/' %a/%n.patch | patch -p1
SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
ConfigureParams: --disable-dependency-tracking --enable-doxygen
InstallScript: make install DESTDIR=%d
BuildDependsOnly: True
SplitOff: 
  Package: %N-shlibs
  Depends: libiconv, libxml2-shlibs
  Files: lib/libxklavier.10*dylib share/%N
  Shlibs: %p/lib/libxklavier.10.0.0.dylib 11.0.0 %n (= 2.0-1)

DocFiles: AUTHORS COPYING.LIB CREDITS ChangeLog NEWS README
Description: Library to make XKB stuff easier
DescPort: 
XKB doesn't work on OS X, so force its activation function to fail.

We're not quite clean for -Werror during compiling.

Upstream failed to generate the AM_ICONV macro in configure, but we
don't seem to need its results in order to compile so not fixing it.
(Where's the bugzilla for this thing?)

License: LGPL
Maintainer: The Gnome Core Team [EMAIL PROTECTED]
Homepage: http://www.gnome.org/

--- NEW FILE: libxklavier10.patch ---
diff -Nurd -x'*~' libxklavier-2.0.orig/Makefile.in libxklavier-2.0/Makefile.in
--- libxklavier-2.0.orig/Makefile.in2005-02-25 18:02:55.0 -0500
+++ libxklavier-2.0/Makefile.in 2005-09-15 16:25:07.0 -0400
@@ -202,7 +202,7 @@
 xkbheaders_present = @xkbheaders_present@
 SUBDIRS = libxklavier doc tests
 config_xml_DATA = xfree86.xml
-config_xmldir = $(datadir)/$(PACKAGE)
+config_xmldir = $(datadir)/@FINK_PACKAGE@
 EXTRA_DIST = libxklavier.spec libxklavier.spec.in \
  Doxyfile Doxyfile.in autogen.sh \
  CREDITS libxklavier.pc.in \
diff -Nurd -x'*~' libxklavier-2.0.orig/libxklavier/Makefile.in 
libxklavier-2.0/libxklavier/Makefile.in
--- libxklavier-2.0.orig/libxklavier/Makefile.in2005-02-25 
18:02:55.0 -0500
+++ libxklavier-2.0/libxklavier/Makefile.in 2005-09-15 16:04:54.0 
-0400
@@ -205,7 +205,7 @@
 @[EMAIL PROTECTED] = -DENABLE_XKB_SUPPORT=1
 @[EMAIL PROTECTED] = -DDISABLE_XMM_SUPPORT=1
 @[EMAIL PROTECTED] = -DENABLE_XMM_SUPPORT=1
-AM_CFLAGS = -Wall -Werror -DDATA_DIR=\$(datadir)/$(PACKAGE)\ \
+AM_CFLAGS = -Wall -DDATA_DIR=\$(datadir)/$(PACKAGE)\ \
   -I. -I$(includedir) $(XML_CFLAGS) -I$(x_includes) -I$(top_srcdir) \
   $(XKB_HEADERS_PRESENT_CFLAG) \
   $(ENABLE_XKB_SUPPORT_CFLAG) \
diff -Nurd -x'*~' libxklavier-2.0.orig/libxklavier/xklavier_config_xkb.c 
libxklavier-2.0/libxklavier/xklavier_config_xkb.c
--- libxklavier-2.0.orig/libxklavier/xklavier_config_xkb.c  2005-02-23 
19:40:50.0 -0500
+++ libxklavier-2.0/libxklavier/xklavier_config_xkb.c   2005-09-15 
15:41:48.0 -0400
@@ -362,6 +362,9 @@
   }
 #endif
 
+/* Not supported on OS X */
+return True;
+
 #ifdef XKB_HEADERS_PRESENT
   XkbComponentNamesRec componentNames;
   memset( componentNames, 0, sizeof( componentNames ) );



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/crypto/finkinfo kdepim3.patch,1.5,1.6

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

Modified Files:
kdepim3.patch 
Log Message:
more qt 3.3.5 fixes

Index: kdepim3.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/crypto/finkinfo/kdepim3.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- kdepim3.patch   2 Sep 2005 18:16:25 -   1.5
+++ kdepim3.patch   15 Sep 2005 20:57:26 -  1.6
@@ -2963,3 +2963,33 @@
   libkolabwizard.la libgroupwisewizard.la \
   libexchangewizard.la
  
+--- kdepim-3.4.2/kmail/smimeconfiguration.ui   2005-05-23 08:11:54.0 
-0400
 kdepim-3.4.2-new/kmail/smimeconfiguration.ui   2005-09-15 
16:36:23.0 -0400
+@@ -410,7 +410,4 @@
+ /connection
+ /connections
+ layoutdefaults spacing=6 margin=11/
+-includehints
+-includehintkleo::keyrequester.h/includehint
+-/includehints
+ /UI
+--- kdepim-3.4.2/korn/kornboxcfg.ui2005-05-23 08:12:15.0 -0400
 kdepim-3.4.2-new/korn/kornboxcfg.ui2005-09-15 16:37:12.0 
-0400
+@@ -1692,7 +1692,6 @@
+ includehintkurlrequester.h/includehint
+ includehintklineedit.h/includehint
+ includehintkpushbutton.h/includehint
+-includehintkeditlistboxmanager.h/includehint
+ includehintkeditlistbox.h/includehint
+ includehintklineedit.h/includehint
+ /includehints
+--- kdepim-3.4.2/korn/korncfg.ui   2005-05-23 08:12:15.0 -0400
 kdepim-3.4.2-new/korn/korncfg.ui   2005-09-15 16:37:20.0 -0400
+@@ -162,7 +162,4 @@
+ slot access=protectedslotEditBox()/slot
+ /slots
+ layoutdefaults spacing=6 margin=11/
+-includehints
+-includehintkeditlistboxmanager.h/includehint
+-/includehints
+ /UI



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/crypto/finkinfo kdepim3.patch,1.5,1.6

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

Modified Files:
kdepim3.patch 
Log Message:
more qt 3.3.5 fixes

Index: kdepim3.patch
===
RCS file: /cvsroot/fink/dists/10.3/unstable/crypto/finkinfo/kdepim3.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- kdepim3.patch   2 Sep 2005 18:16:24 -   1.5
+++ kdepim3.patch   15 Sep 2005 20:57:26 -  1.6
@@ -2963,3 +2963,33 @@
   libkolabwizard.la libgroupwisewizard.la \
   libexchangewizard.la
  
+--- kdepim-3.4.2/kmail/smimeconfiguration.ui   2005-05-23 08:11:54.0 
-0400
 kdepim-3.4.2-new/kmail/smimeconfiguration.ui   2005-09-15 
16:36:23.0 -0400
+@@ -410,7 +410,4 @@
+ /connection
+ /connections
+ layoutdefaults spacing=6 margin=11/
+-includehints
+-includehintkleo::keyrequester.h/includehint
+-/includehints
+ /UI
+--- kdepim-3.4.2/korn/kornboxcfg.ui2005-05-23 08:12:15.0 -0400
 kdepim-3.4.2-new/korn/kornboxcfg.ui2005-09-15 16:37:12.0 
-0400
+@@ -1692,7 +1692,6 @@
+ includehintkurlrequester.h/includehint
+ includehintklineedit.h/includehint
+ includehintkpushbutton.h/includehint
+-includehintkeditlistboxmanager.h/includehint
+ includehintkeditlistbox.h/includehint
+ includehintklineedit.h/includehint
+ /includehints
+--- kdepim-3.4.2/korn/korncfg.ui   2005-05-23 08:12:15.0 -0400
 kdepim-3.4.2-new/korn/korncfg.ui   2005-09-15 16:37:20.0 -0400
+@@ -162,7 +162,4 @@
+ slot access=protectedslotEditBox()/slot
+ /slots
+ layoutdefaults spacing=6 margin=11/
+-includehints
+-includehintkeditlistboxmanager.h/includehint
+-/includehints
+ /UI



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/kde kdeedu3.patch,1.5,1.6 kdegraphics3.patch,1.12,1.13 kdenetwork3.patch,1.3,1.4

2005-09-15 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12885/10.3/unstable/main/finkinfo/kde

Modified Files:
kdeedu3.patch kdegraphics3.patch kdenetwork3.patch 
Log Message:
more qt 3.3.5 fixes

Index: kdeedu3.patch
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/kde/kdeedu3.patch,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- kdeedu3.patch   23 Mar 2005 12:48:01 -  1.5
+++ kdeedu3.patch   15 Sep 2005 20:57:26 -  1.6
@@ -1,6 +1,5 @@
-diff -uNr kdeedu-3.4.0/kalzium/src/Makefile.am 
kdeedu-3.4.0-new/kalzium/src/Makefile.am
 kdeedu-3.4.0/kalzium/src/Makefile.am   2005-01-03 09:52:32.0 
-0500
-+++ kdeedu-3.4.0-new/kalzium/src/Makefile.am   2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kalzium/src/Makefile.am   2005-05-23 08:04:45.0 
-0400
 kdeedu-3.4.2-new/kalzium/src/Makefile.am   2005-09-15 16:26:15.0 
-0400
 @@ -1,8 +1,11 @@
  # set the include path for X, qt and KDE
  INCLUDES= -I$(top_srcdir)/libkdeedu/kdeeduplot $(all_includes)
@@ -33,9 +32,8 @@
  
  elementnames:
  rm -f kalzium_i18n.cpp
-diff -uNr kdeedu-3.4.0/kalzium/src/main.cpp 
kdeedu-3.4.0-new/kalzium/src/main.cpp
 kdeedu-3.4.0/kalzium/src/main.cpp  2005-02-23 04:56:01.0 -0500
-+++ kdeedu-3.4.0-new/kalzium/src/main.cpp  2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kalzium/src/main.cpp  2005-05-23 08:04:45.0 -0400
 kdeedu-3.4.2-new/kalzium/src/main.cpp  2005-09-15 16:26:16.0 
-0400
 @@ -18,7 +18,7 @@
  KCmdLineLastOption
  };
@@ -45,9 +43,8 @@
  {
  KAboutData about(kalzium, I18N_NOOP(Kalzium), version, description,
   KAboutData::License_GPL, (C) 2002-2005 Carsten 
Niehaus, 0, http://edu.kde.org/kalzium;);
-diff -uNr kdeedu-3.4.0/kbruch/src/Makefile.am 
kdeedu-3.4.0-new/kbruch/src/Makefile.am
 kdeedu-3.4.0/kbruch/src/Makefile.am2005-01-03 09:52:34.0 
-0500
-+++ kdeedu-3.4.0-new/kbruch/src/Makefile.am2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kbruch/src/Makefile.am2005-05-23 08:04:45.0 
-0400
 kdeedu-3.4.2-new/kbruch/src/Makefile.am2005-09-15 16:26:16.0 
-0400
 @@ -1,10 +1,14 @@
 -bin_PROGRAMS = kbruch
  
@@ -68,9 +65,8 @@
  
  EXTRA_DIST = kbruch.cpp kbruch.h kbruch.desktop hi32-app-kbruch.png 
hi16-app-kbruch.png lo32-app-kbruch.png lo16-app-kbruch.png mainqtwidget.cpp 
mainqtwidget.h primenumber.cpp primenumber.h statisticsview.cpp 
statisticsview.h exercisebase.cpp exercisebase.h taskview.cpp taskview.h 
ratio.cpp ratio.h task.cpp task.h taskwidget.cpp taskwidget.h 
fractionbasewidget.cpp fractionbasewidget.h resultwidget.cpp resultwidget.h 
exercisecompare.cpp exercisecompare.h ratiowidget.cpp ratiowidget.h 
rationalwidget.cpp rationalwidget.h exerciseconvert.cpp exerciseconvert.h 
exercisefactorize.cpp exercisefactorize.h factorizedwidget.cpp 
factorizedwidget.h kbruch.rc taskvieweroptionsbase.ui
  
-diff -uNr kdeedu-3.4.0/kbruch/src/kbruch.cpp 
kdeedu-3.4.0-new/kbruch/src/kbruch.cpp
 kdeedu-3.4.0/kbruch/src/kbruch.cpp 2004-07-16 12:12:01.0 -0400
-+++ kdeedu-3.4.0-new/kbruch/src/kbruch.cpp 2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kbruch/src/kbruch.cpp 2005-05-23 08:04:45.0 -0400
 kdeedu-3.4.2-new/kbruch/src/kbruch.cpp 2005-09-15 16:26:16.0 
-0400
 @@ -28,7 +28,7 @@
  #include kaboutdata.h
  
@@ -80,9 +76,8 @@
  {
// init random generator
srand(time(NULL));
-diff -uNr kdeedu-3.4.0/keduca/keduca/Makefile.am 
kdeedu-3.4.0-new/keduca/keduca/Makefile.am
 kdeedu-3.4.0/keduca/keduca/Makefile.am 2004-12-02 04:37:34.0 
-0500
-+++ kdeedu-3.4.0-new/keduca/keduca/Makefile.am 2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/keduca/keduca/Makefile.am 2005-05-23 08:03:41.0 
-0400
 kdeedu-3.4.2-new/keduca/keduca/Makefile.am 2005-09-15 16:26:16.0 
-0400
 @@ -1,11 +1,13 @@
  # set the include path for X, qt and KDE
 -INCLUDES= -I../libkeduca $(all_includes)
@@ -102,9 +97,8 @@
  
  # Convenience library
  #noinst_LTLIBRARIES = libkeduca_common.la
-diff -uNr kdeedu-3.4.0/keduca/keduca/main.cpp 
kdeedu-3.4.0-new/keduca/keduca/main.cpp
 kdeedu-3.4.0/keduca/keduca/main.cpp2005-02-23 04:56:02.0 
-0500
-+++ kdeedu-3.4.0-new/keduca/keduca/main.cpp2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/keduca/keduca/main.cpp2005-05-23 08:03:41.0 
-0400
 kdeedu-3.4.2-new/keduca/keduca/main.cpp2005-09-15 16:26:16.0 
-0400
 @@ -31,7 +31,7 @@
  KCmdLineLastOption
  };
@@ -114,9 +108,8 @@
  {
  KAboutData aboutData( keduca, I18N_NOOP(KEduca),
version, description, KAboutData::License_GPL,
-diff -uNr kdeedu-3.4.0/keduca/keducabuilder/Makefile.am 

dists/10.4-transitional/unstable/main/finkinfo/kde kdeedu3.patch,1.1,1.2 kdegraphics3.patch,1.3,1.4 kdenetwork3.patch,1.1,1.2

2005-09-15 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/kde
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12885/10.4-transitional/unstable/main/finkinfo/kde

Modified Files:
kdeedu3.patch kdegraphics3.patch kdenetwork3.patch 
Log Message:
more qt 3.3.5 fixes

Index: kdeedu3.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/kde/kdeedu3.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- kdeedu3.patch   27 Apr 2005 03:25:51 -  1.1
+++ kdeedu3.patch   15 Sep 2005 20:57:26 -  1.2
@@ -1,6 +1,5 @@
-diff -uNr kdeedu-3.4.0/kalzium/src/Makefile.am 
kdeedu-3.4.0-new/kalzium/src/Makefile.am
 kdeedu-3.4.0/kalzium/src/Makefile.am   2005-01-03 09:52:32.0 
-0500
-+++ kdeedu-3.4.0-new/kalzium/src/Makefile.am   2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kalzium/src/Makefile.am   2005-05-23 08:04:45.0 
-0400
 kdeedu-3.4.2-new/kalzium/src/Makefile.am   2005-09-15 16:26:15.0 
-0400
 @@ -1,8 +1,11 @@
  # set the include path for X, qt and KDE
  INCLUDES= -I$(top_srcdir)/libkdeedu/kdeeduplot $(all_includes)
@@ -33,9 +32,8 @@
  
  elementnames:
  rm -f kalzium_i18n.cpp
-diff -uNr kdeedu-3.4.0/kalzium/src/main.cpp 
kdeedu-3.4.0-new/kalzium/src/main.cpp
 kdeedu-3.4.0/kalzium/src/main.cpp  2005-02-23 04:56:01.0 -0500
-+++ kdeedu-3.4.0-new/kalzium/src/main.cpp  2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kalzium/src/main.cpp  2005-05-23 08:04:45.0 -0400
 kdeedu-3.4.2-new/kalzium/src/main.cpp  2005-09-15 16:26:16.0 
-0400
 @@ -18,7 +18,7 @@
  KCmdLineLastOption
  };
@@ -45,9 +43,8 @@
  {
  KAboutData about(kalzium, I18N_NOOP(Kalzium), version, description,
   KAboutData::License_GPL, (C) 2002-2005 Carsten 
Niehaus, 0, http://edu.kde.org/kalzium;);
-diff -uNr kdeedu-3.4.0/kbruch/src/Makefile.am 
kdeedu-3.4.0-new/kbruch/src/Makefile.am
 kdeedu-3.4.0/kbruch/src/Makefile.am2005-01-03 09:52:34.0 
-0500
-+++ kdeedu-3.4.0-new/kbruch/src/Makefile.am2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kbruch/src/Makefile.am2005-05-23 08:04:45.0 
-0400
 kdeedu-3.4.2-new/kbruch/src/Makefile.am2005-09-15 16:26:16.0 
-0400
 @@ -1,10 +1,14 @@
 -bin_PROGRAMS = kbruch
  
@@ -68,9 +65,8 @@
  
  EXTRA_DIST = kbruch.cpp kbruch.h kbruch.desktop hi32-app-kbruch.png 
hi16-app-kbruch.png lo32-app-kbruch.png lo16-app-kbruch.png mainqtwidget.cpp 
mainqtwidget.h primenumber.cpp primenumber.h statisticsview.cpp 
statisticsview.h exercisebase.cpp exercisebase.h taskview.cpp taskview.h 
ratio.cpp ratio.h task.cpp task.h taskwidget.cpp taskwidget.h 
fractionbasewidget.cpp fractionbasewidget.h resultwidget.cpp resultwidget.h 
exercisecompare.cpp exercisecompare.h ratiowidget.cpp ratiowidget.h 
rationalwidget.cpp rationalwidget.h exerciseconvert.cpp exerciseconvert.h 
exercisefactorize.cpp exercisefactorize.h factorizedwidget.cpp 
factorizedwidget.h kbruch.rc taskvieweroptionsbase.ui
  
-diff -uNr kdeedu-3.4.0/kbruch/src/kbruch.cpp 
kdeedu-3.4.0-new/kbruch/src/kbruch.cpp
 kdeedu-3.4.0/kbruch/src/kbruch.cpp 2004-07-16 12:12:01.0 -0400
-+++ kdeedu-3.4.0-new/kbruch/src/kbruch.cpp 2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/kbruch/src/kbruch.cpp 2005-05-23 08:04:45.0 -0400
 kdeedu-3.4.2-new/kbruch/src/kbruch.cpp 2005-09-15 16:26:16.0 
-0400
 @@ -28,7 +28,7 @@
  #include kaboutdata.h
  
@@ -80,9 +76,8 @@
  {
// init random generator
srand(time(NULL));
-diff -uNr kdeedu-3.4.0/keduca/keduca/Makefile.am 
kdeedu-3.4.0-new/keduca/keduca/Makefile.am
 kdeedu-3.4.0/keduca/keduca/Makefile.am 2004-12-02 04:37:34.0 
-0500
-+++ kdeedu-3.4.0-new/keduca/keduca/Makefile.am 2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/keduca/keduca/Makefile.am 2005-05-23 08:03:41.0 
-0400
 kdeedu-3.4.2-new/keduca/keduca/Makefile.am 2005-09-15 16:26:16.0 
-0400
 @@ -1,11 +1,13 @@
  # set the include path for X, qt and KDE
 -INCLUDES= -I../libkeduca $(all_includes)
@@ -102,9 +97,8 @@
  
  # Convenience library
  #noinst_LTLIBRARIES = libkeduca_common.la
-diff -uNr kdeedu-3.4.0/keduca/keduca/main.cpp 
kdeedu-3.4.0-new/keduca/keduca/main.cpp
 kdeedu-3.4.0/keduca/keduca/main.cpp2005-02-23 04:56:02.0 
-0500
-+++ kdeedu-3.4.0-new/keduca/keduca/main.cpp2005-03-15 09:40:35.0 
-0500
+--- kdeedu-3.4.2/keduca/keduca/main.cpp2005-05-23 08:03:41.0 
-0400
 kdeedu-3.4.2-new/keduca/keduca/main.cpp2005-09-15 16:26:16.0 
-0400
 @@ -31,7 +31,7 @@
  KCmdLineLastOption
  };
@@ -114,9 +108,8 @@
  {
  KAboutData aboutData( keduca, I18N_NOOP(KEduca),
version, description, KAboutData::License_GPL,
-diff -uNr 

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

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

Modified Files:
zenity.info 
Log Message:
New version.


Index: zenity.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/zenity.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- zenity.info 8 Aug 2005 08:52:03 -   1.2
+++ zenity.info 15 Sep 2005 21:43:41 -  1.3
@@ -1,14 +1,13 @@
 Package: zenity
-Version: 2.10.1
+Version: 2.12.0
 Revision: 1
-Depends: x11, atk1-shlibs (= 1.6.0-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.5.3-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 
2.3.16-1), libglade2-shlibs (= 2.3.6-1), libgnomecanvas2 (= 2.6.0-1), 
libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 
1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2)
-BuildDepends: x11-dev, glib2-dev (= 2.5.3-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libglade2 (= 2.3.6-1), 
libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev (= 2.10.0-1), gconf2-dev (= 
2.6.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
libxml2 (= 2.6.7-1), libbonobo2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), pkgconfig, 
intltool (= 0.29-1), popt, libgettext3-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1)
-Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
-Source-MD5: e5836e2e2f49d651335737cbe30c2082
-PatchScript: perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/*/Makefile.in
+Depends: x11, atk1-shlibs (= 1.6.0-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.7.3-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 
2.3.16-1), libglade2-shlibs (= 2.3.6-1), libgnomecanvas2 (= 2.6.0-1), 
libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 
1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2), libgnomecanvas2, 
libgnomecanvas2-shlibs
+BuildDepends: x11-dev, glib2-dev (= 2.7.3-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libglade2 (= 2.3.6-1), 
libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev (= 2.10.0-1), gconf2-dev (= 
2.6.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
libxml2 (= 2.6.7-1), libbonobo2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), pkgconfig, 
intltool (= 0.29-1), popt, libgettext3-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1), libgnomecanvas2-dev, gnome-doc-utils
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 588b11c3c5382f12c3b607d3f7aa47b1
 SetCPPFLAGS: -no-cpp-precomp
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
-ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking
+ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking --disable-scrollkeeper
 CompileScript: 
   PERL=/usr/bin/perl ./configure %c
   make
@@ -24,7 +23,7 @@
 scrollkeeper-update
   fi
 
-DocFiles: AUTHORS COPYING ChangeLog HACKING NEWS README THANKS TODO
+DocFiles: AUTHORS COPYING ChangeLog help/ChangeLog:ChangeLog.help 
po/ChangeLog:ChangeLog.po HACKING NEWS README THANKS TODO
 Description: Scriptable GTK+2 dialog
 DescDetail: 
 Like gdialog or Xdialog



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome zenity.info,1.11,1.12

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

Modified Files:
zenity.info 
Log Message:
New version.


Index: zenity.info
===
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/zenity.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- zenity.info 8 Aug 2005 08:52:02 -   1.11
+++ zenity.info 15 Sep 2005 21:43:41 -  1.12
@@ -1,14 +1,13 @@
 Package: zenity
-Version: 2.10.1
+Version: 2.12.0
 Revision: 1
-Depends: x11, atk1-shlibs (= 1.6.0-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.5.3-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 
2.3.16-1), libglade2-shlibs (= 2.3.6-1), libgnomecanvas2 (= 2.6.0-1), 
libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 
1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2), libgnomecanvas2, 
libgnomecanvas2-shlibs
-BuildDepends: x11-dev, glib2-dev (= 2.5.3-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libglade2 (= 2.3.6-1), 
libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev (= 2.10.0-1), gconf2-dev (= 
2.6.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
libxml2 (= 2.6.7-1), libbonobo2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), pkgconfig, 
intltool (= 0.29-1), popt, libgettext3-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1), libgnomecanvas2-dev
-Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
-Source-MD5: e5836e2e2f49d651335737cbe30c2082
-PatchScript: perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/*/Makefile.in
+Depends: x11, atk1-shlibs (= 1.6.0-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.7.3-1), gtk+2 (= 2.4.0-1), libart2-shlibs (= 
2.3.16-1), libglade2-shlibs (= 2.3.6-1), libgnomecanvas2 (= 2.6.0-1), 
libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 
1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2), libgnomecanvas2, 
libgnomecanvas2-shlibs
+BuildDepends: x11-dev, glib2-dev (= 2.7.3-1), atk1 (= 1.6.0-1), 
pango1-xft2-dev (= 1.4.0-1), gtk+2-dev (= 2.4.0-1), libglade2 (= 2.3.6-1), 
libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev (= 2.10.0-1), gconf2-dev (= 
2.6.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
libxml2 (= 2.6.7-1), libbonobo2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libbonoboui2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), pkgconfig, 
intltool (= 0.29-1), popt, libgettext3-dev, gettext-bin, gettext-tools, 
libiconv-dev, libart2 (= 2.3.16-1), libgnomecanvas2-dev, gnome-doc-utils
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 588b11c3c5382f12c3b607d3f7aa47b1
 SetCPPFLAGS: -no-cpp-precomp
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
-ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking
+ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man 
--disable-dependency-tracking --disable-scrollkeeper
 CompileScript: 
   PERL=/usr/bin/perl ./configure %c
   make
@@ -24,7 +23,7 @@
 scrollkeeper-update
   fi
 
-DocFiles: AUTHORS COPYING ChangeLog HACKING NEWS README THANKS TODO
+DocFiles: AUTHORS COPYING ChangeLog help/ChangeLog:ChangeLog.help 
po/ChangeLog:ChangeLog.po HACKING NEWS README THANKS TODO
 Description: Scriptable GTK+2 dialog
 DescDetail: 
 Like gdialog or Xdialog



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


fink/mirror ChangeLog,1.89,1.90 apt,1.4,1.5

2005-09-15 Thread Peter O'Gorman
Update of /cvsroot/fink/fink/mirror
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4802

Modified Files:
ChangeLog apt 
Log Message:
Todai teams bindist mirror

Index: apt
===
RCS file: /cvsroot/fink/fink/mirror/apt,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- apt 22 Apr 2005 21:17:16 -  1.4
+++ apt 16 Sep 2005 01:07:37 -  1.5
@@ -1 +1,2 @@
-Primary: http://bindist.finkmirrors.net/bindist
\ No newline at end of file
+Primary: http://bindist.finkmirrors.net/bindist
+asi-JP: http://fink.sodan.ecc.u-tokyo.ac.jp/bindist/bindist

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/mirror/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- ChangeLog   14 Aug 2005 18:12:35 -  1.89
+++ ChangeLog   16 Sep 2005 01:07:37 -  1.90
@@ -1,3 +1,7 @@
+2005-09-16  Peter O'Gorman  [EMAIL PROTECTED]
+
+   * apt: Add todai teams bindist mirror. Thanks Asari-san.
+
 2005-08-14  Dave Morrison  [EMAIL PROTECTED]
 
* VERSION: releasing version 0.24.8.1 of fink-mirrors



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

2005-09-15 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9120

Modified Files:
stellarium.info stellarium.patch 
Log Message:
New upstream version (0.7.0)

Index: stellarium.patch
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/sci/stellarium.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- stellarium.patch27 Apr 2005 03:26:24 -  1.1
+++ stellarium.patch16 Sep 2005 01:25:35 -  1.2
@@ -1,7 +1,7 @@
-diff -ru stellarium-0.6.2.orig/configure stellarium-0.6.2/configure
 stellarium-0.6.2.orig/configure2004-11-18 17:54:06.0 -0500
-+++ stellarium-0.6.2/configure 2004-11-26 08:57:48.0 -0500
-@@ -5653,7 +5653,7 @@
+diff -ru stellarium-0.7.0.orig/configure stellarium-0.7.0/configure
+--- stellarium-0.7.0.orig/configure2005-09-07 12:19:21.0 -0400
 stellarium-0.7.0/configure 2005-09-15 15:51:35.0 -0400
+@@ -13934,7 +13934,7 @@
  CFLAGS=$CFLAGS $X_CFLAGS
  
  case $host in
@@ -10,7 +10,7 @@
  SDL_VERSION=1.2.0
  ;;
  
-@@ -6359,7 +6359,7 @@
+@@ -14725,7 +14725,7 @@
  
  
  case $host in
@@ -19,7 +19,7 @@
  PKGDATADIR=Stellarium.app/Contents/Resources
  ;;
  *)
-@@ -6384,7 +6384,7 @@
+@@ -14756,7 +14756,7 @@
  #define MACOSX 1
  _ACEOF
  
@@ -28,15 +28,120 @@
LIBS=$LIBS -framework OpenGL -lobjc 
  ;;
  
-diff -ru stellarium-0.6.2.orig/src/main.cpp stellarium-0.6.2/src/main.cpp
 stellarium-0.6.2.orig/src/main.cpp 2004-10-08 20:14:04.0 -0400
-+++ stellarium-0.6.2/src/main.cpp  2004-11-26 08:57:48.0 -0500
-@@ -142,7 +142,7 @@
+diff -ru stellarium-0.7.0.orig/src/fmath.h stellarium-0.7.0/src/fmath.h
+--- stellarium-0.7.0.orig/src/fmath.h  2005-09-08 12:22:01.0 -0400
 stellarium-0.7.0/src/fmath.h   2005-09-15 17:00:10.0 -0400
+@@ -27,9 +27,9 @@
+ # include config.h
+ #endif
  
-   // If the system is non unix (windows) or if it's macosx the config 
file is in the
-   // config/ directory of the dataRoot directory
--#if defined(WIN32) || defined(CYGWIN) || defined(__MINGW32__) || 
defined(MACOSX)
-+#if defined(WIN32) || defined(CYGWIN) || defined(__MINGW32__)
-   CDIR = DATA_ROOT + /config/;
+-#ifndef HAVE_POW10
++//#ifndef HAVE_POW10
+ # define pow10(x) (float)pow(10.f,(x))
+-#endif
++//#endif
+ #ifndef HAVE_ACOSF
+ # define acosf(x) (float)(acos(x))
+ #endif
+diff -ru stellarium-0.7.0.orig/src/main.cpp stellarium-0.7.0/src/main.cpp
+--- stellarium-0.7.0.orig/src/main.cpp 2005-09-08 12:23:36.0 -0400
 stellarium-0.7.0/src/main.cpp  2005-09-15 16:36:55.0 -0400
+@@ -93,6 +93,7 @@
+ // This enable to launch stellarium from the local directory without 
installing it
+ void setDirectories(const char* executableName)
+ {
++#undef MACOSX
+ #if !defined(MACOSX)  !defined(XCODE)
+   // The variable CONFIG_DATA_DIR must have been set by the configure 
script
+   // Its value is the dataRoot directory, ie the one containing data/ and 
textures/
+@@ -228,6 +229,7 @@
+ CDIR = cdir;
+ DATA_ROOT = data_root;
+ #endif
++#define MACOSX 1
+ }
+ 
+ 
+@@ -264,11 +266,11 @@
+   stel_core* core = new stel_core(DDIR, TDIR, CDIR, DATA_ROOT);
+ 
+   // Give the config file parameters which has to be given hard coded
+-#if !defined(MACOSX)  !defined(XCODE)
++//#if !defined(MACOSX)  !defined(XCODE)
+   core-set_config_files(config.ini);
+-#else
+-core-set_config_files(STELLARIUM_CONF_FILE);
+-#endif
++//#else
++//core-set_config_files(STELLARIUM_CONF_FILE);
++//#endif
+ 
+   // Load the configuration options from the given file names
+   // This includes the video parameters
+diff -ru stellarium-0.7.0.orig/src/observator.cpp 
stellarium-0.7.0/src/observator.cpp
+--- stellarium-0.7.0.orig/src/observator.cpp   2005-09-08 17:00:24.0 
-0400
 stellarium-0.7.0/src/observator.cpp2005-09-15 19:45:01.0 
-0400
+@@ -224,7 +224,7 @@
+  struct tm *timeinfo;
+  time_t rawtime; time(rawtime);
+  timeinfo = localtime(rawtime);
+- return -(float)timezone/3600 + (timeinfo-tm_isdst!=0);
++ return (float)timeinfo-tm_gmtoff/3600;
+ #endif
+ 
+//#endif
+diff -ru stellarium-0.7.0.orig/src/stel_utility.cpp 
stellarium-0.7.0/src/stel_utility.cpp
+--- stellarium-0.7.0.orig/src/stel_utility.cpp 2005-09-08 12:30:13.0 
-0400
 stellarium-0.7.0/src/stel_utility.cpp  2005-09-15 20:21:56.0 
-0400
+@@ -137,7 +137,7 @@
+   const char* s = str.c_str();
+   char *mptr, *ptr, *dec, *hh;
+   int negative = 0;
+-  char delim1[] =  :.,;DdHhMm'\n\t;
++  char delim1[] =  :.,;ºDdHhMm'\n\t;
+   char delim2[] =  NSEWnsew\\n\t;
+   int dghh = 0, minutes = 0;
+   double seconds = 0.0, pos;
+@@ -234,7 +234,7 @@
+ * \param location Location angle in degress
+ * \return Angle string
+ *

dists/10.4-transitional/unstable/main/finkinfo/gnome gnome-games.info,1.7,1.8

2005-09-15 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9585/main/finkinfo/gnome

Modified Files:
gnome-games.info 
Log Message:
Missing runtime depend on librsvg2-gtk for Tiger (thanks, vasi!)


Index: gnome-games.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-games.info,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- gnome-games.info13 Sep 2005 19:32:39 -  1.7
+++ gnome-games.info16 Sep 2005 01:28:35 -  1.8
@@ -1,8 +1,8 @@
 Package: gnome-games
 Version: 2.12.0
-Revision: 4
+Revision: 5
 GCC: 3.3
-Depends: gnome-base, libcroco1-shlibs (= 0.5.0-1), librsvg2-shlibs (= 
2.6.0-1), atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound-bin 
(= 0.2.34-1), esound-shlibs (= 0.2.34-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.4.0-1), gnome-vfs2-ssl (= 2.6.0-1) | 
gnome-vfs2 (= 2.6.0-1), gtk+2 (= 2.5.4-1), guile16 (= 1.6.5-1), 
libart2-shlibs (= 2.3.16-1), libbonobo2 (= 2.6.0-1), libbonoboui2 (= 
2.6.0-1), libgnome2 (= 2.6.0-1), libgnomecanvas2 (= 2.6.0-1), libgnomeui2 (= 
2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), 
pango1-xft2 (= 1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2), x11, 
libhowl-bin (= 0.9.6-1), libhowl-shlibs (= 0.9.6-1), bzip2-shlibs, 
libglade2-shlibs (= 2.3.6-1), gnome-keyring-shlibs, libgsf, libjpeg-shlibs
+Depends: gnome-base, libcroco1-shlibs (= 0.5.0-1), librsvg2-shlibs (= 
2.6.0-1), atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound-bin 
(= 0.2.34-1), esound-shlibs (= 0.2.34-1), gconf2 (= 2.6.0-1), 
libgettext3-shlibs, glib2 (= 2.4.0-1), gnome-vfs2-ssl (= 2.6.0-1) | 
gnome-vfs2 (= 2.6.0-1), gtk+2 (= 2.5.4-1), guile16 (= 1.6.5-1), 
libart2-shlibs (= 2.3.16-1), libbonobo2 (= 2.6.0-1), libbonoboui2 (= 
2.6.0-1), libgnome2 (= 2.6.0-1), libgnomecanvas2 (= 2.6.0-1), libgnomeui2 (= 
2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), 
pango1-xft2 (= 1.4.0-1), popt-shlibs, scrollkeeper (= 0.3.12-2), x11, 
libhowl-bin (= 0.9.6-1), libhowl-shlibs (= 0.9.6-1), bzip2-shlibs, 
libglade2-shlibs (= 2.3.6-1), gnome-keyring-shlibs, libgsf, libjpeg-shlibs, 
librsvg2-gtk (= 2.9.5-11)
 BuildDepends: libcroco1 (= 0.5.0-1), librsvg2 (= 2.6.0-1), atk1 (= 
1.6.0-1), audiofile (= 0.2.5-1), esound (= 0.2.34-1), gconf2-dev (= 
2.6.0-1), gettext-bin, gettext-tools, libgettext3-dev, glib2-dev (= 2.4.0-1), 
gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), gtk-doc (= 
1.2-1), gtk+2-dev (= 2.5.4-1), guile16-dev (= 1.6.5-1), intltool (= 0.29-1), 
libart2 (= 2.3.16-1), libbonobo2-dev (= 2.6.0-1), libbonoboui2-dev (= 
2.6.0-1), libglade2 (= 2.3.6-1), libgnome2-dev (= 2.6.0-1), 
libgnomecanvas2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), libiconv-dev, 
libjpeg, libxml2 (= 2.6.7-1), libncurses5, orbit2-dev (= 2.10.0-1), 
pango1-xft2-dev (= 1.4.0-1), pkgconfig, gnome-keyring-dev (= 0.4.3-1), 
libgsf-dev, popt, x11-dev, gob2, libhowl-dev (= 0.9.6-1), bzip2-dev
 Replaces: gnome-games-dev ( 2.12.0-1), gnome-games-shlibs ( 2.12.0-1)
 Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/text asciidoc.info,1.2,1.3

2005-09-15 Thread Matthias Neeracher
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28446

Modified Files:
asciidoc.info 
Log Message:
Force use of system sed

Index: asciidoc.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/text/asciidoc.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- asciidoc.info   29 Jul 2005 16:22:02 -  1.2
+++ asciidoc.info   16 Sep 2005 03:22:37 -  1.3
@@ -1,11 +1,11 @@
 Info2: 
 Package: asciidoc
 Version: 7.0.1
-Revision: 1
+Revision: 2
 Source: mirror:sourceforge:%n/%n-%v.tar.gz
 Source-MD5: b117387a6f6293c8a78fb0459564d060
 PatchScript: 
-sed -e 's|\(GLOBAL_CONFIG_DIR = \)|\1%p|' -i.bak asciidoc.py
+/usr/bin/sed -e 's|\(GLOBAL_CONFIG_DIR = \)|\1%p|' -i.bak asciidoc.py
 
 CompileScript: 
 echo Nothing to do



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/devel mercurial.info,1.1,1.2

2005-09-15 Thread Matthias Neeracher
Update of /cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/devel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28669

Modified Files:
mercurial.info 
Log Message:
Updated to latest upstream version

Index: mercurial.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/devel/mercurial.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- mercurial.info  8 Jun 2005 05:48:26 -   1.1
+++ mercurial.info  16 Sep 2005 03:24:19 -  1.2
@@ -1,26 +1,34 @@
 Info2: 
 Package: mercurial-py%type_pkg[python]
-Version: 0.5b
+Version: 0.6c
 Revision: 1
 Type: python(2.2 2.3 2.4)
 Depends: python%type_pkg[python]
+BuildDepends: asciidoc, xmlto
 Conflicts: mercurial-py22, mercurial-py23, mercurial-py24
 Replaces: mercurial-py22, mercurial-py23, mercurial-py24
 Source: http://www.selenic.com/mercurial/release/mercurial-%v.tar.gz
-Source-MD5: c39c8daeb9c149d2c9ed4d93ae62a353
+Source-MD5: 52c8cef44e3367f6abdb7bc8c16894d3
 PatchScript: 
 perl -i -pe 'print #include inttypes.h\n if /stdlib/' mercurial/mpatch.c
 
 CompileScript: 
 #!/bin/sh
-echo No compile needed
+cd doc
+for docfile in *.[15].txt
+do
+  asciidoc.py -d manpage -b docbook $docfile
+  xmlto man `basename $docfile .txt`.xml
+done
 
 InstallScript: 
 python%type_raw[python] setup.py install --home %i --install-lib 
%i/lib/python%type_raw[python]/site-packages
 mkdir -p %i/share/man/man1
-cp doc/hg.1 %i/share/man/man1
+cp doc/*.1 %i/share/man/man1
+mkdir -p %i/share/man/man5
+cp doc/*.5 %i/share/man/man5
 
-DocFiles: README *.txt doc/hg.1.txt doc/hg.1.html
+DocFiles: README *.txt
 Description: Lightweight distributed revision control system
 DescDetail: 
 Mercurial is a fast, lightweight source control management 
@@ -43,4 +51,4 @@
 License: GPL
 Homepage: http://www.selenic.com/mercurial
 Maintainer: Matthias Neeracher [EMAIL PROTECTED]
-
\ No newline at end of file
+



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gnome-themes.info,1.9,1.10

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

Modified Files:
gnome-themes.info 
Log Message:
New version.


Index: gnome-themes.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gnome-themes.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- gnome-themes.info   22 Jun 2005 06:29:16 -  1.9
+++ gnome-themes.info   16 Sep 2005 03:51:55 -  1.10
@@ -1,18 +1,17 @@
 Package: gnome-themes
-Version: 2.11.3
-Revision: 3
+Version: 2.12.0
+Revision: 1
 Depends: gnome-base, gtk+2 (= 2.4.0-1), gtk2-engines (= 2.5.0-1)
 BuildDepends: glib2-dev (= 2.6.0-1), atk1 (= 1.6.0-1), pango1-xft2-dev (= 
1.8.0-1), gtk+2-dev (= 2.4.0-1), gtk2-engines (= 2.5.0-1), pkgconfig, 
intltool, libgettext3-dev, gettext-bin, gettext-tools, libiconv-dev, x11-dev
-# removed BuildDepends: libjpeg, libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev 
(= 2.10.0-1), gconf2-dev (= 2.6.0-1), gnome-vfs2-dev (= 2.6.0-1) | 
gnome-vfs2-ssl-dev (= 2.6.0-1), libxml2 (= 2.6.7-1), libbonobo2-dev (= 
2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libgnomeui2-dev (= 2.6.0-1), popt, libart2 (= 2.3.16-1), audiofile (= 
0.2.5-1), esound (= 0.2.34-1)
-Source: mirror:gnome:sources/%n/2.11/%n-%v.tar.bz2
-Source-MD5: 534ab8b02d3f574cd1bb0d318b6da293
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 8d7a899f8c12ef9e215bd6f035cd6495
 SetCPPFLAGS: -no-cpp-precomp
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
 NoSetMAKEFLAGS: true
 SetMAKEFLAGS: -j1
 ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
 InstallScript: make install DESTDIR=%d
-DocFiles: AUTHORS COPYING ChangeLog NEWS README
+DocFiles: AUTHORS COPYING ChangeLog po/ChangeLog:ChangeLog.po NEWS README
 Description: GNOME themes
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


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

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

Modified Files:
gnome-themes.info 
Log Message:
New version.


Index: gnome-themes.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-themes.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- gnome-themes.info   22 Jun 2005 06:29:17 -  1.3
+++ gnome-themes.info   16 Sep 2005 03:51:55 -  1.4
@@ -1,18 +1,17 @@
 Package: gnome-themes
-Version: 2.11.3
-Revision: 3
+Version: 2.12.0
+Revision: 1
 Depends: gnome-base, gtk+2 (= 2.4.0-1), gtk2-engines (= 2.5.0-1)
 BuildDepends: glib2-dev (= 2.6.0-1), atk1 (= 1.6.0-1), pango1-xft2-dev (= 
1.8.0-1), gtk+2-dev (= 2.4.0-1), gtk2-engines (= 2.5.0-1), pkgconfig, 
intltool, libgettext3-dev, gettext-bin, gettext-tools, libiconv-dev, x11-dev
-# removed BuildDepends: libjpeg, libgnomecanvas2-dev (= 2.6.0-1), orbit2-dev 
(= 2.10.0-1), gconf2-dev (= 2.6.0-1), gnome-vfs2-dev (= 2.6.0-1) | 
gnome-vfs2-ssl-dev (= 2.6.0-1), libxml2 (= 2.6.7-1), libbonobo2-dev (= 
2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libgnomeui2-dev (= 2.6.0-1), popt, libart2 (= 2.3.16-1), audiofile (= 
0.2.5-1), esound (= 0.2.34-1)
-Source: mirror:gnome:sources/%n/2.11/%n-%v.tar.bz2
-Source-MD5: 534ab8b02d3f574cd1bb0d318b6da293
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 8d7a899f8c12ef9e215bd6f035cd6495
 SetCPPFLAGS: -no-cpp-precomp
 SetCFLAGS: -O3 -funroll-loops -fstrict-aliasing
 NoSetMAKEFLAGS: true
 SetMAKEFLAGS: -j1
 ConfigureParams: --libexecdir=%p/lib/%n --mandir=%p/share/man
 InstallScript: make install DESTDIR=%d
-DocFiles: AUTHORS COPYING ChangeLog NEWS README
+DocFiles: AUTHORS COPYING ChangeLog po/ChangeLog:ChangeLog.po NEWS README
 Description: GNOME themes
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.4-transitional/unstable/main/finkinfo/gnome gnome-terminal.info,1.4,1.5

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

Modified Files:
gnome-terminal.info 
Log Message:
New version.


Index: gnome-terminal.info
===
RCS file: 
/cvsroot/fink/dists/10.4-transitional/unstable/main/finkinfo/gnome/gnome-terminal.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gnome-terminal.info 19 Aug 2005 06:57:17 -  1.4
+++ gnome-terminal.info 16 Sep 2005 04:16:44 -  1.5
@@ -1,11 +1,11 @@
 Package: gnome-terminal
-Version: 2.10.0
+Version: 2.12.0
 Revision: 1
 Depends: atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound-bin 
(= 0.2.34-1), gconf2 (= 2.6.0-1), libgettext3-shlibs, glib2 (= 2.4.0-1), 
gnome-vfs2-ssl (= 2.6.0-1) | gnome-vfs2 (= 2.6.0-1), gtk+2 (= 2.5.4-1), 
libart2-shlibs (= 2.3.16-1), libbonobo2 (= 2.6.0-1), libbonoboui2 (= 
2.6.0-1), libglade2-shlibs (= 2.3.6-1), libgnome2 (= 2.6.0-1), 
libgnomecanvas2 (= 2.6.0-1), libgnomeui2 (= 2.6.0-1), libiconv, 
libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 1.4.0-1), 
popt-shlibs, scrollkeeper (= 0.3.12-2), startup-notification (= 0.8-1), vte 
(= 0.11.10-1), libncurses5-shlibs, x11
 BuildDepends: atk1 (= 1.6.0-1), audiofile (= 0.2.5-1), esound, gconf2-dev 
(= 2.6.0-1), gettext-bin, gettext-tools, libgettext3-dev, glib2-dev (= 
2.4.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
gtk+2-dev (= 2.5.4-1), intltool, libart2 (= 2.3.16-1), libbonobo2-dev (= 
2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libglade2 (= 2.3.6-1), libgnome2-dev 
(= 2.6.0-1), libgnomecanvas2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), 
libiconv-dev, libjpeg, libxml2 (= 2.6.7-1), orbit2-dev (= 2.10.0-1), 
pango1-xft2-dev (= 1.4.0-1), pkgconfig, startup-notification-dev (= 0.8-1), 
vte-dev (= 0.11.10-1), gcc3.3, popt, gnome-keyring-dev (= 0.4.3-1), 
libncurses5, x11-dev
 Conflicts: gnome-core ( 2.0.0)
-Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
-Source-MD5: 062744daca0c7f708b8c52f47b5db0d1
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 483c9397dd165845e2528a80e3df6dfc
 PatchScript: 
   perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/*/Makefile.in
 # perl -pi -e 's/CFLAGS=\$TERM_CFLAGS \$CFLAGS/CPPFLAGS=\$TERM_CFLAGS\/' 
configure
@@ -33,7 +33,7 @@
   fi
 
 ConfFiles: %p/etc/gconf/schemas/gnome-terminal.schemas
-DocFiles: AUTHORS COPYING ChangeLog HACKING NEWS README TODO
+DocFiles: AUTHORS COPYING ChangeLog po/ChangeLog:ChangeLog.po HACKING NEWS 
README TODO
 Description: The Gnome Terminal
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


dists/10.3/unstable/main/finkinfo/gnome gnome-terminal.info,1.13,1.14

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

Modified Files:
gnome-terminal.info 
Log Message:
New version.


Index: gnome-terminal.info
===
RCS file: 
/cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome/gnome-terminal.info,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- gnome-terminal.info 19 Aug 2005 06:57:16 -  1.13
+++ gnome-terminal.info 16 Sep 2005 04:16:44 -  1.14
@@ -1,11 +1,11 @@
 Package: gnome-terminal
-Version: 2.10.0
+Version: 2.12.0
 Revision: 1
 Depends: atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 0.2.5-1), esound-bin 
(= 0.2.34-1), gconf2 (= 2.6.0-1), libgettext3-shlibs, glib2 (= 2.4.0-1), 
gnome-vfs2-ssl (= 2.6.0-1) | gnome-vfs2 (= 2.6.0-1), gtk+2 (= 2.5.4-1), 
libart2-shlibs (= 2.3.16-1), libbonobo2 (= 2.6.0-1), libbonoboui2 (= 
2.6.0-1), libglade2-shlibs (= 2.3.6-1), libgnome2 (= 2.6.0-1), 
libgnomecanvas2 (= 2.6.0-1), libgnomeui2 (= 2.6.0-1), libiconv, 
libxml2-shlibs (= 2.6.7-1), orbit2 (= 2.10.0-1), pango1-xft2 (= 1.4.0-1), 
popt-shlibs, scrollkeeper (= 0.3.12-2), startup-notification (= 0.8-1), vte 
(= 0.11.10-1), libncurses5-shlibs, x11
 BuildDepends: atk1 (= 1.6.0-1), audiofile (= 0.2.5-1), esound, gconf2-dev 
(= 2.6.0-1), gettext-bin, gettext-tools, libgettext3-dev, glib2-dev (= 
2.4.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | gnome-vfs2-dev (= 2.6.0-1), 
gtk+2-dev (= 2.5.4-1), intltool, libart2 (= 2.3.16-1), libbonobo2-dev (= 
2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libglade2 (= 2.3.6-1), libgnome2-dev 
(= 2.6.0-1), libgnomecanvas2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), 
libiconv-dev, libjpeg, libxml2 (= 2.6.7-1), orbit2-dev (= 2.10.0-1), 
pango1-xft2-dev (= 1.4.0-1), pkgconfig, startup-notification-dev (= 0.8-1), 
vte-dev (= 0.11.10-1), gcc3.3, popt, gnome-keyring-dev (= 0.4.3-1), 
libncurses5, x11-dev
 Conflicts: gnome-core ( 2.0.0)
-Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
-Source-MD5: 062744daca0c7f708b8c52f47b5db0d1
+Source: mirror:gnome:sources/%n/2.12/%n-%v.tar.bz2
+Source-MD5: 483c9397dd165845e2528a80e3df6dfc
 PatchScript: 
   perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
help/*/Makefile.in
 # perl -pi -e 's/CFLAGS=\$TERM_CFLAGS \$CFLAGS/CPPFLAGS=\$TERM_CFLAGS\/' 
configure
@@ -33,7 +33,7 @@
   fi
 
 ConfFiles: %p/etc/gconf/schemas/gnome-terminal.schemas
-DocFiles: AUTHORS COPYING ChangeLog HACKING NEWS README TODO
+DocFiles: AUTHORS COPYING ChangeLog po/ChangeLog:ChangeLog.po HACKING NEWS 
README TODO
 Description: The Gnome Terminal
 License: GPL
 Maintainer: The Gnome Core Team [EMAIL PROTECTED]



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


experimental/dmacks/finkinfo/gnome gnome-media.info,NONE,1.1

2005-09-15 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo/gnome
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7674

Added Files:
gnome-media.info 
Log Message:
Needs nautilus-cd-burner=2.9.0


--- NEW FILE: gnome-media.info ---
Package: gnome-media
Version: 2.10.2
Revision: 1
Depends: %N-shlibs (= %v-%r), atk1-shlibs (= 1.6.0-1), audiofile-shlibs (= 
0.2.5-1), esound-bin (= 0.2.34-1), esound-shlibs (= 0.2.34-1), gconf2 (= 
2.6.0-1), libgettext3-shlibs, glib2 (= 2.4.0-1), gnome-vfs2-ssl (= 2.6.0-1) | 
gnome-vfs2 (= 2.6.0-1), gstreamer (= 0.8.2-1), gst-plugins (= 0.8.2-1), 
gtk+2 (= 2.4.0-1), libart2-shlibs (= 2.3.16-1), libbonobo2 (= 2.6.0-1), 
libbonoboui2 (= 2.6.0-1), libgnome2 (= 2.6.0-1), libgnomecanvas2 (= 
2.6.0-1), libgnomeui2 (= 2.6.0-1), libiconv, libxml2-shlibs (= 2.6.7-1), 
orbit2 (= 2.10.0-1), pango1-xft2 (= 1.4.0-1), popt-shlibs, x11, 
libglade2-shlibs, nautilus-cd-burner (= 2.9.0-1)
BuildDepends: esound (= 0.2.34-1), gail17-dev (= 1.6.0-1), gconf2-dev (= 
2.6.0-1), glib2-dev (= 2.4.0-1), gnome-vfs2-ssl-dev (= 2.6.0-1) | 
gnome-vfs2-dev (= 2.6.0-1), gtk+2-dev (= 2.4.0-1), gstreamer-dev (= 
0.8.2-1), gst-plugins-dev (= 0.8.2-1), libart2 (= 2.3.16-1), libbonobo2-dev 
(= 2.6.0-1), libbonoboui2-dev (= 2.6.0-1), libgnome2-dev (= 2.6.0-1), 
libgnomecanvas2-dev (= 2.6.0-1), libgnomeui2-dev (= 2.6.0-1), libjpeg, 
libxml2 (= 2.6.7-1), orbit2-dev (= 2.10.0-1), pango1-xft2-dev (= 1.4.0-1), 
pkgconfig, popt, libiconv-dev, libgettext3-dev, gettext-bin, gettext-tools, 
scrollkeeper (= 0.3.12-2), intltool, x11-dev, libglade2
Source: mirror:gnome:sources/%n/2.10/%n-%v.tar.bz2
Source-MD5: 3d73cd40cfa52c5eef882302f92c60d6
PatchScript: 
  perl -pi.bak -e s/localedir = \\$\\(libdir\\)/localedir = \\$\\(datadir\\)/ 
po/Makefile.in.in
  perl -pi.bak -e s/-scrollkeeper-update/#-scrollkeeper-update/g 
*/doc/*/Makefile.in

ConfigureParams: --mandir=%p/share/man --libexecdir=%p/lib/%n 
--disable-dependency-tracking
InstallScript: GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 make install DESTDIR=%d
PostInstScript: 
  if [ configure = $1 ]; then
scrollkeeper-update
export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
for s in CDDB-Slave2 gnome-sound-recorder; do
  gconftool-2 --makefile-install-rule %p/etc/gconf/schemas/$s.schemas 
/dev/null
done   
  fi

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

ConfFiles: 
  %p/etc/gconf/schemas/CDDB-Slave2.schemas
  %p/etc/gconf/schemas/gnome-sound-recorder.schemas

DocFiles: AUTHORS COPYING ChangeLog cddb-slave2/ChangeLog:ChangeLog.cddb-slave2 
gnome-cd/ChangeLog:ChangeLog.gnome-cd grecord/ChangeLog:ChangeLog.grecord 
gstreamer-properties/ChangeLog:ChangeLog.gstreamer-properties 
po/ChangeLog:ChangeLog.po vu-meter/ChangeLog:ChangeLog.vu-meter NEWS README
Description:GNOME Media
DescDetail: 
GNOME Media

SplitOff: 
  Package: %N-shlibs
  Depends: gnome-base
  Description: Shared libraries for gnome-media
  Files: lib/libcddb-slave2.0*.dylib
  Shlibs: %p/lib/libcddb-slave2.0.dylib 1.0.0 %N-shlibs (= 2.4.0-1)

DescPackaging: 
Although this software is distributed under the GPL, it must be labeled
as Restrictive since it depends on the restrictive package gst-plugins.

License: Restrictive
Maintainer: The Gnome Core Team [EMAIL PROTECTED]
Homepage: http://www.gnome.org/



---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. 
Download it for free - -and be entered to win a 42 plasma tv or your very
own Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits