Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 115901 - xalan-2.7.0 does not install all of its jars
Summary: xalan-2.7.0 does not install all of its jars
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High critical (vote)
Assignee: Java team
URL: http://xml.apache.org/xalan-j/readme....
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-12-17 19:34 UTC by Gergan Penkov
Modified: 2005-12-18 05:39 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gergan Penkov 2005-12-17 19:34:07 UTC
As you could see in the url, the new xalan consists of two jars: xalan and serializer, but the ebuild in portage will install only xalan. As a result some other packages will fail to build for example xdoclet fails on the xslt tasks, because it could not find the classes from the serializer.jar. netbeans also fails with similiar errors. Adding the following line 
src_install() {
        java-pkg_dojar build/xalan.jar
+        java-pkg_dojar build/serializer.jar
        use doc && java-pkg_dohtml -r build/docs/*
        use source && java-pkg_dosrc src/*
}
resolves the problem.
Comment 1 Josh Nichols (RETIRED) gentoo-dev 2005-12-17 22:49:52 UTC
Fixed in CVS. Thanks for reporting!
Comment 2 Petteri Räty (RETIRED) gentoo-dev 2005-12-18 05:39:55 UTC
Made a new revision so that users will get the missing jar.