aboutsummaryrefslogtreecommitdiffstats
path: root/java/java-tutorial/Makefile
blob: 20ac9d267ce5b781358b8900548d36ff506fbc3d (plain) (blame)
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
33
# 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$
#

PORTNAME=   jdk-tutorial
PORTVERSION=    1.1.8
CATEGORIES= java
MASTER_SITES=   ftp://ftp.javasoft.com/docs/
DISTNAME=   tutorial

MAINTAINER= martti.kuparinen@ericsson.com

NO_WRKSUBDIR=   yes
RESTRICTED= "This software is under license and export control."
NO_BUILD=   yes
PLIST_SUB+= VERSION=${PORTVERSION}
PKGMESSAGE= ${WRKDIR}/MESSAGE

.include <bsd.port.pre.mk>

do-install:
    ${MKDIR} ${PREFIX}/jdk${PORTVERSION}/docs/books/tutorial
    (cd ${WRKSRC} && ${TAR} -cf - * ) \
        | (cd ${PREFIX}/jdk${PORTVERSION}/docs/books/tutorial \
            && ${TAR} -xf -)
    @${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE > ${PKGMESSAGE}
    @${CAT} ${PKGMESSAGE}
    @${RM} ${PKGMESSAGE}

.include <bsd.port.post.mk>