1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

Using PORTDOCS macro.

This commit is contained in:
Ernst de Haan 2004-04-15 23:27:41 +00:00
parent 583ef52daf
commit 4ab45882f5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=107172

View File

@ -12,22 +12,23 @@ MASTER_SITES= #
DISTNAME= j2sdk-${JDK_VERSION:S/./_/g}-doc
MAINTAINER= znerd@FreeBSD.org
COMMENT= Java Development Kit 1.3 Documentation
COMMENT= Java Development Kit ${JDK_MAJOR_VER} Documentation
LATEST_LINK= jdk13-doc
LATEST_LINK= jdk${JDK_CONCAT_VER}-doc
DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
NO_CDROM= "License does not allow distribution with fee."
RESTRICTED= "This documentation is under license and export control."
TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER}
WRKSRC= ${WRKDIR}/docs
JDK_VERSION= 1.3.1
JDK_MAJOR_VER= ${JDK_VERSION:R}
DOWNLOAD_URL= http://java.sun.com/webapps/download/Display?BundleId=8717
JDK_CONCAT_VER= ${JDK_MAJOR_VER:S/.//g}
SUN_BUNDLE_ID= 8717
DOWNLOAD_URL= http://java.sun.com/webapps/download/Display?BundleId=${SUN_BUNDLE_ID}
NO_BUILD= yes
PLIST= ${WRKDIR}/PLIST
USE_ZIP= yes
PORTDOCS= api guide images index.html relnotes tooldocs
.include <bsd.port.pre.mk>
@ -35,26 +36,10 @@ USE_ZIP= yes
IGNORE=You must manually fetch ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
pre-install:
@${ECHO_CMD} -n ">> Removing ${PLIST}..."
@${RM} -f ${PLIST}
@${TOUCH} ${PLIST}
@${ECHO_CMD} " [ DONE ]"
do-install:
@${ECHO_CMD} -n ">> Creating directory ${TARGET_DIR}..."
@${MKDIR} ${TARGET_DIR}
@${ECHO_CMD} " [ DONE ]"
@${ECHO_CMD} -n ">> Copying files..."
@${CP} -r ${WRKSRC}/* ${TARGET_DIR}
@${ECHO_CMD} " [ DONE ]"
@${ECHO_CMD} -n ">> Creating packing list..."
@${FIND} ${TARGET_DIR} -type f -print | \
${SED} "s,${PREFIX}/*,," >> ${PLIST}
@${FIND} ${TARGET_DIR} -type d -print | ${SORT} -r | \
${SED} -e "s,${PREFIX}/*,," -e "s,^,@dirrm ,g" >> ${PLIST}
@${ECHO_CMD} " [ DONE ]"
@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
@${MKDIR} ${DOCSDIR}
@${CP} -R ${WRKSRC}/* ${DOCSDIR}
@${ECHO} " [ DONE ]"
.include <bsd.port.post.mk>