1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/textproc/jing/Makefile
Greg Lewis da175cf39a . Use %%JAVAJARDIR%% in the packing list now that bsd.java.mk sets it.
. While I'm here:
  . Collapse the post-install target into do-install,
  . Respect NOPORTDOCS for all the docs.
  . Use PORTDOCS to greatly simplify the packing list.
2004-07-07 23:24:04 +00:00

38 lines
810 B
Makefile

# New ports collection makefile for: jing
# Date created: 3 February 2002
# Whom: Kimura Fuyuki <fuyuki@mj.0038.net>
#
# $FreeBSD$
#
PORTNAME= jing
PORTVERSION= 2003.06.19
CATEGORIES= textproc
MASTER_SITES= http://www.thaiopensource.com/download/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.//g}
MAINTAINER= ports@FreeBSD.org
COMMENT= A RELAX NG validator in Java
USE_ZIP= yes
USE_JAVA= 1.4+
NO_BUILD= yes
NO_BUILD_DEPENDS_JAVA= yes
.if !defined(NOPORTDOCS)
PORTDOCS= *
.endif
do-install:
${INSTALL_DATA} ${WRKSRC}/bin/jing.jar ${JAVAJARDIR}
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/*.html ${DOCSDIR}
${CP} -R ${WRKSRC}/doc ${DOCSDIR}
${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/sample/* ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>