Repost goffice-0.3.0-patch.diff, with gtk-doc.m4 included.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15007 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2006-10-11 17:09:32 +00:00
parent da4829b5c4
commit 198a2df8eb
2 changed files with 105 additions and 49 deletions

View File

@ -1,18 +1,55 @@
diff -ur goffice-0.3.0/configure.in goffice-0.3.0-mingw/configure.in
--- goffice-0.3.0/configure.in Mon Apr 17 19:15:44 2006
+++ goffice-0.3.0-mingw/configure.in Fri Aug 25 14:32:11 2006
@@ -226,6 +226,8 @@
diff -Nur goffice-0.3.0-old/configure.in goffice-0.3.0/configure.in
--- goffice-0.3.0-old/configure.in Mon Apr 17 19:15:44 2006
+++ goffice-0.3.0/configure.in Wed Oct 11 16:56:52 2006
@@ -93,6 +93,7 @@
libxml-2.0 >= 2.4.12
pango >= 1.8.1
pangoft2 >= 1.8.1
+ freetype2 >= 2.1.0
libart-2.0 >= 2.3.11
"
goffice_cairo_reqs="
@@ -225,6 +226,8 @@
AC_MSG_RESULT($with_win32)
AM_CONDITIONAL(WITH_WIN32, test $with_win32 = yes)
AM_CONDITIONAL(HAVE_LIBEXE, test x$LIBEXE = xyes)
+AC_CHECK_HEADERS([pwd.h grp.h])
+
+AC_CHECK_HEADERS([pwd.h grp.h])
dnl *****************************
dnl FIXME: perhaps declare with AC_ARG_VAR?
dnl If we use the initial value of a variable, we have to make it precious.
diff -ur goffice-0.3.0/goffice/utils/go-file.c goffice-0.3.0-mingw/goffice/utils/go-file.c
--- goffice-0.3.0/goffice/utils/go-file.c Wed Mar 29 15:41:37 2006
+++ goffice-0.3.0-mingw/goffice/utils/go-file.c Fri Aug 25 13:11:41 2006
diff -Nur goffice-0.3.0-old/goffice/Makefile.am goffice-0.3.0/goffice/Makefile.am
--- goffice-0.3.0-old/goffice/Makefile.am Mon Apr 17 20:53:01 2006
+++ goffice-0.3.0/goffice/Makefile.am Wed Oct 11 16:56:52 2006
@@ -30,7 +30,7 @@
if WITH_WIN32
libgoffice_0_la_DEPENDENCIES = goffice.def
libgoffice_0_la_LDFLAGS += -no-undefined -export-symbols goffice.def
-libgoffice_0_la_LIBADD += -luuid -lhtmlhelp -lurlmon
+libgoffice_0_la_LIBADD += -luuid
endif
BUILT_SOURCES = goffice-paths.h
@@ -66,14 +66,14 @@
include $(top_srcdir)/goffice.mk
if WITH_WIN32
-LIB_PUBLIC_HDRS = $(libgoffice_1_la_HEADERS)
+LIB_PUBLIC_HDRS = $(libgoffice_0_la_HEADERS)
goffice.def: local.def app/local.def \
cut-n-paste/foocanvas/local.def \
data/local.def drawing/local.def graph/local.def \
gtk/local.def ms-compat/local.def utils/local.def
echo EXPORTS > $@ && \
- cat $^ | sort >> $@
+ cat $^ | sort | sed '/^go_doc_mark_not_modified$$/d;/^go_plugin_init$$/d;/^go_plugin_shutdown$$/d' >> $@
if HAVE_LIBEXE
goffice_mslibdir = $(DESTDIR)$(libdir)
diff -Nur goffice-0.3.0-old/goffice/utils/go-file.c goffice-0.3.0/goffice/utils/go-file.c
--- goffice-0.3.0-old/goffice/utils/go-file.c Wed Mar 29 15:41:37 2006
+++ goffice-0.3.0/goffice/utils/go-file.c Wed Oct 11 16:56:52 2006
@@ -44,8 +44,12 @@
#include <string.h>
#include <stdlib.h>
@ -93,41 +130,60 @@ diff -ur goffice-0.3.0/goffice/utils/go-file.c goffice-0.3.0-mingw/goffice/utils
}
GOFilePermissions *
--- goffice-0.3.0/configure.in~ Sat Aug 26 00:15:26 2006
+++ goffice-0.3.0/configure.in Sat Aug 26 00:53:34 2006
@@ -93,6 +93,7 @@
libxml-2.0 >= 2.4.12
pango >= 1.8.1
pangoft2 >= 1.8.1
+ freetype2 >= 2.1.0
libart-2.0 >= 2.3.11
"
goffice_cairo_reqs="
--- goffice-0.3.0/goffice/Makefile.am~ Sat Aug 26 20:52:04 2006
+++ goffice-0.3.0/goffice/Makefile.am Sat Aug 26 20:58:53 2006
@@ -30,7 +30,7 @@
if WITH_WIN32
libgoffice_0_la_DEPENDENCIES = goffice.def
libgoffice_0_la_LDFLAGS += -no-undefined -export-symbols goffice.def
-libgoffice_0_la_LIBADD += -luuid -lhtmlhelp -lurlmon
+libgoffice_0_la_LIBADD += -luuid
endif
BUILT_SOURCES = goffice-paths.h
@@ -66,14 +66,14 @@
include $(top_srcdir)/goffice.mk
if WITH_WIN32
-LIB_PUBLIC_HDRS = $(libgoffice_1_la_HEADERS)
+LIB_PUBLIC_HDRS = $(libgoffice_0_la_HEADERS)
goffice.def: local.def app/local.def \
cut-n-paste/foocanvas/local.def \
data/local.def drawing/local.def graph/local.def \
gtk/local.def ms-compat/local.def utils/local.def
echo EXPORTS > $@ && \
- cat $^ | sort >> $@
+ cat $^ | sort | sed '/^go_doc_mark_not_modified$$/d;/^go_plugin_init$$/d;/^go_plugin_shutdown$$/d' >> $@
if HAVE_LIBEXE
goffice_mslibdir = $(DESTDIR)$(libdir)
diff -Nur goffice-0.3.0-old/gtk-doc.m4 goffice-0.3.0/gtk-doc.m4
--- goffice-0.3.0-old/gtk-doc.m4 Thu Jan 1 00:00:00 1970
+++ goffice-0.3.0/gtk-doc.m4 Wed Oct 11 16:57:21 2006
@@ -0,0 +1,53 @@
+dnl -*- mode: autoconf -*-
+
+# serial 1
+
+dnl Usage:
+dnl GTK_DOC_CHECK([minimum-gtk-doc-version])
+AC_DEFUN([GTK_DOC_CHECK],
+[
+ AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
+ AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
+ dnl for overriding the documentation installation directory
+ AC_ARG_WITH(html-dir,
+ AC_HELP_STRING([--with-html-dir=PATH], [path to installed docs]),,
+ [with_html_dir='${datadir}/gtk-doc/html'])
+ HTML_DIR="$with_html_dir"
+ AC_SUBST(HTML_DIR)
+
+ dnl enable/disable documentation building
+ AC_ARG_ENABLE(gtk-doc,
+ AC_HELP_STRING([--enable-gtk-doc],
+ [use gtk-doc to build documentation [default=no]]),,
+ enable_gtk_doc=no)
+
+ have_gtk_doc=no
+ if test x$enable_gtk_doc = xyes; then
+ if test -z "$PKG_CONFIG"; then
+ AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+ fi
+ if test "$PKG_CONFIG" != "no" && $PKG_CONFIG --exists gtk-doc; then
+ have_gtk_doc=yes
+ fi
+
+ dnl do we want to do a version check?
+ifelse([$1],[],,
+ [gtk_doc_min_version=$1
+ if test "$have_gtk_doc" = yes; then
+ AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
+ if $PKG_CONFIG --atleast-version $gtk_doc_min_version gtk-doc; then
+ AC_MSG_RESULT(yes)
+ else
+ AC_MSG_RESULT(no)
+ have_gtk_doc=no
+ fi
+ fi
+])
+ if test "$have_gtk_doc" != yes; then
+ enable_gtk_doc=no
+ fi
+ fi
+
+ AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
+ AM_CONDITIONAL(GTK_DOC_USE_LIBTOOL, test -n "$LIBTOOL")
+])

View File

@ -664,7 +664,7 @@ function inst_goffice() {
[ -n "$GOFFICE_PATCH" -a -f "$GOFFICE_PATCH" ] && \
patch -p1 < $GOFFICE_PATCH
${LIBTOOLIZE} --force
aclocal ${ACLOCAL_FLAGS}
aclocal ${ACLOCAL_FLAGS} -I .
automake
autoconf
./configure ${HOST_XCOMPILE} --prefix=$_GOFFICE_UDIR \