freebsd-ports/textproc/xp/Makefile
Chris Piazza 7820b2842a XP is an XML 1.0 parser written in Java. It is fully conforming: it
detects all non well-formed documents.
XP has the following design goals: Conformance and correctness, high
performance and a layered structure. Is is currently non-validating but can
parse all external entities.

PR:		13875
Submitted by:	mike@vee.net
1999-10-05 23:15:23 +00:00

36 lines
796 B
Makefile

# New ports collection makefile for: xp
# Version required: 0.5
# Date created: 21 September 1999
# Whom: mike
#
# $FreeBSD$
#
DISTNAME= xp
PKGNAME= xp-0.5
CATEGORIES= textproc java
MASTER_SITES= ftp://ftp.jclark.com/pub/xml/
MAINTAINER= mike@vee.net
RUN_DEPENDS= ${LOCALBASE}/jdk1.1.8/bin/java:${PORTSDIR}/java/jdk
XP_VERSION= 0.5
PLIST_SUB+= XP_VERSION=${XP_VERSION}
NO_WORKSUBDIR= yes
NO_BUILD= yes
USE_ZIP= yes
.include <bsd.port.pre.mk>
do-install:
${MKDIR} ${PREFIX}/share/java/classes ${PREFIX}/share/java/${PKGNAME}
${INSTALL_DATA} \
${WRKDIR}/xp.jar \
${PREFIX}/share/java/classes/${PKGNAME}.jar
cd ${WRKDIR}; \
${CP} -R docs ${PREFIX}/share/java/${PKGNAME}; \
${CP} -R com ${PREFIX}/share/java/${PKGNAME}
.include <bsd.port.post.mk>