Update of /cvsroot/fink/packages/dists/unstable/main/finkinfo/gnome
In directory usw-pr-cvs1:/tmp/cvs-serv29029
Added Files:
gtkhtml-1.0.2-1.info gtkhtml-1.0.2-1.patch
Log Message:
New upstream version.
--- NEW FILE: gtkhtml-1.0.2-1.info ---
Package: gtkhtml
Version: 1.0.2
Revision: 1
Source: mirror:gnome:unstable/sources/%n/%n-%v.tar.bz2
Depends: %N-shlibs (= %v-%r)
BuildDepends: gal19, gdk-pixbuf, freetype2, audiofile, db3, esound, glib, gtk+,
libjpeg, libpng, libtiff, netpbm, orbit, readline, imlib, bonobo-dev,
control-center-dev, gconf-dev, glibwww, gnome-libs-dev, gnome-print-dev,
oaf-dev, guile-dev, libwww, libxml, popt, libglade, gnome-vfs-dev |
gnome-vfs-ssl-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
SetCFLAGS: -O3
ConfigureParams: --disable-static --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.1-2)
Files: lib/libgtkhtml.*.dylib
DocFiles: AUTHORS BUGS COPYING* ChangeLog NEWS README TODO
<<
SplitOff2: <<
Package: %N-dev
BuildDependsOnly: True
Depends: %N-shlibs (= %v-%r)
Replaces: %N (<= 1.0.1-2)
Files: lib/libgtkhtml.dylib lib/libgtkhtml.la include
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 <msek@xxxxxxxxxxxxxxxxxxxxx>
Homepage: http://www.gnome.org/
--- NEW FILE: gtkhtml-1.0.2-1.patch ---
diff -Naur gtkhtml-1.0.2.old/components/html-editor/Makefile.in
gtkhtml-1.0.2.tmp/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.tmp/components/html-editor/Makefile.in Sat May 25
22:09:22 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 = \
@EDITOR_SHLIB_TRUE@xxxxxxxxxxxxxxxx Editor-skels.lo Editor-stubs.lo \
-@EDITOR_SHLIB_TRUE@Spell-common.lo Spell-skels.lo Spell-stubs.lo \
+@EDITOR_SHLIB_TRUE@SpellI-common.lo SpellI-skels.lo SpellI-stubs.lo \
@EDITOR_SHLIB_TRUE@xxxxxxx cell.lo control-data.lo dialog.lo \
@EDITOR_SHLIB_TRUE@xxxxxxxxxxxxxxxxxxxxxxxxx engine.lo image.lo link.lo \
@EDITOR_SHLIB_TRUE@xxxxxxxxxx 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.tmp/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.tmp/components/html-editor/Spell-common.c Sat May 25
22:09:22 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.tmp/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.tmp/components/html-editor/Spell-skels.c Sat May 25
22:09:22 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.tmp/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.tmp/components/html-editor/Spell-stubs.c Sat May 25
22:09:22 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.tmp/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.tmp/components/html-editor/control-data.h Sat May 25
22:09:22 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.tmp/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.tmp/components/http-storage-module/Makefile.in Sat May
25 22:09:22 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.tmp/configure
--- gtkhtml-1.0.2.old/configure Wed Mar 20 02:28:29 2002
+++ gtkhtml-1.0.2.tmp/configure Sat May 25 22:12:59 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
-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
_______________________________________________________________
Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm
|