3d8ef5a52d
many packages used to use ${PAX}. Use the common way of directly calling pax, it is created as tool after all.
33 lines
1 KiB
Makefile
33 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2008/05/26 02:13:24 joerg Exp $
|
|
#
|
|
# Note: we currently use the pre-built (-bin) distribution of Xalan-J,
|
|
# because although Xalan runs fine under JDK 1.1, JDK 1.2 or greater is
|
|
# required to build it.
|
|
|
|
DISTNAME= xalan-j_1_2
|
|
PKGNAME= xalan-j-1.2
|
|
CATEGORIES= textproc www
|
|
MASTER_SITES= http://xml.apache.org/dist/xalan-j/
|
|
|
|
MAINTAINER= jwise@NetBSD.org
|
|
HOMEPAGE= http://xml.apache.org/xalan-j/
|
|
COMMENT= The Apache Project's XSLT implementation
|
|
|
|
DEPENDS+= xerces-j>=1.2.0:../../textproc/xerces-j
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
USE_JAVA= run
|
|
USE_TOOLS+= pax
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/xalan.jar ${PREFIX}/lib/java
|
|
${INSTALL_DATA} ${WRKSRC}/bsf.jar ${PREFIX}/lib/java
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/java/xalan
|
|
cd ${WRKSRC}/docs && pax -rw -pp . ${PREFIX}/share/doc/java/xalan
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/java/xalan
|
|
cd ${WRKSRC}/samples && pax -rw -pp . ${PREFIX}/share/examples/java/xalan
|
|
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|