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

Added Files:
        gal19-0.19.2-2.info gal19-0.19.2-2.patch gtkhtml-1.0.2-3.info 
        gtkhtml-1.0.2-3.patch 
Log Message:
Better splitoff.

--- NEW FILE: gal19-0.19.2-2.info ---
Package: gal19
Version: 0.19.2
Revision: 2
Source: mirror:gnome:sources/gal/0.19/gal-%v.tar.bz2
Source-MD5: 6f17b857bc69fde0902481b3d2af475e
Depends: %N-shlibs (= %v-%r), gtk+, gnome-print (>= 0.35), gnome-vfs
BuildDepends: gdk-pixbuf, freetype2, libjpeg, libpng, libtiff, netpbm, audiofile, db3 
(>= 3.3.11-8), esound, glib, orbit, readline (>= 4.3-5), giflib, imlib, gconf-dev, 
gnome-libs-dev, gnome-print-dev, oaf-dev, guile-dev, libxml, popt, libglade, 
gnome-vfs-dev | gnome-vfs-ssl-dev, dlcompat-dev
Replaces: gal, gal21
Conflicts: gal21
Patch: %f.patch
UpdatePoMakefile: true
SetCPPFLAGS: -no-cpp-precomp
SetCFLAGS: -O3 -fstrict-aliasing -funroll-loops
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-1)
  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-2.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
 

--- NEW FILE: gtkhtml-1.0.2-3.info ---
Package: gtkhtml
Version: 1.0.2
Revision: 3
Source: mirror:gnome:sources/%n/1.0/%n-%v.tar.bz2
Source-MD5: 2220ffd7834c52177708599579531c23
Depends: %N-shlibs (= %v-%r), libghttp-shlibs, control-center-shlibs
BuildDepends: gal19, gdk-pixbuf, freetype2, audiofile, db3 (>= 3.3.11-8), esound, 
glib, gtk+, libjpeg, libpng, libtiff, netpbm, orbit, readline (>= 4.3-5), imlib, 
bonobo-dev, control-center-dev, gconf-dev, glibwww, gnome-libs-dev, gnome-print-dev, 
oaf-dev, guile-dev, libwww, libxml, popt, libglade, libghttp, gnome-vfs-dev | 
gnome-vfs-ssl-dev, dlcompat-dev
Patch: %f.patch
PatchScript: mv components/html-editor/Spell.idl components/html-editor/SpellI.idl
UpdatePoMakefile: true
NoSetLDFLAGS: true
SetLIBS: -L%p/lib
SetCPPFLAGS: -no-cpp-precomp
ConfigureParams: --with-gconf --with-bonobo
InstallScript: <<
make install DESTDIR=%d
rm -rf %i/share/control-center/capplets
<<
SplitOff: <<
  Package: %N-shlibs
  Depends: gal19-shlibs, gconf (>= 1.0.7-1), control-center, gnome-print, glibwww, 
bonobo
  Replaces: %N (<= 1.0.2-3)
  Files: lib/libgtkhtml.*.dylib share/locale share/gtkhtml
  Shlibs: %p/lib/libgtkhtml.21.dylib 21.0.0 %n (>= 1.0.2-2)
  DocFiles: AUTHORS BUGS COPYING* ChangeLog NEWS README TODO
<<
SplitOff2: <<
  Package: %N-dev
  BuildDependsOnly: True
  Depends: %N-shlibs (= %v-%r)
  Replaces: %N (<< 1.0.2-2)
  Files: include lib/libgtkhtml.* lib/*.sh
  DocFiles: AUTHORS BUGS COPYING* ChangeLog NEWS README TODO
<<
DocFiles: AUTHORS BUGS COPYING* ChangeLog NEWS README TODO
Description: HTML rendering/printing/editing engine.
DescDetail: <<
This is GtkHTML, a lightweight HTML rendering/printing/editing engine.
It was originally based on KHTMLW, but is now being developed
independently of it.
<<
DescPort: <<
Renamed Spell.idl to SpellI.idl, because it will overwrite spell.h.
Added -module libtool flag to http-storage-module.
Fixed declaration and definition mismatch.

testgtkhtml uses functions from libwww, but doesn't ensure the
appropriate libraries are listed on the link command line. The quick
fix is to get the flags from libwww-config on the fly in the
Makefile.
<<
License: GPL/LGPL
Maintainer: Masanori Sekino <[EMAIL PROTECTED]>
Homepage: http://www.gnome.org/

--- NEW FILE: gtkhtml-1.0.2-3.patch ---
diff -Naur gtkhtml-1.0.2.old/components/html-editor/Makefile.in 
gtkhtml-1.0.2.new/components/html-editor/Makefile.in
--- gtkhtml-1.0.2.old/components/html-editor/Makefile.in        Wed Mar 20 02:29:02 
2002
+++ gtkhtml-1.0.2.new/components/html-editor/Makefile.in        Wed Jun 12 21:41:49 
+2002
@@ -153,13 +153,13 @@
 IDLS =         Editor.idl
 
 
-SPELL_IDLS =   Spell.idl
+SPELL_IDLS =   SpellI.idl
 
 
 IDL_GENERATED =        Editor.h                        Editor-common.c         
Editor-skels.c          Editor-stubs.c
 
 
-SPELL_IDL_GENERATED =          Spell.h                         Spell-common.c         
         Spell-skels.c                   Spell-stubs.c
+SPELL_IDL_GENERATED =          SpellI.h                                
+SpellI-common.c                 SpellI-skels.c                  SpellI-stubs.c
 
 
 LDFLAGS = @LDFLAGS@ -dynamic
@@ -223,7 +223,7 @@
 libgnome_gtkhtml_editor_la_LIBADD = 
 @EDITOR_SHLIB_TRUE@libgnome_gtkhtml_editor_la_OBJECTS =  \
 @[EMAIL PROTECTED] Editor-skels.lo Editor-stubs.lo \
-@[EMAIL PROTECTED] Spell-skels.lo Spell-stubs.lo \
+@[EMAIL PROTECTED] SpellI-skels.lo SpellI-stubs.lo \
 @[EMAIL PROTECTED] cell.lo control-data.lo dialog.lo \
 @[EMAIL PROTECTED] engine.lo image.lo link.lo \
 @[EMAIL PROTECTED] paragraph.lo persist-file-impl.lo \
@@ -239,8 +239,8 @@
 
 @EDITOR_SHLIB_FALSE@gnome_gtkhtml_editor_OBJECTS =  \
 @EDITOR_SHLIB_FALSE@Editor-common.$(OBJEXT) Editor-skels.$(OBJEXT) \
-@EDITOR_SHLIB_FALSE@Editor-stubs.$(OBJEXT) Spell-common.$(OBJEXT) \
-@EDITOR_SHLIB_FALSE@Spell-skels.$(OBJEXT) Spell-stubs.$(OBJEXT) \
+@EDITOR_SHLIB_FALSE@Editor-stubs.$(OBJEXT) SpellI-common.$(OBJEXT) \
+@EDITOR_SHLIB_FALSE@SpellI-skels.$(OBJEXT) SpellI-stubs.$(OBJEXT) \
 @EDITOR_SHLIB_FALSE@body.$(OBJEXT) cell.$(OBJEXT) \
 @EDITOR_SHLIB_FALSE@control-data.$(OBJEXT) dialog.$(OBJEXT) \
 @EDITOR_SHLIB_FALSE@editor-control-factory.$(OBJEXT) engine.$(OBJEXT) \
@@ -621,7 +621,7 @@
 
 
 Editor-common.o: Editor.h
-Spell-common.o: Spell.h
+SpellI-common.o: SpellI.h
 
 $(IDL_GENERATED): $(IDLS)
        $(ORBIT_IDL) -I$(datadir)/idl `$(GNOME_CONFIG) --cflags idl`    \
@@ -629,7 +629,7 @@
 
 $(SPELL_IDL_GENERATED): $(SPELL_IDLS)
        $(ORBIT_IDL) -I$(datadir)/idl `$(GNOME_CONFIG) --cflags idl`    \
-               -I$(srcdir) $(srcdir)/Spell.idl
+               -I$(srcdir) $(srcdir)/SpellI.idl
 
 @XML_I18N_MERGE_OAF_RULE@
 
diff -Naur gtkhtml-1.0.2.old/components/html-editor/Spell-common.c 
gtkhtml-1.0.2.new/components/html-editor/Spell-common.c
--- gtkhtml-1.0.2.old/components/html-editor/Spell-common.c     Tue Mar 19 02:02:52 
2002
+++ gtkhtml-1.0.2.new/components/html-editor/Spell-common.c     Wed Jun 12 21:41:49 
+2002
@@ -3,7 +3,7 @@
  */
 
 #include <string.h>
-#include "Spell.h"
+#include "SpellI.h"
 
 #if ( (TC_IMPL_TC_CORBA_sequence_CORBA_string_0 == 'S') \
 && (TC_IMPL_TC_CORBA_sequence_CORBA_string_1 == 'p') \
diff -Naur gtkhtml-1.0.2.old/components/html-editor/Spell-skels.c 
gtkhtml-1.0.2.new/components/html-editor/Spell-skels.c
--- gtkhtml-1.0.2.old/components/html-editor/Spell-skels.c      Tue Mar 19 02:02:52 
2002
+++ gtkhtml-1.0.2.new/components/html-editor/Spell-skels.c      Wed Jun 12 21:41:49 
+2002
@@ -3,7 +3,7 @@
  */
 
 #include <string.h>
-#include "Spell.h"
+#include "SpellI.h"
 
 void
 _ORBIT_GNOME_Spell_Dictionary_Error_marshal(GIOPSendBuffer *
diff -Naur gtkhtml-1.0.2.old/components/html-editor/Spell-stubs.c 
gtkhtml-1.0.2.new/components/html-editor/Spell-stubs.c
--- gtkhtml-1.0.2.old/components/html-editor/Spell-stubs.c      Tue Mar 19 02:02:52 
2002
+++ gtkhtml-1.0.2.new/components/html-editor/Spell-stubs.c      Wed Jun 12 21:41:49 
+2002
@@ -3,7 +3,7 @@
  */
 
 #include <string.h>
-#include "Spell.h"
+#include "SpellI.h"
 
 void
 _ORBIT_GNOME_Spell_Dictionary_Error_demarshal(GIOPRecvBuffer *
diff -Naur gtkhtml-1.0.2.old/components/html-editor/control-data.h 
gtkhtml-1.0.2.new/components/html-editor/control-data.h
--- gtkhtml-1.0.2.old/components/html-editor/control-data.h     Tue Mar 19 01:56:08 
2002
+++ gtkhtml-1.0.2.new/components/html-editor/control-data.h     Wed Jun 12 21:41:49 
+2002
@@ -37,7 +37,7 @@
 #include "link.h"
 #include "rule.h"
 #include "engine.h"
-#include "Spell.h"
+#include "SpellI.h"
 
 struct _GtkHTMLControlData {
        GtkHTML    *html;
diff -Naur gtkhtml-1.0.2.old/components/http-storage-module/Makefile.in 
gtkhtml-1.0.2.new/components/http-storage-module/Makefile.in
--- gtkhtml-1.0.2.old/components/http-storage-module/Makefile.in        Wed Mar 20 
02:29:04 2002
+++ gtkhtml-1.0.2.new/components/http-storage-module/Makefile.in        Wed Jun 12 
+21:41:49 2002
@@ -145,7 +145,7 @@
 INCLUDES =          -DGNOMELOCALEDIR=\""$(datadir)/locale"\"           -I$(srcdir) 
-I$(top_srcdir)                             -I$(top_builddir)                          
             -DPLUGIN_DIR=\""$(PLUGIN_DIR)"\"                        -I$(includedir)   
                                      $(EXTRA_GNOME_CFLAGS)
 
 
-common_ldflags = -avoid-version
+common_ldflags = -module -avoid-version
 
 bonobo_plugindir = $(PLUGIN_DIR)
 bonobo_plugin_LTLIBRARIES = libstorage_http.la
diff -Naur gtkhtml-1.0.2.old/configure gtkhtml-1.0.2.new/configure
--- gtkhtml-1.0.2.old/configure Wed Mar 20 02:28:29 2002
+++ gtkhtml-1.0.2.new/configure Wed Jun 12 21:42:10 2002
@@ -5042,7 +5042,7 @@
     # FIXME: Relying on posixy $() will cause problems for
     #        cross-compilation, but unfortunately the echo tests do not
     #        yet detect zsh echo's removal of \ escapes.
-    archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo 
-dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags 
-install_name $rpath/$soname $verstring'
+    archive_cmds='$nonopt $(test x$module = xyes && 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
@@ -9483,7 +9483,7 @@
 echo "${ECHO_T}found" >&6
 
                GLIBWWW_CFLAGS="`gnome-config --cflags glibwww`"
-               GLIBWWW_LIBS="`gnome-config --libs glibwww` -lwwwhtml -lmd5"
+               GLIBWWW_LIBS="`gnome-config --libs glibwww` `libwww-config --libs`"
 
                have_glibwww=true
        else



-------------------------------------------------------
This sf.net email is sponsored by: 
Battle your brains against the best in the Thawte Crypto 
Challenge. Be the first to crack the code - register now: 
http://www.gothawte.com/rd521.html
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to