ac7a7d6fe1
USES=java:ant does not imply USES=java:run so we need to add the run arg seperately when we are using USES=java:ant. Not all ports require the the argument so it is better to address the ports individually instead of handling it automatically by implying run for ant. Thanks to vvd for carefully going through this. Reported by: vvd Approved by: portmgr (blanket)
22 lines
439 B
Makefile
22 lines
439 B
Makefile
PORTNAME= jsch
|
|
PORTVERSION= 0.1.55
|
|
PORTREVISION= 1
|
|
CATEGORIES= net java security
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Pure Java implementation of SSH2
|
|
WWW= http://www.jcraft.com/jsch
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= cpe java:ant,run zip
|
|
CPE_VENDOR= jcraft
|
|
|
|
PLIST_FILES+= %%JAVAJARDIR%%/${PORTNAME}.jar
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/dist/lib/*.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
|
|
.include <bsd.port.mk>
|