aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2001-04-24 00:06:53 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2001-04-24 00:06:53 +0800
commitc8ace927b9b707522b663a086b3dc14eab69ad1f (patch)
treec3c7432b8104d0ca4c54060020ae7577c2d8302d
parent5edc698826b041d423ba8b6b6c3387bf7aba2627 (diff)
downloadgsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar.gz
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar.bz2
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar.lz
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar.xz
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.tar.zst
gsoc2013-evolution-c8ace927b9b707522b663a086b3dc14eab69ad1f.zip
Documentation building fixes merged from the evolution-0-10-branch:
Get the docs to build and install properly. Temporarily disable the importer devel docs as they seem to be pretty broken. svn path=/trunk/; revision=9507
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am2
-rw-r--r--configure.in1
-rw-r--r--doc/C/Makefile.am19
-rw-r--r--doc/ChangeLog8
-rw-r--r--doc/devel/ChangeLog7
-rw-r--r--doc/devel/Makefile.am8
-rw-r--r--doc/devel/evolution-devel-guide.sgml10
-rw-r--r--help/C/Makefile.am19
-rw-r--r--help/ChangeLog8
-rw-r--r--help/devel/ChangeLog7
-rw-r--r--help/devel/Makefile.am8
-rw-r--r--help/devel/evolution-devel-guide.sgml10
13 files changed, 76 insertions, 38 deletions
diff --git a/ChangeLog b/ChangeLog
index beb65c8587..91d2e43607 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-04-23 Ettore Perazzoli <ettore@ximian.com>
+
+ * configure.in: Don't autogen the the Makefile for the importer
+ docs.
+
+ * Makefile.am (SUBDIRS): Build the docs last.
+
2001-04-21 Jeffrey Stedfast <fejj@ximian.com>
* configure.in (have_nspr_libs): We need to link in more than just
diff --git a/Makefile.am b/Makefile.am
index 316f53fbfd..84f9d63131 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -14,7 +14,6 @@ EXTRA_DIST = \
xml-i18n-extract.in
SUBDIRS = \
- doc \
intl \
macros \
data \
@@ -37,4 +36,5 @@ SUBDIRS = \
default_user \
views \
tools \
+ doc \
po
diff --git a/configure.in b/configure.in
index 3417efbdab..1810e6e986 100644
--- a/configure.in
+++ b/configure.in
@@ -812,7 +812,6 @@ doc/devel/calendar/Makefile
doc/devel/calendar/cal-client/Makefile
doc/devel/calendar/cal-util/Makefile
doc/devel/executive-summary/Makefile
-doc/devel/importer/Makefile
])
if test "x$with_sub_version" != "x"; then
diff --git a/doc/C/Makefile.am b/doc/C/Makefile.am
index 88b71fcb0b..486a10ca58 100644
--- a/doc/C/Makefile.am
+++ b/doc/C/Makefile.am
@@ -1,6 +1,7 @@
evolution_helpdir = $(datadir)/gnome/help/evolution/C
SGML_FILES = \
+ evolution.sgml \
apx-authors.sgml \
apx-bugs.sgml \
apx-gloss.sgml \
@@ -15,25 +16,25 @@ SGML_FILES = \
usage-sync.sgml
-EXTRA_DIST = \
+EXTRA_DIST = \
$(SGML_FILES)
all: evolution-guide
evolution-guide: $(SGML_FILES)
- -db2html evolution-guide.sgml
+ -db2html evolution.sgml
dist-hook:
- mkdir $(distdir)/evolution-guide
- -cp evolution-guide/*.html evolution-guide/*.css $(distdir)/evolution-guide
+ mkdir $(distdir)/evolution
+ -cp evolution/*.html evolution/*.css $(distdir)/evolution
mkdir $(distdir)/fig
-cp fig/*.png $(distdir)/fig
- mkdir $(distdir)/evolution-guide/stylesheet-images
- -cp evolution-guide/stylesheet-images/* $(distdir)/evolution-guide/stylesheet-images
+ mkdir $(distdir)/evolution/stylesheet-images
+ -cp evolution/stylesheet-images/* $(distdir)/evolution/stylesheet-images
-install-data-local: evolution-guide
+install-data-local: evolution
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)
- -for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \
+ -for file in $(srcdir)/evolution/*.html $(srcdir)/evolution/*.css; do \
basefile=`basename $$file`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \
done
@@ -45,7 +46,7 @@ install-data-local: evolution-guide
done
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/stylesheet-images
- -for file in $(srcdir)/evolution-guide/stylesheet-images/*; do \
+ -for file in $(srcdir)/evolution/stylesheet-images/*; do \
basefile=`basename $$file`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/stylesheet-images/$$basefile; \
done
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 04f9f31800..dc34126b4c 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,11 @@
+2001-04-23 Ettore Perazzoli <ettore@ximian.com>
+
+ * C/Makefile.am (SGML_FILES): Add `evolution.sgml'.
+ (evolution-guide): Process `evolution.sgml', not
+ `evolution-guide.sgml'.
+ (dist-hook): s/evolution-guide/evolution/
+ (install-data-local): Likewise.
+
2001-02-23 Aaron Weber <aaron@helixcode.com>
* C/apx-authors.sgml: s/helixcode/ximian (How I missed this page
diff --git a/doc/devel/ChangeLog b/doc/devel/ChangeLog
index 134159b2d2..0237e82112 100644
--- a/doc/devel/ChangeLog
+++ b/doc/devel/ChangeLog
@@ -1,3 +1,10 @@
+2001-04-23 Ettore Perazzoli <ettore@ximian.com>
+
+ * evolution-devel-guide.sgml: Disable the importer references here
+ too.
+
+ * Makefile.am: Remove the importer stuff for now.
+
2001-04-20 Damon Chaplin <damon@ximian.com>
* importer/evolution-shell-importer.types: changed path to the
diff --git a/doc/devel/Makefile.am b/doc/devel/Makefile.am
index c5ee7a8e50..200905cffe 100644
--- a/doc/devel/Makefile.am
+++ b/doc/devel/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = calendar importer executive-summary
+SUBDIRS = calendar executive-summary
# The name of the module.
DOC_MODULE=evolution-devel-guide
@@ -34,14 +34,14 @@ local_entities = \
calendar/cal-util/sgml/cal-util.sgml \
calendar/cal-util/sgml/timeutil.sgml \
\
- importer/sgml/evolution-importer.sgml \
- importer/sgml/evolution-importer-client.sgml \
- \
executive-summary/sgml/executive-summary-component.sgml \
executive-summary/sgml/executive-summary-component-factory.sgml \
executive-summary/sgml/executive-summary-component-factory-client.sgml \
executive-summary/sgml/executive-summary-html-view.sgml
+# importer/sgml/evolution-importer.sgml \
+# importer/sgml/evolution-importer-client.sgml
+
EXTRA_DIST = \
$(content_files)
diff --git a/doc/devel/evolution-devel-guide.sgml b/doc/devel/evolution-devel-guide.sgml
index 4a88261da4..f410c01981 100644
--- a/doc/devel/evolution-devel-guide.sgml
+++ b/doc/devel/evolution-devel-guide.sgml
@@ -13,11 +13,11 @@
<!ENTITY cal-util SYSTEM "calendar/cal-util/sgml/cal-util.sgml">
<!ENTITY timeutil SYSTEM "calendar/cal-util/sgml/timeutil.sgml">
-<!ENTITY importer-public-reference SYSTEM "importer/public-reference.sgml">
-<!ENTITY importer-private-reference SYSTEM "importer/private-reference.sgml">
-<!ENTITY EvolutionImporter SYSTEM "importer/sgml/evolution-importer.sgml">
-<!ENTITY EvolutionImporterClient SYSTEM "importer/sgml/evolution-importer-client.sgml">
-<!ENTITY EvolutionImporterListener SYSTEM "importer/sgml/evolution-importer-listener.sgml">
+<!-- ENTITY importer-public-reference SYSTEM "importer/public-reference.sgml">
+<!-- ENTITY importer-private-reference SYSTEM "importer/private-reference.sgml">
+<!-- ENTITY EvolutionImporter SYSTEM "importer/sgml/evolution-importer.sgml">
+<!-- ENTITY EvolutionImporterClient SYSTEM "importer/sgml/evolution-importer-client.sgml">
+<!-- ENTITY EvolutionImporterListener SYSTEM "importer/sgml/evolution-importer-listener.sgml">
<!ENTITY evolution-services-public-reference SYSTEM "executive-summary/public-reference.sgml">
<!ENTITY evolution-services-private-reference SYSTEM "executive-summary/private-reference.sgml">
diff --git a/help/C/Makefile.am b/help/C/Makefile.am
index 88b71fcb0b..486a10ca58 100644
--- a/help/C/Makefile.am
+++ b/help/C/Makefile.am
@@ -1,6 +1,7 @@
evolution_helpdir = $(datadir)/gnome/help/evolution/C
SGML_FILES = \
+ evolution.sgml \
apx-authors.sgml \
apx-bugs.sgml \
apx-gloss.sgml \
@@ -15,25 +16,25 @@ SGML_FILES = \
usage-sync.sgml
-EXTRA_DIST = \
+EXTRA_DIST = \
$(SGML_FILES)
all: evolution-guide
evolution-guide: $(SGML_FILES)
- -db2html evolution-guide.sgml
+ -db2html evolution.sgml
dist-hook:
- mkdir $(distdir)/evolution-guide
- -cp evolution-guide/*.html evolution-guide/*.css $(distdir)/evolution-guide
+ mkdir $(distdir)/evolution
+ -cp evolution/*.html evolution/*.css $(distdir)/evolution
mkdir $(distdir)/fig
-cp fig/*.png $(distdir)/fig
- mkdir $(distdir)/evolution-guide/stylesheet-images
- -cp evolution-guide/stylesheet-images/* $(distdir)/evolution-guide/stylesheet-images
+ mkdir $(distdir)/evolution/stylesheet-images
+ -cp evolution/stylesheet-images/* $(distdir)/evolution/stylesheet-images
-install-data-local: evolution-guide
+install-data-local: evolution
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)
- -for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \
+ -for file in $(srcdir)/evolution/*.html $(srcdir)/evolution/*.css; do \
basefile=`basename $$file`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \
done
@@ -45,7 +46,7 @@ install-data-local: evolution-guide
done
$(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/stylesheet-images
- -for file in $(srcdir)/evolution-guide/stylesheet-images/*; do \
+ -for file in $(srcdir)/evolution/stylesheet-images/*; do \
basefile=`basename $$file`; \
$(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/stylesheet-images/$$basefile; \
done
diff --git a/help/ChangeLog b/help/ChangeLog
index 04f9f31800..dc34126b4c 100644
--- a/help/ChangeLog
+++ b/help/ChangeLog
@@ -1,3 +1,11 @@
+2001-04-23 Ettore Perazzoli <ettore@ximian.com>
+
+ * C/Makefile.am (SGML_FILES): Add `evolution.sgml'.
+ (evolution-guide): Process `evolution.sgml', not
+ `evolution-guide.sgml'.
+ (dist-hook): s/evolution-guide/evolution/
+ (install-data-local): Likewise.
+
2001-02-23 Aaron Weber <aaron@helixcode.com>
* C/apx-authors.sgml: s/helixcode/ximian (How I missed this page
diff --git a/help/devel/ChangeLog b/help/devel/ChangeLog
index 134159b2d2..0237e82112 100644
--- a/help/devel/ChangeLog
+++ b/help/devel/ChangeLog
@@ -1,3 +1,10 @@
+2001-04-23 Ettore Perazzoli <ettore@ximian.com>
+
+ * evolution-devel-guide.sgml: Disable the importer references here
+ too.
+
+ * Makefile.am: Remove the importer stuff for now.
+
2001-04-20 Damon Chaplin <damon@ximian.com>
* importer/evolution-shell-importer.types: changed path to the
diff --git a/help/devel/Makefile.am b/help/devel/Makefile.am
index c5ee7a8e50..200905cffe 100644
--- a/help/devel/Makefile.am
+++ b/help/devel/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = calendar importer executive-summary
+SUBDIRS = calendar executive-summary
# The name of the module.
DOC_MODULE=evolution-devel-guide
@@ -34,14 +34,14 @@ local_entities = \
calendar/cal-util/sgml/cal-util.sgml \
calendar/cal-util/sgml/timeutil.sgml \
\
- importer/sgml/evolution-importer.sgml \
- importer/sgml/evolution-importer-client.sgml \
- \
executive-summary/sgml/executive-summary-component.sgml \
executive-summary/sgml/executive-summary-component-factory.sgml \
executive-summary/sgml/executive-summary-component-factory-client.sgml \
executive-summary/sgml/executive-summary-html-view.sgml
+# importer/sgml/evolution-importer.sgml \
+# importer/sgml/evolution-importer-client.sgml
+
EXTRA_DIST = \
$(content_files)
diff --git a/help/devel/evolution-devel-guide.sgml b/help/devel/evolution-devel-guide.sgml
index 4a88261da4..f410c01981 100644
--- a/help/devel/evolution-devel-guide.sgml
+++ b/help/devel/evolution-devel-guide.sgml
@@ -13,11 +13,11 @@
<!ENTITY cal-util SYSTEM "calendar/cal-util/sgml/cal-util.sgml">
<!ENTITY timeutil SYSTEM "calendar/cal-util/sgml/timeutil.sgml">
-<!ENTITY importer-public-reference SYSTEM "importer/public-reference.sgml">
-<!ENTITY importer-private-reference SYSTEM "importer/private-reference.sgml">
-<!ENTITY EvolutionImporter SYSTEM "importer/sgml/evolution-importer.sgml">
-<!ENTITY EvolutionImporterClient SYSTEM "importer/sgml/evolution-importer-client.sgml">
-<!ENTITY EvolutionImporterListener SYSTEM "importer/sgml/evolution-importer-listener.sgml">
+<!-- ENTITY importer-public-reference SYSTEM "importer/public-reference.sgml">
+<!-- ENTITY importer-private-reference SYSTEM "importer/private-reference.sgml">
+<!-- ENTITY EvolutionImporter SYSTEM "importer/sgml/evolution-importer.sgml">
+<!-- ENTITY EvolutionImporterClient SYSTEM "importer/sgml/evolution-importer-client.sgml">
+<!-- ENTITY EvolutionImporterListener SYSTEM "importer/sgml/evolution-importer-listener.sgml">
<!ENTITY evolution-services-public-reference SYSTEM "executive-summary/public-reference.sgml">
<!ENTITY evolution-services-private-reference SYSTEM "executive-summary/private-reference.sgml">