blob: cde9ee7d647ca39ab448a56ae3b341d77e3fe1db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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= 20011118
CATEGORIES= java security
MASTER_SITES= http://opensores.thebunker.net/pub/mirrors/cryptix/dist/ \
http://www.mirrors.wiretapped.net/security/cryptography/libraries/cryptix/cryptix-jce/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= znerd
DISTNAME= ${PORTNAME}-${PORTVERSION}-snap
MAINTAINER= znerd@FreeBSD.org
COMMENT= JCE(Java Cryptograph Extension) by Cryptix
USE_JAVA= 1.1+
USE_ZIP= yes
NO_BUILD= yes
RESTRICTED= Testing purpose only (from README.TXT).
do-install:
@${MKDIR} ${PREFIX}/share/java/classes
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-api.jar ${PREFIX}/share/java/classes/
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-compat.jar ${PREFIX}/share/java/classes/
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-provider.jar ${PREFIX}/share/java/classes/
${INSTALL_DATA} ${WRKDIR}/bin/${PORTNAME}-tests.jar ${PREFIX}/share/java/classes/
.include <bsd.port.mk>
|