mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
27 lines
557 B
Makefile
27 lines
557 B
Makefile
# Created by: Alex Dupre <ale@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= langspec
|
|
PORTVERSION= 3.0
|
|
CATEGORIES= java
|
|
MASTER_SITES= http://java.sun.com/docs/books/jls/download/
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= The Java Language Specification
|
|
|
|
USES= zip
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_SET_FORCE= DOCS
|
|
|
|
do-install:
|
|
@${ECHO} -n ">> Installing documentation in ${DOCSDIR}..."
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${CP} -R ${WRKSRC}/*.html ${WRKSRC}/*.gif ${WRKSRC}/chars \
|
|
${STAGEDIR}${DOCSDIR}
|
|
@${ECHO} " [ DONE ]"
|
|
|
|
.include <bsd.port.mk>
|