diff options
author | Maho Nakata <maho@FreeBSD.org> | 2006-04-17 05:11:45 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2006-04-17 05:11:45 +0000 |
commit | 031557a091b4d85c28f0d554b6a8ac4f3541ecab (patch) | |
tree | 3374be8b8713ad9c299f725b7e3aa07c7bb0b975 /java/gjdoc/files/patch-Makefile.in | |
parent | LIB_DEPEND on devel/boost instead of building the bundled-in version (diff) |
Gjdoc is a documentation generation framework for java source files;
espcially generating API documentation in HTML format from
doc comments in source code.
Also, ANTLR (ANother Tool for Language Recognition) is used; this is
a language tool that provides a framework for constructing recognizers,
compilers, and translators from grammatical descriptions containing
Java, C#, C++, or Python actions.
WWW: http://www.gnu.org/software/classpath/cp-tools/
http://www.antlr.org/
Notes
Notes:
svn path=/head/; revision=159766
Diffstat (limited to 'java/gjdoc/files/patch-Makefile.in')
-rw-r--r-- | java/gjdoc/files/patch-Makefile.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java/gjdoc/files/patch-Makefile.in b/java/gjdoc/files/patch-Makefile.in new file mode 100644 index 000000000000..45c60b9407b0 --- /dev/null +++ b/java/gjdoc/files/patch-Makefile.in @@ -0,0 +1,22 @@ +--- Makefile.in~ Sun Feb 19 21:54:20 2006 ++++ Makefile.in Sun Feb 19 21:55:14 2006 +@@ -616,7 +616,8 @@ + LTGCJCOMPILE = $(LIBGCJCOMPILE) -MF $(@:.lo=.d) + jar_DATA = com-sun-javadoc-$(VERSION).jar \ + com-sun-tools-doclets-Taglet-$(VERSION).jar \ +- gnu-classpath-tools-gjdoc-$(VERSION).jar ++ gnu-classpath-tools-gjdoc-$(VERSION).jar \ ++ $(ANTLR_JAR) + + jardir = $(datadir)/java + BUILT_SOURCES = $(jar_DATA) +@@ -3755,7 +3755,7 @@ + + gnu-classpath-tools-gjdoc-$(VERSION).jar: $(srcdir)/gjdoc.manifest src/resources/version.properties $(gnu_classpath_tools_gjdoc_jar_CLASSES) $(gnu_classpath_tools_gjdoc_jar_GENCLASSES) $(gjdoc_resources_src) + for res in $(gjdoc_resources) ; \ +- do cp -u $(srcdir)/src/resources/$$res $$res ; done ++ do gcp -u $(srcdir)/src/resources/$$res $$res ; done + $(JAR) cfm $@ $(srcdir)/gjdoc.manifest \ + $(gjdoc_resources) \ + -C src/resources version.properties \ + |