090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
34 lines
945 B
Makefile
34 lines
945 B
Makefile
# New ports collection makefile for: Java Cryptograph Extension by Cryptix
|
|
# Date created: 2000/02/19
|
|
# Whom: Kensaku Masuda <greg@greg.rim.or.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cryptix-jce
|
|
PORTVERSION= 20050328
|
|
PORTREVISION= 2
|
|
CATEGORIES= java security
|
|
MASTER_SITES= http://www.cryptix.org/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-snap
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= JCE (Java Cryptography Extension) by Cryptix
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.1+
|
|
USE_ZIP= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-api.jar ${JAVAJARDIR}/
|
|
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-compat.jar ${JAVAJARDIR}/
|
|
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-provider.jar ${JAVAJARDIR}/
|
|
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-tests.jar ${JAVAJARDIR}/
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKDIR}/README.TXT ${DOCSDIR}/
|
|
${INSTALL_DATA} ${WRKDIR}/LICENCE.TXT ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|