From: <vac...@us...> - 2009-01-25 13:42:55
|
Revision: 129 http://xmlwrapp.svn.sourceforge.net/xmlwrapp/?rev=129&view=rev Author: vaclavslavik Date: 2009-01-25 13:42:49 +0000 (Sun, 25 Jan 2009) Log Message: ----------- build release tarballs with 'make dist'; install HTML docs in 'make install' Modified Paths: -------------- trunk/Makefile.am trunk/bootstrap trunk/configure.ac trunk/examples/04-xslt/Makefile.am trunk/tests/Makefile.am trunk/tests/attributes/Makefile.am trunk/tests/document/Makefile.am trunk/tests/event/Makefile.am trunk/tests/node/Makefile.am trunk/tests/tree/Makefile.am trunk/tests/xslt/Makefile.am Added Paths: ----------- trunk/docs/Makefile.am Removed Paths: ------------- trunk/docs/VERSION trunk/tools/ Property Changed: ---------------- trunk/docs/ Modified: trunk/Makefile.am =================================================================== --- trunk/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -1,5 +1,5 @@ -SUBDIRS = include src examples tests +SUBDIRS = include src examples tests docs pkgconfigdir=$(libdir)/pkgconfig @@ -10,3 +10,6 @@ endif bin_SCRIPTS = xmlwrapp-config + +EXTRA_DIST = LICENSE bootstrap \ + platform/Win32/*.dsp platform/Win32/*.dsw Modified: trunk/bootstrap =================================================================== --- trunk/bootstrap 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/bootstrap 2009-01-25 13:42:49 UTC (rev 129) @@ -51,6 +51,7 @@ echo " - libtoolize " && libtoolize --copy --automake && \ echo " - autoconf " && autoconf && \ echo " - automake " && automake --add-missing --copy --foreign && \ +echo " - doxygen " && (cd docs && doxygen) && \ echo "Build setup successful, type \"configure\" to configure xmlwrapp now." && \ exit 0 Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/configure.ac 2009-01-25 13:42:49 UTC (rev 129) @@ -35,7 +35,7 @@ AC_REVISION($Id$)dnl -AC_PREREQ(2.56) +AC_PREREQ(2.60) AC_INIT(xmlwrapp, 0.6.0, [xml...@li...]) AC_CONFIG_SRCDIR([xmlwrapp.pc.in]) @@ -116,6 +116,7 @@ Makefile include/Makefile src/Makefile + docs/Makefile examples/Makefile examples/01-tree_parsing/Makefile examples/02-event_parsing/Makefile Property changes on: trunk/docs ___________________________________________________________________ Modified: svn:ignore - html + html Makefile Makefile.in Added: trunk/docs/Makefile.am =================================================================== --- trunk/docs/Makefile.am (rev 0) +++ trunk/docs/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -0,0 +1,7 @@ + +html_DATA = $(srcdir)/html/*.* + +EXTRA_DIST = Doxyfile manual/*.doxygen + +dist-hook: + cd $(distdir) && doxygen Property changes on: trunk/docs/Makefile.am ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Deleted: trunk/docs/VERSION =================================================================== --- trunk/docs/VERSION 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/docs/VERSION 2009-01-25 13:42:49 UTC (rev 129) @@ -1,12 +0,0 @@ -0.5.1 5 2 REL-0_5_1 2008/11/16 -0.5.0 5 2 REL-0_5_0 2004/03/18 -0.4.4 4 1 REL-0_4_4 2003/10/29 -0.4.3 4 1 REL-0_4_3 2003/08/19 -0.4.2 4 1 REL-0_4_2 2003/06/20 -0.4.1 4 1 REL-0_4_1 2003/04/07 -0.4.0 4 1 REL-0_4_0 2003/02/03 -0.3.0 3 0 REL-0_3_0 2003/01/07 -0.2.2 2 0 REL-0_2_2 2002/09/03 -0.2.1 2 0 REL-0_2_1 2002/06/26 -0.2.0 2 0 REL-0_2_0 2002/05/06 -0.1.0 1 0 REL-0_1_0 2002/04/11 Modified: trunk/examples/04-xslt/Makefile.am =================================================================== --- trunk/examples/04-xslt/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/examples/04-xslt/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -8,3 +8,5 @@ example_LDADD = ../../src/libxsltwrapp.la ../../src/libxmlwrapp.la endif + +EXTRA_DIST = example.xml example.xsl Modified: trunk/tests/Makefile.am =================================================================== --- trunk/tests/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -6,3 +6,5 @@ node \ tree \ xslt + +EXTRA_DIST = harness/harness.pm Modified: trunk/tests/attributes/Makefile.am =================================================================== --- trunk/tests/attributes/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/attributes/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -26,3 +26,5 @@ test_attr_08_SOURCES = test_attr-08.cxx test_attr_09_SOURCES = test_attr-09.cxx test_attr_10_SOURCES = test_attr-10.cxx + +EXTRA_DIST = data/*.out data/*.xml data/*.dtd runtest.pl Modified: trunk/tests/document/Makefile.am =================================================================== --- trunk/tests/document/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/document/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -50,3 +50,5 @@ test_document_20_SOURCES = test_document-20.cxx test_document_21_SOURCES = test_document-21.cxx test_document_22_SOURCES = test_document-22.cxx + +EXTRA_DIST = data/*.out data/*.xml runtest.pl Modified: trunk/tests/event/Makefile.am =================================================================== --- trunk/tests/event/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/event/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -12,3 +12,5 @@ test_event_01_SOURCES = test_event-01.cxx test_event_02_SOURCES = test_event-02.cxx test_event_03_SOURCES = test_event-03.cxx + +EXTRA_DIST = data/*.out data/*.xml runtest.pl Modified: trunk/tests/node/Makefile.am =================================================================== --- trunk/tests/node/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/node/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -50,3 +50,5 @@ test_node_12_SOURCES = test_node-12.cxx test_node_13_SOURCES = test_node-13.cxx test_node_14_SOURCES = test_node-14.cxx + +EXTRA_DIST = data/*.out data/*.xml runtest.pl Modified: trunk/tests/tree/Makefile.am =================================================================== --- trunk/tests/tree/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/tree/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -18,3 +18,5 @@ test_tree_04_SOURCES = test_tree-04.cxx test_tree_05_SOURCES = test_tree-05.cxx test_tree_06_SOURCES = test_tree-06.cxx + +EXTRA_DIST = runtest.pl Modified: trunk/tests/xslt/Makefile.am =================================================================== --- trunk/tests/xslt/Makefile.am 2009-01-24 23:25:52 UTC (rev 128) +++ trunk/tests/xslt/Makefile.am 2009-01-25 13:42:49 UTC (rev 129) @@ -20,3 +20,5 @@ test_xslt_05_SOURCES = test_xslt-05.cxx endif + +EXTRA_DIST = data/*.xml data/*.xsl data/*.out runtest.pl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |