mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7820b2842a
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
37 lines
796 B
Makefile
37 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>
|