freebsd-ports/java/gjdoc/files/patch-Makefile.in
Maho Nakata 031557a091 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/
2006-04-17 05:11:45 +00:00

23 lines
899 B
Plaintext

--- 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 \