[ports-i386@bento.FreeBSD.org: java-checkstyle-3.2_1 failed on i386 4]

Greg Lewis glewis at eyesbeyond.com
Fri Apr 9 16:03:38 PDT 2004


On Thu, Apr 08, 2004 at 05:49:37PM -0700, Kris Kennaway wrote:
> compile.checkstyle:
>     [mkdir] Created dir: /tmp/a/ports/java/java-checkstyle/work/checkstyle-src-3.2/target/checkstyle
>    [depend] Deleted 0 out of date files in 7 seconds
>     [javac] Compiling 296 source files to /tmp/a/ports/java/java-checkstyle/work/checkstyle-src-3.2/target/checkstyle
>     [javac] /tmp/a/ports/java/java-checkstyle/work/checkstyle-src-3.2/src/checkstyle/com/puppycrawl/tools/checkstyle/AbstractLoader.java:23: cannot resolve symbol
>     [javac] symbol  : class ParserConfigurationException  
>     [javac] location: package parsers
>     [javac] import javax.xml.parsers.ParserConfigurationException;
>     [javac]                          ^
...etc.

Port specifies USE_JAVA as 1.3+ but requires 1.4 to build.  Looks like a
bug in the port.  Simply need to change 1.3+ to 1.4+.  Patch attached and
maintainer cc'ed.

Thanks Kris!

-- 
Greg Lewis                          Email   : glewis at eyesbeyond.com
Eyes Beyond                         Web     : http://www.eyesbeyond.com
Information Technology              FreeBSD : glewis at FreeBSD.org

-------------- next part --------------
Index: Makefile
===================================================================
RCS file: /var/fcvs/ports/java/java-checkstyle/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- Makefile	4 Feb 2004 05:21:27 -0000	1.9
+++ Makefile	9 Apr 2004 23:02:25 -0000
@@ -19,7 +19,7 @@
 
 BUILD_DEPENDS=	${LOCALBASE}/bin/ant:${PORTSDIR}/devel/apache-ant
 
-USE_JAVA=	1.3+
+USE_JAVA=	1.4+
 NEED_JAVAC=	YES
 
 PLIST=	${WRKDIR}/PLIST


More information about the freebsd-java mailing list