9d70813916
Brush up pkg-plist. (sorting entries, and replacing version number to %%PORTVERSION%% by using ${PLIST_SUB}) Makefile brush up (generate ${DISTNAME} from ${PORTNAME} and ${PORTVERSION}) PR: 27609 Submitted by: KUNISHIMA Takeo <kunishi@acm.org>
32 lines
706 B
Makefile
32 lines
706 B
Makefile
# New ports collection makefile for: jakarta-ant
|
|
# Date created: 21 February 2001
|
|
# Whom: ernst@jollem.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xalan-j
|
|
PORTVERSION= 2.1.0
|
|
CATEGORIES= java textproc
|
|
MASTER_SITES= http://xml.apache.org/dist/${PORTNAME}/ \
|
|
http://xml.apache.org/dist/old/${PORTNAME}/ \
|
|
http://www.jollem.com/~ernst/
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/g}
|
|
|
|
MAINTAINER= ernst@jollem.com
|
|
|
|
RUN_DEPENDS= ${JAVAVM}:${PORTSDIR}/java/javavmwrapper
|
|
|
|
JAVAVM?= ${LOCALBASE}/bin/javavm
|
|
|
|
NO_BUILD= YES
|
|
PORTDESTDIR= ${PREFIX}/${PORTNAME}${PORTVERSION}
|
|
|
|
PLIST_SUB= PORTVERSION="${PORTVERSION}"
|
|
|
|
do-install:
|
|
@${MKDIR} ${PORTDESTDIR}
|
|
@${CP} -r ${WRKSRC}/* ${PORTDESTDIR}
|
|
|
|
.include <bsd.port.mk>
|