ports/68553: [PATCH] textproc/xalan-j: update to 2.6.0 and various improvements

Herve Quiroz herve.quiroz at esil.univ-mrs.fr
Thu Jul 1 11:50:52 UTC 2004


>Number:         68553
>Category:       ports
>Synopsis:       [PATCH] textproc/xalan-j: update to 2.6.0 and various improvements
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Jul 01 11:50:20 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     Herve Quiroz
>Release:        FreeBSD 5.2.1-RELEASE-p5 i386
>Organization:
>Environment:
System: FreeBSD arabica.esil.univ-mrs.fr 5.2.1-RELEASE-p5 FreeBSD 5.2.1-RELEASE-p5 #3: Thu May  6 20:17:47 CEST
>Description:

- Update to 2.6.0
- The shell script to run Xalan-J is now installed (and working)
- bsd.java.mk 2.0 compliant
- Some cosmetic changes (e.g. ${ECHO} -> ${ECHO_MSG} and ${CHOWN} of
  documentation directory)
- Additional design documentation installed
- Updated RUN_DEPENDS

NOTE: As I said in a previous PR [1], the autojavadoc Ant target was broken
with Java 1.4 and Xalan-J 2.5.1. This issue is now fixed with this release so
the API documentation is now always built and installed.

NOTE2: I found a shell script in ${FILESDIR} to run Xalan-J on the command-line
that was not installed by the port. The existing script was modified. First,
the name has changed to 'xalan-j' so there is no conflict with textproc/xalan-c
(this will not mislead end-users as the script is not installed in the current
version of the port). Second, it now makes use of 'classpath' command from
java/javavmwrapper.

NOTE3: I added 2 ports to the run dependencies for this port: Xerces-J and
javavmwrapper.

NOTE4: IMHO the ANT_OPTS statement is not needed as it has no effect on Ant for
now (being a Make variable rather than an environement one). Still I didn't
remove it...


[1] http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/65061

Port maintainer (znerd at FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.50
>How-To-Repeat:
>Fix:

--- xalan-j-2.6.0.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/textproc/xalan-j.original/Makefile /usr/ports/textproc/xalan-j/Makefile
--- /usr/ports/textproc/xalan-j.original/Makefile	Thu Jul  1 11:37:21 2004
+++ /usr/ports/textproc/xalan-j/Makefile	Thu Jul  1 12:07:21 2004
@@ -6,18 +6,22 @@
 #
 
 PORTNAME=	xalan-j
-PORTVERSION=	2.5.1
+PORTVERSION=	2.6.0
 CATEGORIES=	textproc java
 MASTER_SITES=	${MASTER_SITE_APACHE_XML}
-MASTER_SITE_SUBDIR=	${PORTNAME}/
+MASTER_SITE_SUBDIR=	${PORTNAME}/source
 DISTNAME=	${PORTNAME}_${PORTVERSION:S/./_/g}-src
 
 MAINTAINER=	znerd at FreeBSD.org
 COMMENT=	Apache XSLT processor for transforming XML documents
 
 BUILD_DEPENDS=	${ANT}:${PORTSDIR}/devel/apache-ant
+RUN_DEPENDS=	${LOCALBASE}/bin/classpath:${PORTSDIR}/java/javavmwrapper \
+		${LOCALBASE}/bin/javavm:${PORTSDIR}/java/javavmwrapper \
+		${JAVAJARDIR}/xml-apis.jar:${PORTSDIR}/textproc/xerces-j
 
-USE_JAVA=	1.2+
+USE_JAVA=	yes
+JAVA_VERSION=	1.2+
 
 WRKSRC=		${WRKDIR}/${PORTNAME}_${PORTVERSION:S/./_/g}
 ANT?=		${LOCALBASE}/bin/ant
@@ -25,29 +29,33 @@
 ANT_TARGET=	jar
 .if !defined(NOPORTDOCS)
 ANT_TARGET+=	javadocs
-PORTDOCS=	apidocs
+PORTDOCS=	apidocs design
 .endif
 JARFILE=	xalan.jar
-PLIST_FILES=	${JAVAJARDIR:S,^${PREFIX}/,,}/${JARFILE}
-
-# FIXME: the autojavadocs Ant target seems broken with Java 1.4
+PLIST_FILES=	${JAVAJARDIR:S,^${PREFIX}/,,}/${JARFILE} bin/xalan-j
 
 do-configure:
-	${SED} 's|%%PREFIX%%|${PREFIX}|g' ${FILESDIR}/xalan.sh >${WRKDIR}/xalan
+	@${SED} 's|%%PREFIX%%|${PREFIX}|g ; s|%%JAVAJARDIR%%|${JAVAJARDIR}|g' ${FILESDIR}/xalan.sh >${WRKDIR}/xalan-j
 
 do-build:
 	@cd ${WRKSRC} && ${ANT} ${ANT_TARGET}
 
 do-install:
-	@${ECHO} -n ">> Installing JAR as ${JAVAJARDIR}/${JARFILE}..."
+	@${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${JARFILE}..."
 	@${CP} ${WRKSRC}/build/${JARFILE} ${JAVAJARDIR}/
-	@${ECHO} " [ DONE ]"
-
+	@${ECHO_MSG} " [ DONE ]"
 .if !defined(NOPORTDOCS)
-	@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
+	@${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}..."
 	@${MKDIR} ${DOCSDIR}
-	@${CP} -r ${WRKSRC}/build/docs/apidocs ${DOCSDIR}/
-	@${ECHO} " [ DONE ]"
+.for DOC in ${PORTDOCS}
+	@${ECHO_MSG} -n " ${DOC}"
+	@${CP} -r ${WRKSRC}/build/docs/${DOC} ${DOCSDIR}/
+.endfor
+	@${CHOWN} -h -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}
+	@${ECHO_MSG} " [ DONE ]"
 .endif
+	@${ECHO_MSG} -n ">> Installing script in ${PREFIX}/bin/..."
+	@${INSTALL_SCRIPT} ${WRKDIR}/xalan-j ${PREFIX}/bin/
+	@${ECHO_MSG} " [ DONE ]"
 
 .include <bsd.port.mk>
diff -ruN --exclude=CVS /usr/ports/textproc/xalan-j.original/distinfo /usr/ports/textproc/xalan-j/distinfo
--- /usr/ports/textproc/xalan-j.original/distinfo	Thu Jul  1 11:37:21 2004
+++ /usr/ports/textproc/xalan-j/distinfo	Thu Jul  1 11:57:17 2004
@@ -1,2 +1,2 @@
-MD5 (xalan-j_2_5_1-src.tar.gz) = a07c12bfb562ecfd9985c3b00ec06328
-SIZE (xalan-j_2_5_1-src.tar.gz) = 5666980
+MD5 (xalan-j_2_6_0-src.tar.gz) = a210f7108e680ab60a11977ec99ab1f9
+SIZE (xalan-j_2_6_0-src.tar.gz) = 5875008
diff -ruN --exclude=CVS /usr/ports/textproc/xalan-j.original/files/xalan.sh /usr/ports/textproc/xalan-j/files/xalan.sh
--- /usr/ports/textproc/xalan-j.original/files/xalan.sh	Thu Jul  1 11:37:21 2004
+++ /usr/ports/textproc/xalan-j/files/xalan.sh	Thu Jul  1 12:14:16 2004
@@ -1,5 +1,4 @@
 #!/bin/sh
-CLASSDIR=%%PREFIX%%/share/java/classes
-exec javavm \
-    -classpath ${CLASSDIR}/xml-apis.jar \
-    -jar ${CLASSDIR}/xalan.jar "$@"
+
+export CLASSPATH=`%%PREFIX%%/bin/classpath`
+exec javavm org.apache.xalan.xslt.Process $@
--- xalan-j-2.6.0.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list