mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
f356d5bf7f
distfile is no longer available on that website, so someone will need to do the work to check the updates and ensure the license is still compatible. But at least you'll know where to start looking.
31 lines
747 B
Makefile
31 lines
747 B
Makefile
# New ports collection makefile for: XML for Java
|
|
# Date created: 21 Feb 2000
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xml4j
|
|
PORTVERSION= 3.1.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.alphaworks.ibm.com/aw.nsf/download/xml4j/
|
|
DISTNAME= XML4J-J-bin.${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= XML for Java parser
|
|
|
|
WRKSRC= ${WRKDIR}/XML4J-3_1_1
|
|
NO_BUILD= YES
|
|
|
|
JAVASUBDIR= jdk1.1.8
|
|
DIR= ${PREFIX}/share/java
|
|
|
|
do-install:
|
|
@${MKDIR} ${DIR}/classes
|
|
@(cd ${WRKSRC} && ${INSTALL_DATA} xml4j.jar xerces.jar xercesSamples.jar ${DIR}/classes)
|
|
@${MKDIR} ${DIR}/xml4j
|
|
@(cd ${WRKSRC} && ${INSTALL_DATA} Readme.html ${DIR}/xml4j)
|
|
@(cd ${WRKSRC} && ${CP} -R data docs ${DIR}/xml4j)
|
|
|
|
.include <bsd.port.mk>
|