1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/java/jdk-doc/Makefile
Satoshi Taoka 5cf438851d Change bsd.port.mk -> bsd.port.post.mk
Modify the method to make MESSAGE when we "make install"

Noticed by:		asami@FreeBSD.org (Satoshi - Ports Wraith - Asami)
1999-05-06 00:14:04 +00:00

46 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.3 1999/05/05 15:07:34 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
PKGMESSAGE= ${WRKDIR}/MESSAGE
.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 -)
@${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE > ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>