When the "doc" USE flag is enabled, dev-java/jmi-interface-1.0 only builds the
javadoc, and not the jar files.
This can be fixed by adding "jar" AND "javadoc" targets to antflags when doc
USE flag is enabled (instead of adding only "javadoc") .
Patch :
jmi-interface-1.0.ebuild
--- /usr/portage/dev-java/jmi-interface/jmi-interface-1.0.ebuild
2005-05-03 19:10:26.000000000 +0200
+++ jmi-interface-1.0.ebuild 2005-05-27 17:01:59.000000000 +0200
@@ -30,7 +30,7 @@
src_compile() {
local antflags=""
- use doc && antflags="${antflags} javadoc"
+ use doc && antflags="${antflags} jar javadoc"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "Failed to compile"
}