release-notes r894 - in branches/gnome-2-22: . help
- From: ovitters svn gnome org
- To: svn-commits-list gnome org
- Subject: release-notes r894 - in branches/gnome-2-22: . help
- Date: Sat, 1 Mar 2008 22:24:04 +0000 (GMT)
Author: ovitters
Date: Sat Mar 1 22:24:04 2008
New Revision: 894
URL: http://svn.gnome.org/viewvc/release-notes?rev=894&view=rev
Log:
Pretend we're a real module.
* AUTHORS:
* Makefile.am:
* NEWS:
* README:
* autogen.sh:
* configure.in:
* db2html.xsl:
* help/Makefile.am:
* help/Makefile_shared.am_fragment:
* help/notes-C.omf:
* help/release-notes-C.omf:
Added:
branches/gnome-2-22/AUTHORS
branches/gnome-2-22/ChangeLog
branches/gnome-2-22/NEWS
branches/gnome-2-22/README
branches/gnome-2-22/autogen.sh (contents, props changed)
branches/gnome-2-22/configure.in
branches/gnome-2-22/help/release-notes-C.omf
- copied, changed from r892, /branches/gnome-2-22/help/notes-C.omf
Removed:
branches/gnome-2-22/db2html.xsl
branches/gnome-2-22/help/Makefile_shared.am_fragment
branches/gnome-2-22/help/notes-C.omf
Modified:
branches/gnome-2-22/Makefile.am
branches/gnome-2-22/help/Makefile.am
Added: branches/gnome-2-22/AUTHORS
==============================================================================
Modified: branches/gnome-2-22/Makefile.am
==============================================================================
--- branches/gnome-2-22/Makefile.am (original)
+++ branches/gnome-2-22/Makefile.am Sat Mar 1 22:24:04 2008
@@ -1,72 +1,6 @@
-SUBDIRS = docbook
-
-urlpath = /start/2.22
-
-page_SCRIPTS=
-page_DATA =
-
-include $(top_srcdir)/rules.common
-
-
-# Get DOC_INCLUDES and DOC_LINGUAS
-include $(top_srcdir)/www.gnome.org/start/2.22/docbook/Makefile_shared.am_fragment
-
-
-VERSION = 2.22
-ROOTDOC = release-notes.xml
-STYLE_PATH = ./
-
-
-DOC_LINGUAS_PLUS_ORIGINAL = C $(DOC_LINGUAS)
-
-#This is voodoo, but it seems to work.
-#I really have no idea how to do this loop stuff in a Makefile.
-#And this would be easier if I could define some variables inside the @for loop.
-#Murray Cumming
-html:
- @for docbookdir in $(DOC_LINGUAS_PLUS_ORIGINAL); do \
- echo "Generating html for language: " $$docbookdir; \
- rm -rf $$docbookdir; \
- mkdir $$docbookdir; \
- echo "Running xlstproc on: " docbook/$$docbookdir/$(ROOTDOC); \
- xsltproc --xinclude -o $$docbookdir/index.html \
- --param yelp_max_chunk_depth 1 \
- $(STYLE_PATH)db2html.xsl docbook/$$docbookdir/$(ROOTDOC); \
- echo " xlstproc finished"; \
- cp -R docbook/$$docbookdir/figures $$docbookdir; \
- for i in $$docbookdir/*.html; do \
- perl -p -i -e 's,<p class="section"></p>,<p class="section">Sections</p>,g' $$i; \
- done \
- done
-
-
-all-local: html
-
-clean:
- @for docbookdir in $(DOC_LINGUAS_PLUS_ORIGINAL); do \
- echo "Removing html for language: " $$docbookdir; \
- rm -rf $$docbookdir; \
- done
-
-
-install-data-local:
- @for docbookdir in $(DOC_LINGUAS_PLUS_ORIGINAL); do \
- echo "Installing generated html"; \
- $(INSTALL) -d $(pagedir)/$$docbookdir; \
- $(INSTALL_DATA) $(srcdir)/$$docbookdir/*.html $(pagedir)/$$docbookdir/; \
- $(INSTALL) -d $(pagedir)/$$docbookdir/figures; \
- if test "`echo $(srcdir)/$$docbookdir/figures/*.png`" = $(srcdir)/$$docbookdir/figures/'*.png' ; then \
- echo "WARNING: missing figures/ subdir in $$docbookdir" ; \
- else \
- $(INSTALL_DATA) $(srcdir)/$$docbookdir/figures/*.png $(pagedir)/$$docbookdir/figures/; \
- fi ; \
- (cd $(srcdir)/C && \
- for figure in figures/*.png; do \
- if [ ! -f $(pagedir)/$$docbookdir/$$figure ]; then \
- $(INSTALL_DATA) $$figure $(pagedir)/$$docbookdir/figures/; \
- fi; \
- done); \
- done
-
+SUBDIRS = help
+EXTRA_DIST = gnome-doc-utils.make
+DISTCLEANFILE = gnome-doc-utils.make
+DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
Added: branches/gnome-2-22/NEWS
==============================================================================
Added: branches/gnome-2-22/README
==============================================================================
Added: branches/gnome-2-22/autogen.sh
==============================================================================
--- (empty file)
+++ branches/gnome-2-22/autogen.sh Sat Mar 1 22:24:04 2008
@@ -0,0 +1,24 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="release-notes"
+
+(test -f $srcdir/configure.in \
+ && test -d $srcdir/help) || {
+ echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+ echo " top-level $PKG_NAME directory"
+ exit 1
+}
+
+which gnome-autogen.sh || {
+ echo "You need to install gnome-common from the GNOME SVN"
+ exit 1
+}
+
+REQUIRED_AUTOMAKE_VERSION=1.6
+export REQUIRED_AUTOMAKE_VERSION
+
+USE_GNOME2_MACROS=1 . gnome-autogen.sh
Added: branches/gnome-2-22/configure.in
==============================================================================
--- (empty file)
+++ branches/gnome-2-22/configure.in Sat Mar 1 22:24:04 2008
@@ -0,0 +1,11 @@
+AC_INIT([release-notes],[2.22])
+
+AM_INIT_AUTOMAKE
+AM_MAINTAINER_MODE
+
+GNOME_DOC_INIT
+
+AC_OUTPUT([
+Makefile
+help/Makefile
+])
Modified: branches/gnome-2-22/help/Makefile.am
==============================================================================
--- branches/gnome-2-22/help/Makefile.am (original)
+++ branches/gnome-2-22/help/Makefile.am Sat Mar 1 22:24:04 2008
@@ -1,16 +1,16 @@
-#This should not be necessary, because no files here should be installed (visible from the web server)
-#but let's see if it makes a difference.
-urlpath = /start/2.22/docbook
-
-PKG_CONFIG=pkg-config
-include $(top_srcdir)/www.gnome.org/start/2.22/docbook/gnome-doc-utils.make
+include $(top_srcdir)/gnome-doc-utils.make
dist-hook: doc-dist-hook
DOC_MODULE = release-notes
+DOC_INCLUDES = \
+ release-notes.xml \
+ rnusers.xml \
+ rnadmins.xml \
+ rndevelopers.xml \
+ rninstallation.xml \
+ rnlookingforward.xml \
+ rni18n.xml
+DOC_FIGURES =
DOC_LINGUAS =
-# Get DOC_INCLUDES and DOC_LINGUAS
-include $(top_srcdir)/www.gnome.org/start/2.22/docbook/Makefile_shared.am_fragment
-
-SUBDIRS =
Copied: branches/gnome-2-22/help/release-notes-C.omf (from r892, /branches/gnome-2-22/help/notes-C.omf)
==============================================================================
--- /branches/gnome-2-22/help/notes-C.omf (original)
+++ branches/gnome-2-22/help/release-notes-C.omf Sat Mar 1 22:24:04 2008
@@ -10,6 +10,6 @@
<format mime="" dtd="-//OASIS//DTD DocBook XML V4.1.2//EN"/>
<identifier url="file:///C/notes.xml"/>
<language code="C"/>
- <relation seriesid="7fc66d21-5b41-4eb2-93b3-4318d93a8491"/>
+ <relation seriesid="0edb6d67-540e-4ec4-854f-796f61cdd783"/>
</resource>
</omf>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]