Update of /cvsroot/fink/dists/10.2/unstable/main/finkinfo/gnome
In directory usw-pr-cvs1:/tmp/cvs-serv6538/gnome
Added Files:
gal19-0.19.2-1.info gal19-0.19.2-1.patch gnumeric-1.0.9-1.info
gnumeric-1.0.9-1.patch
Log Message:
ready for 10.2
--- NEW FILE: gal19-0.19.2-1.info ---
Package: gal19
Version: 0.19.2
Revision: 1
Source: mirror:gnome:unstable/sources/gal/gal-%v.tar.bz2
Depends: %N-shlibs (= %v-%r), gtk+, gnome-print (>= 0.35), gnome-vfs
BuildDepends: gdk-pixbuf, freetype2, libjpeg, libpng, libtiff, netpbm, audiofile, db3,
esound, glib, orbit, readline, giflib, imlib, gconf-dev, gnome-libs-dev,
gnome-print-dev, oaf-dev, guile-dev, libxml, popt, libglade, gnome-vfs-dev |
gnome-vfs-ssl-dev
Replaces: gal
Patch: %f.patch
UpdatePoMakefile: true
SetCPPFLAGS: -no-cpp-precomp
InstallScript: make install DESTDIR=%d
SplitOff: <<
Package: %N-shlibs
Depends: %N-common, gtk+-shlibs
Replaces: gal, gal-shlibs
Files: lib/libgal.*.dylib
DocFiles: AUTHORS COPYING* ChangeLog MAINTAINERS NEWS README
<<
SplitOff2: <<
Package: %N-common
Provides: %N-data
Replaces: %N-data, gal, gal-data
Conflicts: %N-data
Files: share/locale share/pixmaps
DocFiles: AUTHORS COPYING* ChangeLog MAINTAINERS NEWS README
<<
DocFiles: AUTHORS COPYING* ChangeLog MAINTAINERS NEWS README
Description: GNOME application library
DescDetail: Reuseable GNOME library functions.
DescPort: <<
Add localtime_r().
Disabled building of test programs.
<<
License: GPL/LGPL
Maintainer: Masanori Sekino <[EMAIL PROTECTED]>
Homepage: http://www.gnome.org/
--- NEW FILE: gal19-0.19.2-1.patch ---
diff -Naur gal-0.19.2.old/Makefile.in gal-0.19.2.new/Makefile.in
--- gal-0.19.2.old/Makefile.in Fri Apr 19 06:59:06 2002
+++ gal-0.19.2.new/Makefile.in Fri May 17 21:52:58 2002
@@ -145,7 +145,7 @@
gnomelocaledir = @gnomelocaledir@
l = @l@
-SUBDIRS = gal po intl tests docs art
+SUBDIRS = gal po intl docs art
confexecdir = $(libdir)
confexec_DATA = galConf.sh
diff -Naur gal-0.19.2.old/gal/e-table/e-cell-date.c
gal-0.19.2.new/gal/e-table/e-cell-date.c
--- gal-0.19.2.old/gal/e-table/e-cell-date.c Sat Oct 27 03:25:46 2001
+++ gal-0.19.2.new/gal/e-table/e-cell-date.c Fri May 17 21:52:58 2002
@@ -36,6 +36,34 @@
static ECellTextClass *parent_class;
+#ifndef HAVE_LOCALTIME_R
+#include <pthread.h>
+
+static struct tm *
+localtime_r(const time_t *const timep, struct tm *p_tm)
+{
+ static pthread_mutex_t time_mutex;
+ static int time_mutex_inited = 0;
+ struct tm *tmp;
+
+ if (!time_mutex_inited) {
+ time_mutex_inited = 1;
+ pthread_mutex_init(&time_mutex, NULL); /* creates the mutex */
+ }
+
+ pthread_mutex_lock(&time_mutex);
+ tmp = localtime(timep);
+ if (tmp) {
+ memcpy(p_tm, tmp, sizeof(struct tm));
+ tmp = p_tm;
+ }
+ pthread_mutex_unlock(&time_mutex);
+
+ return tmp;
+}
+
+#endif /* !HAVE_LOCALTIME_R */
+
static char *
ecd_get_text(ECellText *cell, ETableModel *model, int col, int row)
{
--- NEW FILE: gnumeric-1.0.9-1.info ---
Package: gnumeric
Version: 1.0.9
Revision: 1
Depends: bonobo-shlibs (>= 1.0.9), gal19-shlibs (>= 0.10.40-2), glib-shlibs,
gnome-libs-shlibs, gnome-print-shlibs, gtk+-shlibs, libglade-shlibs, libole2-shlibs
(>= 0.2.4-1), libxml-shlibs
BuildDepends: bonobo (>= 1.0.9), bonobo-dev, libxml2 (>= 2.4.13), gal19, gdk-pixbuf
(>= 0.16.0-3), freetype2, libjpeg, libpng, libtiff, netpbm, audiofile, db3, esound,
orbit, readline, giflib, imlib, gdbm, gmp, gconf-dev, gnome-libs, gnome-libs-dev,
gnome-print, gnome-print-dev, oaf-dev, expat, guile-dev, popt, tcltk-dev, glib, gtk+,
libglade, libxml, libole2, scrollkeeper
Source: gnome
Source-MD5: be386f1730c3efb236efdbecac8e2722
Patch: %f.patch
SetCPPFLAGS: -no-cpp-precomp
ConfigureParams: --without-guile --without-evolution --without-gb --without-gda
--without-python
DocFiles: ABOUT-NLS AUTHORS BUGS COPYING ChangeLog HACKING INSTALL MAINTAINERS NEWS
OChangeLog* README TODO
ConfFiles: %p/lib/gnumericConf.sh
License: GPL
Description: Spreadsheet program for gnome, reads many formats
DescDetail: <<
Spreadsheet program for gnome, reads many spreadsheet formats.
There were reports that for earlier versions of this package, importing
Excel spreadsheets didn't work (due to lack of shared library support).
More recent reports suggest that this is now working. There have been
no reports, positive or negative, about working with other spreadsheet
formats.
If gnumeric crashes when you move the mouse, you must rebuild some of
the dependent libraries. This is easily done with the "fix-fink"
utility in the "utils" directory of fink. (The cause is some older
packages which are linked to an outdated version, 50.0.0, of
libSystem.B.dylib .)
<<
DescPort: <<
Leaving out guile support until guile 1.5 is released.
Support for evolution, gb, gda, python may be added later.
Patches:
1) In case the user has a Gnu-Darwin installation with a langinfo.h
file in /usr/include, we disable the search for a langinfo.h file via
config.cache.
2) Patched ./configure for gcc3 compatibility.
<<
DescPackaging: <<
Given the way that the libxml libraries are packaged in fink, gnumeric uses
the libxml library with libxml2 includes, which seems to be a kind of "partial
upgrade mode" for libxml.
<<
Homepage: http://www.gnome.org/projects/gnumeric/
Maintainer: Dave Morrison <[EMAIL PROTECTED]>
--- NEW FILE: gnumeric-1.0.9-1.patch ---
diff -ruN gnumeric-1.0.7/config.cache gnumeric-1.0.7-patched/config.cache
--- gnumeric-1.0.7/config.cache 1969-12-31 19:00:00.000000000 -0500
+++ gnumeric-1.0.7-patched/config.cache 2002-06-16 21:06:29.000000000 -0400
@@ -0,0 +1 @@
+ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=no}
diff -ruN gnumeric-1.0.7/configure gnumeric-1.0.7-patched/configure
--- gnumeric-1.0.7/configure 2002-06-02 23:32:39.000000000 -0400
+++ gnumeric-1.0.7-patched/configure 2002-06-16 21:06:50.000000000 -0400
@@ -4006,7 +4006,7 @@
# cross-compilation, but unfortunately the echo tests do not
# yet detect zsh echo's removal of \ escapes. Also zsh mangles
# `"' quotes if we put them in here... so don't!
- archive_cmds='$nonopt $(test .$module = .yes && echo -bundle || echo -dynamiclib)
$allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name
$rpath/$soname $verstring'
+ archive_cmds='$nonopt $(test .$module = .yes && echo -bundle || echo -dynamiclib)
+$allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags $(test .$module != .yes
+&& echo -install_name $rpath/$soname $verstring)'
# We need to add '_' to the symbols in $export_symbols first
#archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
hardcode_direct=yes
-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone? Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits