mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 09:11:50 -04:00
Update to Mar 11, 2004 Submitted by: maintainer Reminded by: Gerald Mixa <Symicon@t-online.de>
38 lines
958 B
Makefile
38 lines
958 B
Makefile
# New ports collection makefile for: JDK tutorial
|
|
# Date created: Tue Mar 23 10:18:20 EET 1999
|
|
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# Install size for version 2004.03.11 is ~22827 kB.
|
|
|
|
PORTNAME= jdk-tutorial
|
|
PORTVERSION= 2004.03.11
|
|
CATEGORIES= java
|
|
MASTER_SITES= http://java.sun.com/docs/books/tutorial/download/
|
|
DISTNAME= tutorial
|
|
|
|
MAINTAINER= parv@pair.com
|
|
COMMENT= Official Java 2 SDK tutorial
|
|
|
|
NO_WRKSUBDIR= yes
|
|
RESTRICTED= "This software is under license and export control."
|
|
NO_BUILD= yes
|
|
USE_ZIP= yes
|
|
TARGET_DIR= ${PREFIX}/share/doc/java-tutorial/
|
|
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
@${ECHO} -n ">> Creating directory ${TARGET_DIR}..."
|
|
@${MKDIR} ${TARGET_DIR}
|
|
@${ECHO} " [ DONE ]"
|
|
|
|
@${ECHO} -n ">> Copying files..."
|
|
@${CP} -R ${WRKSRC}/* ${TARGET_DIR}
|
|
@${CHOWN} -h -R ${DOCOWN}:${DOCGRP} ${TARGET_DIR}
|
|
@${ECHO} " [ DONE ]"
|
|
|
|
.include <bsd.port.post.mk>
|