1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/java/java-tutorial/Makefile
Michael Haro 5281212be3 chmod -> ${CHMOD}
chown -> ${CHOWN}
1999-08-22 19:01:07 +00:00

37 lines
974 B
Makefile

# New ports collection makefile for: JDK tutorial
# Version required: 1.1.8
# Date created: Tue Mar 23 10:18:20 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
#
# $Id: Makefile,v 1.6 1999/06/28 23:25:49 cpiazza Exp $
#
DISTNAME= tutorial
PKGNAME= jdk-tutorial-1.1.8
CATEGORIES= java
MASTER_SITES= ftp://ftp.javasoft.com/docs/
MAINTAINER= martti.kuparinen@ericsson.com
VERSION= 1.1.8
WRKSRC= ${WRKDIR}
RESTRICTED= "This software is under license and export control."
NO_BUILD= yes
PLIST_SUB+= VERSION=${VERSION}
PKGMESSAGE= ${WRKDIR}/MESSAGE
.include <bsd.port.pre.mk>
post-extract:
(cd ${WRKSRC} && ${CHOWN} -R root.wheel *)
do-install:
${MKDIR} ${PREFIX}/jdk${VERSION}/docs/books/tutorial
(cd ${WRKSRC} && ${TAR} -cf - * ) \
| (cd ${PREFIX}/jdk${VERSION}/docs/books/tutorial && ${TAR} -xf -)
@${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE > ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
@${RM} ${PKGMESSAGE}
.include <bsd.port.post.mk>