diff options
author | obrien <obrien@FreeBSD.org> | 2000-04-12 06:21:15 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-04-12 06:21:15 +0000 |
commit | 279d0c568395b4252ea7d025ef414367c67379c0 (patch) | |
tree | 8f72921d00682487baa00cb9380ca8975f5469ce /java/jdk-tutorial | |
parent | 98e3a046d36f9f73a339aeedddb8c7f75429c5fe (diff) | |
download | FreeBSD-ports-279d0c568395b4252ea7d025ef414367c67379c0.zip FreeBSD-ports-279d0c568395b4252ea7d025ef414367c67379c0.tar.gz |
Convert to the PORTNAME - PORTVERSION syntax.
Diffstat (limited to 'java/jdk-tutorial')
-rw-r--r-- | java/jdk-tutorial/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/java/jdk-tutorial/Makefile b/java/jdk-tutorial/Makefile index 31352a5..be69532 100644 --- a/java/jdk-tutorial/Makefile +++ b/java/jdk-tutorial/Makefile @@ -1,31 +1,31 @@ # 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> # # $FreeBSD$ # -DISTNAME= tutorial -PKGNAME= jdk-tutorial-1.1.8 +PORTNAME= jdk-tutorial +PORTVERSION= 1.1.8 CATEGORIES= java MASTER_SITES= ftp://ftp.javasoft.com/docs/ +DISTNAME= tutorial 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} +PLIST_SUB+= VERSION=${PORTVERSION} PKGMESSAGE= ${WRKDIR}/MESSAGE .include <bsd.port.pre.mk> do-install: - ${MKDIR} ${PREFIX}/jdk${VERSION}/docs/books/tutorial + ${MKDIR} ${PREFIX}/jdk${PORTVERSION}/docs/books/tutorial (cd ${WRKSRC} && ${TAR} -cf - * ) \ - | (cd ${PREFIX}/jdk${VERSION}/docs/books/tutorial && ${TAR} -xf -) + | (cd ${PREFIX}/jdk${PORTVERSION}/docs/books/tutorial \ + && ${TAR} -xf -) @${SED} s+!!PREFIX!!+${PREFIX}+g < ${PKGDIR}/MESSAGE > ${PKGMESSAGE} @${CAT} ${PKGMESSAGE} @${RM} ${PKGMESSAGE} |