[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Debian JP master SVN www commits (rev.687)
=======================================================
Repository: /org/svn.debian.or.jp/repos
Revision: 687
Commiter: nori
Date: 2008-06-11 17:22:28 +0900 (水, 11 6月 2008)
=======================================================
Log:
Enable creating .tt2 files from .sgml files.
* Make.sgml: Replace .html files with .tt2 files after creating .html
files by running progs/afters2h after debiandoc2html.
* src/community/devel/debian-policy-ja/Makefile:
* src/community/devel/packaging-manual-ja/Makefile:
* src/community/translate/webtrans_howto/Makefile:
* src/community/translate/debiandoc-guidelines-ja/Makefile:
Set a variable top_srcdir before including Make.sgml.
=======================================================
Changed:
U www/trunk/Make.sgml
U www/trunk/src/community/devel/debian-policy-ja/Makefile
U www/trunk/src/community/devel/packaging-manual-ja/Makefile
U www/trunk/src/community/translate/debiandoc-guidelines-ja/Makefile
U www/trunk/src/community/translate/webtrans_howto/Makefile
Modified: www/trunk/Make.sgml
===================================================================
--- www/trunk/Make.sgml 2008-06-11 07:59:03 UTC (rev 686)
+++ www/trunk/Make.sgml 2008-06-11 08:22:28 UTC (rev 687)
@@ -3,11 +3,13 @@
SGMLFILES := $(wildcard *.sgml)
HTMLDIR := $(SGMLFILES:.sgml=.html)
HTMLSTAMPS := $(SGMLFILES:.sgml=.html/stamp)
+afters2h = $(top_srcdir)/progs/afters2h
all: $(HTMLSTAMPS)
%.html/stamp: %.sgml
debiandoc2html $<
+ $(afters2h) $(<:.sgml=.html/*.html)
touch $@
clean:
Modified: www/trunk/src/community/devel/debian-policy-ja/Makefile
===================================================================
--- www/trunk/src/community/devel/debian-policy-ja/Makefile 2008-06-11 07:59:03 UTC (rev 686)
+++ www/trunk/src/community/devel/debian-policy-ja/Makefile 2008-06-11 08:22:28 UTC (rev 687)
@@ -1 +1,2 @@
-include ../../../../Make.sgml
+top_srcdir = ../../../..
+include $(top_srcdir)/Make.sgml
Modified: www/trunk/src/community/devel/packaging-manual-ja/Makefile
===================================================================
--- www/trunk/src/community/devel/packaging-manual-ja/Makefile 2008-06-11 07:59:03 UTC (rev 686)
+++ www/trunk/src/community/devel/packaging-manual-ja/Makefile 2008-06-11 08:22:28 UTC (rev 687)
@@ -1 +1,2 @@
-include ../../../../Make.sgml
+top_srcdir = ../../../..
+include $(top_srcdir)/Make.sgml
Modified: www/trunk/src/community/translate/debiandoc-guidelines-ja/Makefile
===================================================================
--- www/trunk/src/community/translate/debiandoc-guidelines-ja/Makefile 2008-06-11 07:59:03 UTC (rev 686)
+++ www/trunk/src/community/translate/debiandoc-guidelines-ja/Makefile 2008-06-11 08:22:28 UTC (rev 687)
@@ -1 +1,2 @@
-include ../../../../Make.sgml
+top_srcdir = ../../../..
+include $(top_srcdir)/Make.sgml
Modified: www/trunk/src/community/translate/webtrans_howto/Makefile
===================================================================
--- www/trunk/src/community/translate/webtrans_howto/Makefile 2008-06-11 07:59:03 UTC (rev 686)
+++ www/trunk/src/community/translate/webtrans_howto/Makefile 2008-06-11 08:22:28 UTC (rev 687)
@@ -1 +1,2 @@
-include ../../../../Make.sgml
+top_srcdir = ../../../..
+include $(top_srcdir)/Make.sgml