[cvs] dists/10.4/unstable/main/finkinfo/gnome glib2-10.5.patch, NONE, 1.1 glib2-10.5.info, 1.11, 1.12

2007-11-01 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs17:/tmp/cvs-serv21684

Modified Files:
glib2-10.5.info 
Added Files:
glib2-10.5.patch 
Log Message:
Try to fix inlined functions (intended to fix compiling of pygobject2
and other packages that use glib)


Index: glib2-10.5.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2-10.5.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- glib2-10.5.info 2 Nov 2007 05:28:30 -   1.11
+++ glib2-10.5.info 2 Nov 2007 05:36:29 -   1.12
@@ -1,6 +1,6 @@
 Package: glib2
 Version: 2.12.12
-Revision: 12
+Revision: 13
 Distribution: 10.5
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
@@ -15,8 +15,8 @@
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
 Source-MD5: 0b3a42098243d054475ff6eb51ed2be1
-PatchFile: %n.patch
-PatchFile-MD5: 673df33123ec5c5772024c3d8418e5e2
+PatchFile: %n-10.5.patch
+PatchFile-MD5: ec4e3a32fa36b025bd57c4630a89fbb1
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib
@@ -137,6 +137,9 @@
Would prefer -Os, but anything above -O0 gives bad code generation
on some compilers (see radar #4874204) or cannot be compiled at all
(see: radar #5429727, #4909973; gnome bugzilla #445362, #316434)
+
+   Patch gutils.h for inline semantics of newer-gcc. See:
+   http://bugzilla.gnome.org/show_bug.cgi?id=315437 (patch #96366)
 <<
 DescPackaging: <<
Sometimes not all .pc files get created. I suspect this is due to a

--- NEW FILE: glib2-10.5.patch ---
diff -Nurd -x'*~' glib-2.12.0.orig/configure glib-2.12.0/configure
--- glib-2.12.0.orig/configure  2006-07-02 14:48:07.0 -0400
+++ glib-2.12.0/configure   2006-07-06 21:09:23.0 -0400
@@ -32118,10 +32118,11 @@
 echo "$as_me:$LINENO: result: $glib_cv___va_copy" >&5
 echo "${ECHO_T}$glib_cv___va_copy" >&6
 
-if test "x$glib_cv_va_copy" = "xyes"; then
-  g_va_copy_func=va_copy
-else if test "x$glib_cv___va_copy" = "xyes"; then
+# Prefer __va_copy, available on both gcc2 and gcc3.
+if test "x$glib_cv___va_copy" = "xyes"; then
   g_va_copy_func=__va_copy
+else if test "x$glib_cv_va_copy" = "xyes"; then
+  g_va_copy_func=va_copy
 fi
 fi
 
@@ -33544,6 +33545,9 @@
G_THREAD_CFLAGS="-D_THREAD_SAFE"
fi
;;
+   *-darwin*)
+   # Nothing needed.
+   ;;
*-dg-dgux*)  # DG/UX
G_THREAD_CFLAGS="-D_REENTRANT -D_POSIX4A_DRAFT10_SOURCE"
;;
@@ -39417,9 +39421,10 @@
 #define GLIB_MICRO_VERSION $GLIB_MICRO_VERSION
 "
 
+# Prefer __va_copy, available on both gcc2 and gcc3.
 case xyes in
-x$glib_cv_va_copy) glib_vacopy='#define G_VA_COPY  va_copy' ;;
 x$glib_cv___va_copy)   glib_vacopy='#define G_VA_COPY  __va_copy' ;;
+x$glib_cv_va_copy) glib_vacopy='#define G_VA_COPY  va_copy' ;;
 *) glib_vacopy=''
 esac
 
@@ -40704,8 +40709,11 @@
 /* gcc-2.95.x supports both gnu style and ISO varargs, but if -ansi
  * is passed ISO vararg support is turned off, and there is no work
  * around to turn it on, so we unconditionally turn it off.
+ *
+ * On darwin, use gcc macro to avoid incompatibility between gcc2
+ * and gcc3.
  */
-#if __GNUC__ == 2 && __GNUC_MINOR__ == 95
+#if (__GNUC__ == 2 && __GNUC_MINOR__ == 95) || defined (__APPLE__)
 #  undef G_HAVE_ISO_VARARGS
 #endif
 
diff -Nurd -x'*~' glib-2.12.0.orig/glib/gmem.h glib-2.12.0/glib/gmem.h
--- glib-2.12.0.orig/glib/gmem.h2006-01-25 10:51:43.0 -0500
+++ glib-2.12.0/glib/gmem.h 2006-07-06 22:49:30.0 -0400
@@ -101,7 +101,6 @@
 
 
 /* deprecated memchunks and allocators */
-#if !defined (G_DISABLE_DEPRECATED) || defined (GTK_COMPILATION) || defined 
(GDK_COMPILATION)
 typedef struct _GAllocator GAllocator;
 typedef struct _GMemChunk  GMemChunk;
 #define g_mem_chunk_create(type, pre_alloc, alloc_type)( \
@@ -141,7 +140,6 @@
 #defineG_ALLOCATOR_LIST   (1)
 #defineG_ALLOCATOR_SLIST  (2)
 #defineG_ALLOCATOR_NODE   (3)
-#endif /* G_DISABLE_DEPRECATED */
 
 G_END_DECLS
 
diff -Nurd -x'*~' glib-2.12.12.orig/glib/gutils.h glib-2.12.12/glib/gutils.h
--- glib-2.12.12.orig/glib/gutils.h 2007-05-01 19:12:44.0 -0400
+++ glib-2.12.12/glib/gutils.h  2007-11-02 01:23:41.0 -0400
@@ -96,9 +96,14 @@
 #ifdef G_IMPLEMENT_INLINES
 #  define G_INLINE_FUNC
 #  undef  G_CAN_INLINE
-#elif defined (__GNUC__) 
-#  define G_INLINE_FUNC extern inline
-#elif defined (G_CAN_INLINE) 
+#elif defined (__GNUC__)
+#  if __GNUC_PREREQ (4,2) && defined (__STDC_VERSION__) \
+   && __STDC_VERSION__ >= 199901L
+#define G_INLINE_FUNC extern __inline __attribute__ ((__gnu_inline__))
+#  else
+#define G_INLINE_FUNC extern __inline
+#  endif
+#elif defined (G_CAN_INLINE)
 #  define G_INLINE_FU

[cvs] dists/10.4/unstable/main/finkinfo/gnome glib2-10.5.info, 1.10, 1.11 glib2.info, 1.27, 1.28

2007-11-01 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs17:/tmp/cvs-serv19938

Modified Files:
glib2-10.5.info glib2.info 
Log Message:
sanity checksum for patchfile


Index: glib2-10.5.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2-10.5.info,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- glib2-10.5.info 8 Jun 2007 21:50:29 -   1.10
+++ glib2-10.5.info 2 Nov 2007 05:28:30 -   1.11
@@ -4,6 +4,7 @@
 Distribution: 10.5
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
+   fink (>= 0.24.12-1),
gettext-bin,
gettext-tools,
libgettext3-dev,
@@ -14,7 +15,8 @@
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
 Source-MD5: 0b3a42098243d054475ff6eb51ed2be1
-Patch: %n.patch
+PatchFile: %n.patch
+PatchFile-MD5: 673df33123ec5c5772024c3d8418e5e2
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib

Index: glib2.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/glib2.info,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- glib2.info  3 May 2007 03:19:11 -   1.27
+++ glib2.info  2 Nov 2007 05:28:33 -   1.28
@@ -3,6 +3,7 @@
 Revision: 2
 Depends: %N-shlibs (>= %v-%r), fink-obsolete-packages
 BuildDepends: <<
+   fink (>= 0.24.12-1),
gettext-bin,
gettext-tools,
libgettext3-dev,
@@ -13,7 +14,8 @@
 Conflicts: %N-common
 Source: mirror:gnome:sources/glib/2.12/glib-%v.tar.bz2
 Source-MD5: 0b3a42098243d054475ff6eb51ed2be1
-Patch: %n.patch
+PatchFile: %n.patch
+PatchFile-MD5: 673df33123ec5c5772024c3d8418e5e2
 NoSetCPPFLAGS: true
 NoSetLDFLAGS: true
 SetLIBS: -L%p/lib


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci cctbx.info,1.9,1.10

2007-11-01 Thread William Scott
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv17244

Modified Files:
cctbx.info 
Log Message:
version update

Index: cctbx.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/cctbx.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- cctbx.info  22 Nov 2006 17:16:39 -  1.9
+++ cctbx.info  2 Nov 2007 05:17:53 -   1.10
@@ -1,15 +1,14 @@
 Package:cctbx
-Version: 61108
-# 2006_11_08_2311
+Version: 70818
+# 2007_08_18_1856
 Revision: 1001
 GCC: 4.0
 BuildDependsOnly: false
 NoSourceDirectory: true
 NoSetLDFLAGS: true
 NoSetCPPFLAGS: true
-#Source: 
http://cci.lbl.gov/cctbx_build/results/2005_12_29_2029/cctbx_python_242_bundle.tar.gz
-Source: 
http://cci.lbl.gov/cctbx_build/results/2006_11_08_2311/cctbx_python_25_bundle.tar.gz
-Source-MD5: fde01a24360578a44a0b7b14b10cb1d1
+Source: 
http://cci.lbl.gov/cctbx_build/results/2007_08_18_1856/cctbx_bundle.tar.gz
+Source-MD5: 8d1ec7c39128c6b04be6aea5b4cb4555
 SourceRename: %n-%v.tar.gz
 Description: Computational Crystallography Toolbox
 DescDetail: <<


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink VERSION,1.92.2.7,1.92.2.8 ChangeLog,1.464.2.14,1.464.2.15

2007-11-01 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs17:/tmp/cvs-serv22446

Modified Files:
  Tag: branch_0_27
VERSION ChangeLog 
Log Message:
releasing 0.27.8


Index: VERSION
===
RCS file: /cvsroot/fink/fink/VERSION,v
retrieving revision 1.92.2.7
retrieving revision 1.92.2.8
diff -u -d -r1.92.2.7 -r1.92.2.8
--- VERSION 24 Oct 2007 18:40:04 -  1.92.2.7
+++ VERSION 2 Nov 2007 04:02:01 -   1.92.2.8
@@ -1 +1 @@
-0.27.7.cvs
+0.27.8.cvs

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.464.2.14
retrieving revision 1.464.2.15
diff -u -d -r1.464.2.14 -r1.464.2.15
--- ChangeLog   2 Nov 2007 03:08:03 -   1.464.2.14
+++ ChangeLog   2 Nov 2007 04:02:13 -   1.464.2.15
@@ -3,6 +3,8 @@
* fink.conf.5.in: backport SelfUpdateCVSTrees -> SelfUpdateTrees change
* postinstall.pl.in: if /sw/fink/10.5 exists but isn't a symlink, 
remove it
+   * VERSION: Bumped package manager version to 0.27.8, a bugfix release
+   on branch_0_27
 
 2007-10-24  Dave Morrison  <[EMAIL PROTECTED]>
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink ChangeLog,1.475,1.476 postinstall.pl.in,1.42,1.43

2007-11-01 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs17:/tmp/cvs-serv4260

Modified Files:
ChangeLog postinstall.pl.in 
Log Message:
if /sw/fink/10.5 exists but isn't a symlink, remove it


Index: postinstall.pl.in
===
RCS file: /cvsroot/fink/fink/postinstall.pl.in,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- postinstall.pl.in   24 Oct 2007 15:50:18 -  1.42
+++ postinstall.pl.in   2 Nov 2007 03:15:44 -   1.43
@@ -258,10 +258,43 @@
 
 # At present, 10.5 is a special case.
 
+my $notlink;
+
 if ($distribution eq "10.5") {
 $distroot = "10.4";
 $selfupdatetree = "10.4";
-if (not (-l "$basepath/fink/10.5")) {
+$notlink = "1";
+### we want $basepath/fink/10.5 to be a symlink, but if it already exists
+### and is *not* a symlink (or not the correct symlink), we move it out of
+### the way first
+if (-l "$basepath/fink/10.5") {
+   if (readlink("$basepath/fink/10.5") eq "10.4") {
+   $notlink = "0";
+   }
+}
+if (-e "$basepath/fink/10.5") {
+   if (-e "$basepath/fink/10.5.old") {
+  my $aanswer = &prompt_boolean("\nWARNING: you have an obsolete file 
or directory $basepath/fink/10.5.old which must be removed before the 
installation can continue; do you want to remove it now?\n", default => 1, 
timeout => 60);
+  if ($aanswer) {
+   if (&execute("/bin/rm -rf $basepath/fink/10.5.old")) {
+   print "ERROR: Cannot remove $basepath/fink/10.5.old\n";
+   exit 1;
+   }
+  } else {
+  print "\nOK: please run 'fink reinstall fink' when you are ready 
to have this file or directory deleted.\n\n";
+  exit 1;
+  }
+  
+   }
+   if ($notlink) {
+   if (&execute("/bin/mv $basepath/fink/10.5 
$basepath/fink/10.5.old")) {
+   print "ERROR: Can't move $basepath/fink/10.5 to 
$basepath/fink/10.5.old\n";
+   exit 1;
+   }
+   print "\nWARNING: An unexpected file or directory 
$basepath/fink/10.5 was found,\nand was moved to $basepath/fink/10.5.old .  It 
will be deleted the next time\nfink is updated, unless you have deleted it 
yourself before then.\n\n";
+   }
+}
+if ($notlink) {
if (&execute("ln -s 10.4 $basepath/fink/10.5")) {
print "ERROR: Can't create link from 10.4 to $basepath/fink/10.5\n";
exit 1;

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.475
retrieving revision 1.476
diff -u -d -r1.475 -r1.476
--- ChangeLog   24 Oct 2007 18:01:21 -  1.475
+++ ChangeLog   2 Nov 2007 03:15:18 -   1.476
@@ -1,3 +1,8 @@
+2007-11-01  Dave Morrison  <[EMAIL PROTECTED]>
+
+   * postinstall.pl.in: if /sw/fink/10.5 exists but isn't a symlink, 
+   remove it
+
 2007-10-24  Dave Morrison  <[EMAIL PROTECTED]>
 
* postinstall.pl.in: better documentation, and cp -> cp -f; only try


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink ChangeLog, 1.464.2.13, 1.464.2.14 fink.conf.5.in, 1.43.2.1, 1.43.2.2 postinstall.pl.in, 1.38.6.4, 1.38.6.5

2007-11-01 Thread David R. Morrison
Update of /cvsroot/fink/fink
In directory sc8-pr-cvs17:/tmp/cvs-serv1532

Modified Files:
  Tag: branch_0_27
ChangeLog fink.conf.5.in postinstall.pl.in 
Log Message:
Backport SelfUpdateCVSTrees -> SelfUpdateTrees change in fink.conf.5
In postinstall, if /sw/fink/10.5 exists but isn't a symlink, remove it.


Index: fink.conf.5.in
===
RCS file: /cvsroot/fink/fink/fink.conf.5.in,v
retrieving revision 1.43.2.1
retrieving revision 1.43.2.2
diff -u -d -r1.43.2.1 -r1.43.2.2
--- fink.conf.5.in  19 Mar 2007 16:58:01 -  1.43.2.1
+++ fink.conf.5.in  2 Nov 2007 03:08:51 -   1.43.2.2
@@ -215,8 +215,8 @@
 access from the fink repository. This has the disadvantage that cvs can not 
switch mirrors, if the server is unavailable you will not be able to update.
 .Nm point
 will download only the latest released version of the packages. It is not 
recommended as your packages may be quite out of date.
-.It Cm SelfUpdateCVSTrees: Ar list of trees
-By default, the CVS selfupdate method will update only the current
+.It Cm SelfUpdateTrees: Ar list of trees
+By default, the selfupdate methods will update only the current
 distribution's tree.  This option overrides the list of distribution
 versions that will be updated during a selfupdate.
 .Pp

Index: postinstall.pl.in
===
RCS file: /cvsroot/fink/fink/postinstall.pl.in,v
retrieving revision 1.38.6.4
retrieving revision 1.38.6.5
diff -u -d -r1.38.6.4 -r1.38.6.5
--- postinstall.pl.in   24 Oct 2007 15:51:30 -  1.38.6.4
+++ postinstall.pl.in   2 Nov 2007 03:09:14 -   1.38.6.5
@@ -258,10 +258,43 @@
 
 # At present, 10.5 is a special case.
 
+my $notlink;
+
 if ($distribution eq "10.5") {
 $distroot = "10.4";
 $selfupdatetree = "10.4";
-if (not (-l "$basepath/fink/10.5")) {
+$notlink = "1";
+### we want $basepath/fink/10.5 to be a symlink, but if it already exists
+### and is *not* a symlink (or not the correct symlink), we move it out of
+### the way first
+if (-l "$basepath/fink/10.5") {
+   if (readlink("$basepath/fink/10.5") eq "10.4") {
+   $notlink = "0";
+   }
+}
+if (-e "$basepath/fink/10.5") {
+   if (-e "$basepath/fink/10.5.old") {
+  my $aanswer = &prompt_boolean("\nWARNING: you have an obsolete file 
or directory $basepath/fink/10.5.old which must be removed before the 
installation can continue; do you want to remove it now?\n", default => 1, 
timeout => 60);
+  if ($aanswer) {
+   if (&execute("/bin/rm -rf $basepath/fink/10.5.old")) {
+   print "ERROR: Cannot remove $basepath/fink/10.5.old\n";
+   exit 1;
+   }
+  } else {
+  print "\nOK: please run 'fink reinstall fink' when you are ready 
to have this file or directory deleted.\n\n";
+  exit 1;
+  }
+  
+   }
+   if ($notlink) {
+   if (&execute("/bin/mv $basepath/fink/10.5 
$basepath/fink/10.5.old")) {
+   print "ERROR: Can't move $basepath/fink/10.5 to 
$basepath/fink/10.5.old\n";
+   exit 1;
+   }
+   print "\nWARNING: An unexpected file or directory 
$basepath/fink/10.5 was found,\nand was moved to $basepath/fink/10.5.old .  It 
will be deleted the next time\nfink is updated, unless you have deleted it 
yourself before then.\n\n";
+   }
+}
+if ($notlink) {
if (&execute("ln -s 10.4 $basepath/fink/10.5")) {
print "ERROR: Can't create link from 10.4 to $basepath/fink/10.5\n";
exit 1;

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/ChangeLog,v
retrieving revision 1.464.2.13
retrieving revision 1.464.2.14
diff -u -d -r1.464.2.13 -r1.464.2.14
--- ChangeLog   24 Oct 2007 18:40:04 -  1.464.2.13
+++ ChangeLog   2 Nov 2007 03:08:03 -   1.464.2.14
@@ -1,3 +1,9 @@
+2007-11-01  Dave Morrison  <[EMAIL PROTECTED]>
+
+   * fink.conf.5.in: backport SelfUpdateCVSTrees -> SelfUpdateTrees change
+   * postinstall.pl.in: if /sw/fink/10.5 exists but isn't a symlink, 
+   remove it
+
 2007-10-24  Dave Morrison  <[EMAIL PROTECTED]>
 
* postinstall.pl.in: better documentation, and cp -> cp -f; only try


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink/perlmod/Fink PkgVersion.pm, 1.603, 1.604 ChangeLog, 1.1513, 1.1514 Bootstrap.pm, 1.161, 1.162

2007-11-01 Thread David R. Morrison
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs17:/tmp/cvs-serv27800

Modified Files:
PkgVersion.pm ChangeLog Bootstrap.pm 
Log Message:
improved messages


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.603
retrieving revision 1.604
diff -u -d -r1.603 -r1.604
--- PkgVersion.pm   16 Oct 2007 18:29:29 -  1.603
+++ PkgVersion.pm   2 Nov 2007 02:49:12 -   1.604
@@ -4967,11 +4967,11 @@
$error .= "\n\nBefore reporting any errors, please run 
\"fink selfupdate\" and\n" .
"try again.  If you continue to have issues, 
please check to see if the\n" .
"FAQ on fink's website solves the problem.  If 
not, ask on the fink-users\n" .
-   "or fink-beginners mailing lists.  As a last 
resort, you can try e-mailing\n".
-   "the maintainer directly:\n\n".
+   "or fink-beginners mailing lists, with a carbon 
copy to the maintainer:\n\n".
"\t" . $self->param('maintainer') . "\n\n";
-$error .= "Note that many fink package maintainers do not have access to all 
possible\n" .
-   "hardware configurations, so you may have better luck on the mailing 
lists.\n\n";
+$error .= "Note that this is preferable to emailing the maintainer directly, 
since\n" .
+   "most fink package maintainers do not have access to all possible\n" .
+   "hardware and software configurations.\n\n";
}
die $error . "\n";
}

Index: Bootstrap.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Bootstrap.pm,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -d -r1.161 -r1.162
--- Bootstrap.pm24 Oct 2007 17:59:59 -  1.161
+++ Bootstrap.pm2 Nov 2007 02:53:38 -   1.162
@@ -249,11 +249,11 @@
&print_breaking($transitional_message{$transitional});
$distribution = "10.4$transitional";
} elsif ($host =~ /^(powerpc|i386)-apple-darwin9\.0/) {
-   &print_breaking("This is the first fink release which can be " .
+   &print_breaking("\nThis is one of the first fink releases which 
can be " .
 "used with Mac OS X 10.5.  We support bootstrapping with this " .
 "version, and we expect that upgrading from 10.4 will go " .
 "smoothly with this version.  However, DIRECT UPGRADING FROM " .
-   "10.4-transitional, 10.3 OR EARLIER IS NOT SUPPORTED.");
+   "10.4-transitional, 10.3 OR EARLIER IS NOT 
SUPPORTED.\n\n");
$distribution = "10.5";
} elsif ($host =~ /^(powerpc|i386)-apple-darwin9\./) {
&print_breaking("This system was not released at the time " .

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1513
retrieving revision 1.1514
diff -u -d -r1.1513 -r1.1514
--- ChangeLog   27 Oct 2007 17:07:55 -  1.1513
+++ ChangeLog   2 Nov 2007 02:51:49 -   1.1514
@@ -1,3 +1,8 @@
+2007-11-01  Dave Morrison  <[EMAIL PROTECTED]>
+
+   * Bootstrap.pm: improved message about the state of fink on leopard
+   * PkgVersion.pm: improved message to users when a build fails
+
 2007-10-27  Benjamin Reed  <[EMAIL PROTECTED]>
 
* Services.pm: some leopard/xcode upgrades end up leaving


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] fink/perlmod/Fink PkgVersion.pm, 1.587.4.5, 1.587.4.6 Bootstrap.pm, 1.153.2.8, 1.153.2.9 ChangeLog, 1.1441.2.24, 1.1441.2.25

2007-11-01 Thread David R. Morrison
Update of /cvsroot/fink/fink/perlmod/Fink
In directory sc8-pr-cvs17:/tmp/cvs-serv19315

Modified Files:
  Tag: branch_0_27
PkgVersion.pm Bootstrap.pm ChangeLog 
Log Message:
improved messages


Index: PkgVersion.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/PkgVersion.pm,v
retrieving revision 1.587.4.5
retrieving revision 1.587.4.6
diff -u -d -r1.587.4.5 -r1.587.4.6
--- PkgVersion.pm   2 Sep 2007 19:49:48 -   1.587.4.5
+++ PkgVersion.pm   2 Nov 2007 02:20:23 -   1.587.4.6
@@ -4915,11 +4915,11 @@
$error .= "\n\nBefore reporting any errors, please run 
\"fink selfupdate\" and\n" .
"try again.  If you continue to have issues, 
please check to see if the\n" .
"FAQ on fink's website solves the problem.  If 
not, ask on the fink-users\n" .
-   "or fink-beginners mailing lists.  As a last 
resort, you can try e-mailing\n".
-   "the maintainer directly:\n\n".
+   "or fink-beginners mailing lists, with a carbon 
copy to the maintainer:\n\n".
"\t" . $self->param('maintainer') . "\n\n";
-$error .= "Note that many fink package maintainers do not have access to all 
possible\n" .
-   "hardware configurations, so you may have better luck on the mailing 
lists.\n\n";
+$error .= "Note that this is preferable to emailing the maintainer directly, 
since\n" .
+"most fink package maintainers do not have access to all 
possible\n" .
+"hardware and software configurations.\n\n";
}
die $error . "\n";
}

Index: Bootstrap.pm
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/Bootstrap.pm,v
retrieving revision 1.153.2.8
retrieving revision 1.153.2.9
diff -u -d -r1.153.2.8 -r1.153.2.9
--- Bootstrap.pm24 Oct 2007 17:57:42 -  1.153.2.8
+++ Bootstrap.pm2 Nov 2007 02:23:39 -   1.153.2.9
@@ -249,11 +249,11 @@
&print_breaking($transitional_message{$transitional});
$distribution = "10.4$transitional";
} elsif ($host =~ /^(powerpc|i386)-apple-darwin9\.0/) {
-   &print_breaking("This is the first fink release which can be " .
+   &print_breaking("\nThis is one of the first fink releases which 
can be " .
 "used with Mac OS X 10.5.  We support bootstrapping with this " .
 "version, and we expect that upgrading from 10.4 will go " .
 "smoothly with this version.  However, DIRECT UPGRADING FROM " .
-   "10.4-transitional, 10.3 OR EARLIER IS NOT SUPPORTED.");
+   "10.4-transitional, 10.3 OR EARLIER IS NOT 
SUPPORTED.\n\n");
$distribution = "10.5";
} elsif ($host =~ /^(powerpc|i386)-apple-darwin9\./) {
&print_breaking("This system was not released at the time " .

Index: ChangeLog
===
RCS file: /cvsroot/fink/fink/perlmod/Fink/ChangeLog,v
retrieving revision 1.1441.2.24
retrieving revision 1.1441.2.25
diff -u -d -r1.1441.2.24 -r1.1441.2.25
--- ChangeLog   29 Oct 2007 19:56:21 -  1.1441.2.24
+++ ChangeLog   2 Nov 2007 02:24:54 -   1.1441.2.25
@@ -1,3 +1,8 @@
+2007-11-01  Dave Morrison  <[EMAIL PROTECTED]>
+
+   * Bootstrap.pm: improved message about the state of fink on leopard
+   * PkgVersion.pm: improved message to users when a build fails
+
 2007-10-29  Daniel Macks  <[EMAIL PROTECTED]>
 
* Engine.pm: For cleanup_deb, only look at filename, not


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/libs/perlmods error-pm.info, 1.3, 1.4

2007-11-01 Thread Christian Schaffner
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods
In directory sc8-pr-cvs17:/tmp/cvs-serv26030

Modified Files:
error-pm.info 
Log Message:
New upstream version (0.17009)


Index: error-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/libs/perlmods/error-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- error-pm.info   15 Nov 2006 23:58:44 -  1.3
+++ error-pm.info   1 Nov 2007 22:54:37 -   1.4
@@ -1,5 +1,5 @@
 Package: error-pm
-Version: 0.17.008
+Version: 0.17.009
 Revision: 1
 Description: Perl module for error/exception handling
 Type: perl
@@ -7,8 +7,8 @@
 Maintainer: Christian Schaffner <[EMAIL PROTECTED]>
 
 # Unpack Phase:
-Source: mirror:cpan:authors/id/S/SH/SHLOMIF/Error-0.17008.tar.gz
-Source-MD5: 647134e1aeb5893a4d08d711c858308b
+Source: mirror:cpan:authors/id/S/SH/SHLOMIF/Error-0.17009.tar.gz
+Source-MD5: aad8c0deacf2f1e9fdb9cc6c428acd92
 
 # Install Phase:
 UpdatePOD: true


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/utils cb2bib.info,1.3,1.4

2007-11-01 Thread jack
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils
In directory sc8-pr-cvs17:/tmp/cvs-serv26887/unstable/main/finkinfo/utils

Modified Files:
cb2bib.info 
Log Message:
new version

Index: cb2bib.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/utils/cb2bib.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- cb2bib.info 7 Sep 2007 08:22:48 -   1.3
+++ cb2bib.info 1 Nov 2007 21:15:18 -   1.4
@@ -1,15 +1,15 @@
 Package: cb2bib
-Version: 0.8.4
+Version: 0.9.0
 Revision: 1002
 Source: http://www.molspaces.com/dl/progs/%n-%v.tar.gz
-Depends: freetype219-shlibs, glib2-shlibs, libgettext3-shlibs, 
qt4-x11-core-shlibs, qt4-x11-gui-shlibs, x11, x11-shlibs, libpng3-shlibs, 
libiconv
-BuildDepends: libpng3, freetype219, glib2-dev, libgettext3-dev, qt4-x11, 
x11-dev, libiconv-dev
+Depends: freetype219-shlibs, glib2-shlibs, libgettext3-shlibs, 
qt4-x11-core-shlibs, qt4-x11-gui-shlibs, x11, x11-shlibs, libpng3-shlibs, 
libiconv, fontconfig2-shlibs
+BuildDepends: libpng3, freetype219, glib2-dev, libgettext3-dev, qt4-x11, 
x11-dev, libiconv-dev, fontconfig2-dev
 GCC: 4.0
 Maintainer: Jack Fink <[EMAIL PROTECTED]>
 Homepage: http://www.molspaces.com/d_cb2bib-overview.php
 License: GPL
 Description: Fast extractor for bibliographic references, uses Qt4
-Source-MD5: 75d26c49e72c5f125bbe1162a791b9c7
+Source-MD5: 3add16c196a602870e01ea87b42d9ff1
 PatchScript: <<
perl -pi -e "s,/usr/share/,%i/share/,g" cb2bib.pro
%p/lib/qt4-x11/bin/qmake cb2bib.pro


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/gnome gnome-applets.info, 1.3.2.46, 1.3.2.47

2007-11-01 Thread Jean-Fran�ois Mertens
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs17:/tmp/cvs-serv21478

Modified Files:
  Tag: pangocairo-branch
gnome-applets.info 
Log Message:
further deps

Index: gnome-applets.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gnome-applets.info,v
retrieving revision 1.3.2.46
retrieving revision 1.3.2.47
diff -u -d -r1.3.2.46 -r1.3.2.47
--- gnome-applets.info  28 Sep 2007 16:15:18 -  1.3.2.46
+++ gnome-applets.info  1 Nov 2007 16:56:33 -   1.3.2.47
@@ -7,6 +7,9 @@
gconf2 (>= 2.20.0-1),
gnome-base,
gnome-panel (>= 2.20.0-1),
+   gst-plugins-base-0.10-shlibs,
+   gstreamer-0.10-shlibs,
+   gucharmap6-shlibs,
scrollkeeper (>= 0.3.11-4)
 <<
 BuildDepends: <<
@@ -30,10 +33,14 @@
gnome-keyring-dev (>= 0.8.1-1),
gnome-panel-dev (>= 2.20.0-1),
gnome-vfs2-unified-dev (>= 1:2.20.0-1),
+   gst-plugins-base-0.10-dev,
+   gstreamer-0.10-dev,
+   gucharmap6-dev,
gtk+2-dev (>= 2.12.0-1),
gtk-doc (>= 1.8-1),
intltool (>= 0.36.0-1),
libart2 (>= 2.3.16-1),
+   libavahi-glib1-dev,
libbonobo2-dev (>= 2.20.0-1),
libbonoboui2-dev (>= 2.20.0-1),
libgettext3-dev,
@@ -87,6 +94,9 @@
Depends: <<
gail18-shlibs (>= 1.20.0-1),
gnome-panel-shlibs (>= 2.20.0-1),
+   libavahi-client3-shlibs,
+   libavahi-common3-shlibs,
+   libavahi-glib1-shlibs,
libgtop2.0.7-shlibs (>= 2.20.0-1),
libxklavier11-shlibs
<<


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci gdl.info,1.12,1.13

2007-11-01 Thread Sebastien Maret
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv27734

Modified Files:
gdl.info 
Log Message:
Use hdf5 and plplot version that were compiled with gfortran. Also use
fftw3 instead of GSL built-in FFT.


Index: gdl.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/gdl.info,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- gdl.info14 Oct 2007 00:01:09 -  1.12
+++ gdl.info1 Nov 2007 16:00:51 -   1.13
@@ -1,31 +1,30 @@
 Package: gdl
 Version: 0.9pre5
-Revision: 1001
-Distribution: 10.4
+Revision: 1002
+Distribution: 10.4, 10.5
 Description: GNU Data Language
 License: GPL
 Maintainer: Sebastien Maret <[EMAIL PROTECTED]>
 Depends: <<
-  bzip2-shlibs, gsl-shlibs, hdf5-shlibs (>= 1.6.5-1002),
+  bzip2-shlibs, gsl-shlibs, fftw3-shlibs (>= 3.1.1-5), hdf5-shlibs (>= 
1.6.5-1010),
   imagemagick-shlibs (>= 6.1.8-1002), lcms-shlibs, libiconv,
   libjpeg-shlibs, libncurses5-shlibs (>= 5.4-20041023-1006),
   libpng3-shlibs, libtiff-shlibs, libtool14-shlibs, libxml2-shlibs,
   ncurses (>= 5.4-20041023-1006), netcdf-shlibs (>= 3.6.0-1002),
-  matplotlib-py25, numarray-py25, plplot, plplot-shlibs, python25,
-  python25-shlibs, readline5-shlibs (>= 5.0-1004), szip-shlibs,
-  x11-shlibs
+  matplotlib-py25, numarray-py25, plplot (>= 5.6.1-1008),
+  plplot-shlibs (>= 5.6.1-1008), python25, python25-shlibs,
+  readline5-shlibs (>= 5.0-1004), szip-shlibs, x11-shlibs
 <<
 BuildDepends: <<
-  bzip2-dev, gsl, hdf5 (>= 1.6.5-1002),
+  bzip2-dev, gsl, fftw3 (>= 3.1.1-5), hdf5 (>= 1.6.5-1010),
   imagemagick-dev (>= 6.1.8-1002), lcms, libiconv-dev, libjpeg,
   libncurses5 (>= 5.4-20041023-1006), libpng3, libtiff, libtool14,
-  libxml2, netcdf (>= 3.6.0-1002), plplot-dev, qhull, 
+  libxml2, netcdf (>= 3.6.0-1002), plplot-dev (>= 5.6.1-1008), qhull, 
   readline5 (>= 5.0-1004), szip, x11-dev 
 <<
 Source: mirror:sourceforge:gnudatalanguage/gdl-%v.tar.gz
 Source-MD5: d2a740ba633ff7ace23f452d34a9c42c
-#Patch: %n.patch
-ConfigureParams: --with-plplotdir=%p --with-ncursesdir=%p 
--with-readlinedir=%p --with-gsldir=%p --with-netcdf=%p --without-hdf 
--with-hdf5=%p --with-python=%p --enable-python_version=2.5 --with-Magick=%p
+ConfigureParams: --with-plplotdir=%p --with-ncursesdir=%p 
--with-readlinedir=%p --with-gsldir=%p --with-netcdf=%p --without-hdf 
--with-hdf5=%p --with-python=%p --enable-python_version=2.5 --with-Magick=%p 
--with-fftw=%p
 InstallScript: <<
   make install prefix=%i
   mkdir -p %i/share/doc/%n


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci plplot.info,1.23,1.24

2007-11-01 Thread Sebastien Maret
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv23815

Modified Files:
plplot.info 
Log Message:
Use versions of fftw3 and hdf5 that were compiled with gfortran.


Index: plplot.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/plplot.info,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- plplot.info 29 Oct 2007 20:32:23 -  1.23
+++ plplot.info 1 Nov 2007 15:51:59 -   1.24
@@ -1,9 +1,9 @@
 Package: plplot
 Version: 5.6.1
-Revision: 1007
+Revision: 1008
 Distribution: 10.4, 10.5
 
-BuildDepends: readline5, freetype219, libiconv-dev, libncurses5, gd2, gd2-bin, 
libjpeg, libpng3, libiconv-dev, x11-dev, hdf5 (>= 1.6.5-1002), fftw3, 
system-java14-dev, aquaterm-dev (>= 1.0.0-1002), pango1-xft2 (>= 1.6.0), 
lasi-dev (>= 1.0.5-1005), gcc42, xml-sax-expat-pm586, openjade, glib2-dev (>= 
2.12.0-1)
+BuildDepends: readline5, freetype219, libiconv-dev, libncurses5, gd2, gd2-bin, 
libjpeg, libpng3, libiconv-dev, x11-dev, hdf5 (>= 1.6.5-1010), fftw3 (>= 
3.1.1-5), system-java14-dev, aquaterm-dev (>= 1.0.0-1002), pango1-xft2 (>= 
1.6.0), lasi-dev (>= 1.0.5-1005), gcc42, xml-sax-expat-pm586, openjade, 
glib2-dev (>= 2.12.0-1)
 Depends: %N-shlibs (= %v-%r), %N-dev (= %v-%r), freetype219-shlibs, 
libncurses5-shlibs, libiconv, tcltk, tcltk-shlibs, python, python25, 
numeric-py25, gd2-shlibs, libjpeg-shlibs, libpng3-shlibs, x11, pkgconfig, 
qhull, system-java14, tcltk-dev, aquaterm (>= 1.0.0-1002), octave, lasi (>= 
1.0.5-1005), lasi-shlibs (>= 1.0.5-1005), glib2-shlibs (>= 2.12.0-1), 
pango1-xft2-shlibs (>= 1.6.0), gcc42-shlibs
 #BuildConflicts: ccache-default
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci octave.info,1.24,1.25

2007-11-01 Thread Sebastien Maret
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv21335

Modified Files:
octave.info 
Log Message:
Use gfortran instead of g95.


Index: octave.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/octave.info,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -d -r1.24 -r1.25
--- octave.info 14 Oct 2007 00:01:09 -  1.24
+++ octave.info 1 Nov 2007 15:45:12 -   1.25
@@ -1,24 +1,21 @@
 Package: octave
 Version: 2.9.14
-Revision: 1
-Distribution: 10.4
+Revision: 2
+Distribution: 10.4, 10.5
 Maintainer: Jeffrey Whitaker <[EMAIL PROTECTED]>
 BuildDependsOnly: false
 Source: ftp://ftp.octave.org/pub/octave/bleeding-edge/octave-%v.tar.gz
 Source-MD5: b3253a5e21f114a96183b4fef31a5a41
-BuildDepends: glpk-dev, hdf5, readline5, texinfo, g95 (>= 0.50-20060321), 
libncurses5, fftw3, texi2html, tetex-base, libcurl4, sed, pcre
-Depends: glpk-shlibs, gnuplot | gnuplot-nox, readline5-shlibs, fftw3-shlibs, 
hdf5-shlibs, ncurses, libncurses5-shlibs, aquaterm, libcurl4-shlibs, pcre-shlibs
+BuildDepends: glpk-dev, hdf5 (>= 1.6.5-1010), readline5, texinfo, libncurses5, 
fftw3 (>= 3.1.1-5), texi2html, tetex-base, libcurl4, sed, pcre
+Depends: glpk-shlibs, gnuplot | gnuplot-nox, readline5-shlibs, fftw3-shlibs 
(>= 3.1.1-5), hdf5-shlibs (>= 1.6.5-1010), ncurses, libncurses5-shlibs, 
aquaterm, libcurl4-shlibs, pcre-shlibs
 BuildConflicts: coot-dev, broken-gcc, lammpi-dev
 GCC: 4.0
 Patch: %n.patch
 Conflicts: octave-atlas
 Replaces: octave-atlas
-ConfigureParams: --with-f77=%p/bin/g95 --infodir='${prefix}/share/info' 
--mandir='${prefix}/share/man' --libexecdir='${prefix}/lib' -enable-shared 
-enable-dl --disable-static --build=%m-apple-darwin
+ConfigureParams: --with-f77=%p/bin/gfortran --infodir='${prefix}/share/info' 
--mandir='${prefix}/share/man' --libexecdir='${prefix}/lib' -enable-shared 
-enable-dl --disable-static --build=%m-apple-darwin
 CompileScript: <<
  #!/bin/sh -ev
- gcclib=`%p/bin/g95 --print-lib`
- FLIBDIR=`dirname $gcclib`
- export FLIBS="-L${FLIBDIR} -lf95"
  export FFLAGS='-O2'
  ./configure %c
  make


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci hdf5.info,1.11,1.12

2007-11-01 Thread Sebastien Maret
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv19355

Modified Files:
hdf5.info 
Log Message:
Use gfortran instead of g95.


Index: hdf5.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/hdf5.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- hdf5.info   14 Oct 2007 00:01:09 -  1.11
+++ hdf5.info   1 Nov 2007 15:40:42 -   1.12
@@ -1,7 +1,7 @@
 Package: hdf5
 Version: 1.6.5
-Revision: 1009
-Distribution: 10.4
+Revision: 1010
+Distribution: 10.4, 10.5
 Source: ftp://hdf.ncsa.uiuc.edu/HDF5/current/src/%n-%v.tar.gz
 Source-MD5: 67187b3253b89f1f41756b7fd4396ecf
 Description: Library and file format for scientific data
@@ -10,11 +10,11 @@
 and to address current and anticipated requirements of modern systems
 and applications. 
 
-The fortran9X interface is built using g95.
-It will only work with g95.
+The fortran9X interface is built using gfortran.
+It will only work with gfortran.
 <<
 Depends: %N-shlibs (= %v-%r), %N-bin, szip-shlibs (>= 2.0-2)
-BuildDepends: szip (>= 2.0-2), g95 (>= 0.50-20060528)
+BuildDepends: szip (>= 2.0-2), gcc42
 GCC: 4.0
 BuildDependsOnly: True
 PatchScript: <<
@@ -27,8 +27,8 @@
 License: OSI-Approved
 CompileScript: <<
   #!/bin/sh -ev
-  export F9X=%p/bin/g95
-  export FFLAGS="-O -Wno-globals"
+  export F9X=%p/bin/gfortran
+  export FFLAGS='-fsecond-underscore'
   ./configure %c
   make
   #make check


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/unstable/main/finkinfo/sci fftw3.info,1.11,1.12

2007-11-01 Thread Sebastien Maret
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv18534

Modified Files:
fftw3.info 
Log Message:
Use gfortran instead of g95.


Index: fftw3.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/fftw3.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- fftw3.info  14 Oct 2007 00:01:09 -  1.11
+++ fftw3.info  1 Nov 2007 15:38:58 -   1.12
@@ -1,11 +1,11 @@
 Package: fftw3
 Version: 3.1.1  
-Revision: 4
-Distribution: 10.4
+Revision: 5
+Distribution: 10.4, 10.5
 Maintainer: Jeffrey Whitaker <[EMAIL PROTECTED]>
 Source:  ftp://ftp.fftw.org/pub/fftw/fftw-%v.tar.gz
 Source-MD5: b35813b88a046e4e74a603017794ddcd
-BuildDepends:  g95 (>= 0.50-20060321), ocaml
+BuildDepends:  gcc42, ocaml
 Depends: %N-shlibs (= %v-%r)
 BuildDependsOnly: True
 License: GPL
@@ -14,12 +14,12 @@
 GCC: 4.0
 CompileScript: <<
  #!/bin/sh -ev
- gcclib=`%p/bin/g95 --print-lib`
+ gcclib=`%p/bin/gfortran --print-lib`
  FLIBDIR=`dirname $gcclib`
  if [ %m = "i386" ]; then 
- FC=%p/bin/g95 FLIBS="-L${FLIBDIR} -lf95" ./configure %c --without-gcc-arch
+ FC=%p/bin/gfortran FLIBS="-L${FLIBDIR}" ./configure %c --without-gcc-arch
  else
- FC=%p/bin/g95 FLIBS="-L${FLIBDIR} -lf95" ./configure %c 
+ FC=%p/bin/gfortran FLIBS="-L${FLIBDIR}" ./configure %c 
  fi
  make
 <<


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs