freebsd-ports/java/jdk-doc/Makefile
Steve Price b07e71ed4f Fixes from maintainer:
This patch does the following things:
    - show some **very** useful links after installing the port
    - use ${TAR} instead of just tar and prepend arguments with a `-'

PR:		10703
Submitted by:	maintainer
1999-03-22 02:21:30 +00:00

45 lines
1.2 KiB
Makefile

# New ports collection makefile for: JDK documentation
# Version required: 1.1.7
# Date created: Mon Mar 8 10:10:42 EET 1999
# Whom: Martti Kuparinen <martti.kuparinen@ericsson.com>
#
# $Id: Makefile,v 1.1.1.1 1999/03/18 05:16:45 taoka Exp $
#
DISTNAME= jdk117B-doc
PKGNAME= jdk-doc-1.1.7
CATEGORIES= lang
MAINTAINER= martti.kuparinen@ericsson.com
RESTRICTED= "This software is under license and export control."
IS_INTERACTIVE= "Requires manual fetch"
WRKSRC= ${WRKDIR}/jdk1.1.7B
NO_BUILD= yes
.include <bsd.port.pre.mk>
do-fetch:
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
@echo ''
@echo 'You have to fetch the documentation from'
@echo ' http://java.sun.com/products/jdk/1.1/docs.html'
@echo ''
@echo 'Put ${DISTNAME}${EXTRACT_SUFX} in in ${DISTDIR}/ and run make again.'
@echo ''
@echo 'All this hassle is because of the license and export restrictions'
@echo 'as described in'
@echo ' http://java.sun.com/feedback/faq/downloading.html'
@echo ''
@exit 1
.endif
do-install:
${MKDIR} ${PREFIX}/jdk1.1.7
(cd ${WRKSRC} && ${TAR} -cf - docs) \
| (cd ${PREFIX}/jdk1.1.7 && ${TAR} -xf -)
post-install:
@${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE
.include <bsd.port.mk>