mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
45 lines
1.4 KiB
Makefile
45 lines
1.4 KiB
Makefile
# New ports collection makefile for: Java Foundation Classes with Swing
|
|
# Date created: 17 May 1999
|
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jfc
|
|
PORTVERSION= 1.1.1
|
|
CATEGORIES= java
|
|
MASTER_SITES= http://java.sun.com/products/jfc/
|
|
DISTNAME= swing1_1_1
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= kuriyama@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${PREFIX}/jdk${JDK_VERSION}/bin/java:${PORTSDIR}/java/jdk
|
|
|
|
USE_ZIP= YES
|
|
RESTRICTED= "Can only be distributed with value added application"
|
|
WRKSRC= ${WRKDIR}/swing-1.1.1fcs
|
|
NO_BUILD= YES
|
|
PLIST_SUB= JFCSUBDIR=${PKGNAME}
|
|
|
|
JDK_VERSION= 1.1.8
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE='You must manually fetch the standard zip format distribution from http://www.javasoft.com/products/jfc/download.html and place it in ${DISTDIR} then run make again.'
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/share/java/classes/${PKGNAME}/
|
|
@${CP} ${WRKSRC}/*.jar ${PREFIX}/share/java/classes/${PKGNAME}/
|
|
@${MKDIR} ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} ${WRKSRC}/CHANGES.txt ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} ${WRKSRC}/LICENSE.txt ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} ${WRKSRC}/README.html ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} ${WRKSRC}/README.txt ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} -R ${WRKSRC}/doc ${PREFIX}/share/java/${PKGNAME}/
|
|
@${CP} -R ${WRKSRC}/examples ${PREFIX}/share/java/${PKGNAME}/
|
|
|
|
.include <bsd.port.post.mk>
|