Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs1:/tmp/cvs-serv19583/10.3/unstable/main/finkinfo/gnome

Added Files:
        gal19.info gal19.patch 
Removed Files:
        gal19-0.19.2-13.info gal19-0.19.2-13.patch 
Log Message:
gal cleanup

--- NEW FILE: gal19.info ---
Package: gal19
Version: 0.19.2
Revision: 14
Source: mirror:gnome:sources/gal/0.19/gal-%v.tar.bz2
Source-MD5: 6f17b857bc69fde0902481b3d2af475e
Depends: %N-shlibs (= %v-%r), gtk+, gnome-print (>= 0.36-14), gnome-vfs (>= 1.0.5-18) 
| gnome-vfs-ssl (>= 1.0.5-19)
BuildDepends: gdk-pixbuf, libjpeg, libtiff, netpbm, audiofile, db3 (>= 3.3.11-8), 
esound, glib, orbit-dev, readline (>= 4.3-15), giflib, imlib, gconf (>= 1.0.9-11), 
gconf-dev (>= 1.0.9-11), gnome-libs-dev (>= 1.4.2-17), gnome-print-dev (>= 0.36-14), 
oaf-dev, guile-dev (>= 1.4-16), libxml, popt, libglade, gnome-vfs-dev (>= 1.0.5-18) | 
gnome-vfs-ssl-dev (>= 1.0.5-18), dlcompat-dev, gettext-dev, gettext-bin, libiconv-dev
#GCC: 3.3
Replaces: gal, gal21
Conflicts: gal21
Patch: %n.patch
UpdatePoMakefile: true
SetCPPFLAGS: -no-cpp-precomp
SetCFLAGS: -O3 -fstrict-aliasing -funroll-loops
NoSetMAKEFLAGS: true
SetMAKEFLAGS: -j1
InstallScript: make install DESTDIR=%d
SplitOff: <<
  Package: %N-shlibs
  Depends: gtk+-shlibs
  Provides: %N-common
  Replaces: gal, gal-shlibs, %N-data, %N-common, %N (<< 0.19.2-2)
  Conflicts: %N-data, %N-common
  Files: lib/libgal.*.dylib share/gal/%v share/locale
  Shlibs: %p/lib/libgal.19.dylib 20.0.0 %n (>= 0.19.2-13)
  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.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  Wed Nov 20 00:33:44 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/art/Makefile.in gal-0.19.2.new/art/Makefile.in
--- gal-0.19.2.old/art/Makefile.in      Fri Apr 19 06:59:49 2002
+++ gal-0.19.2.new/art/Makefile.in      Wed Nov 20 02:11:40 2002
@@ -145,7 +145,7 @@
 gnomelocaledir = @gnomelocaledir@
 l = @l@
 
-imagesdir = $(datadir)/pixmaps/gal/categories
+imagesdir = $(datadir)/gal/$(VERSION)/pixmaps/categories
 images_DATA =          category_birthday_16.png                        
category_business_16.png                        category_favorites_16.png              
         category_gifts_16.png                           category_goals_16.png         
                  category_holiday_16.png                         
category_holiday-cards_16.png                   category_hot-contacts_16.png           
         category_ideas_16.png                           category_international_16.png 
                  category_key-customer_16.png                    
category_miscellaneous_16.png                   category_personal_16.png               
         category_phonecalls_16.png                      category_status_16.png        
                  category_strategies_16.png                      
category_suppliers_16.png                       category_time-and-expenses_16.png
 
 
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    Wed Nov 20 00:33:44 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)
 {
diff -Naur gal-0.19.2.old/gal/widgets/Makefile.in 
gal-0.19.2.new/gal/widgets/Makefile.in
--- gal-0.19.2.old/gal/widgets/Makefile.in      Fri Apr 19 06:59:12 2002
+++ gal-0.19.2.new/gal/widgets/Makefile.in      Wed Nov 20 02:12:20 2002
@@ -159,7 +159,7 @@
 glade_DATA =   gal-categories.glade                            
e-categories-master-list-dialog.glade
 
 
-imagesdir = $(datadir)/pixmaps/gal/categories
+imagesdir = $(datadir)/gal/$(VERSION)/pixmaps/categories
 
 libwidgetsincludedir = $(includedir)/gal/widgets
 

--- gal19-0.19.2-13.info DELETED ---

--- gal19-0.19.2-13.patch DELETED ---




-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to