diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2014-02-17 18:05:02 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2014-02-17 18:05:02 +0000 |
commit | d7dfdd349389119fa53d9ad40a48f7ee67adb8fc (patch) | |
tree | 6cd3ae4986dfc3d03149d880606936137dbd1fb6 /textproc | |
parent | 7187a4cec906519c00989f913216c3f83a73ab63 (diff) |
Notes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/docbook-tdg/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/textproc/docbook-tdg/Makefile b/textproc/docbook-tdg/Makefile index a5e7ee1d00ee..1f2fc16cc42a 100644 --- a/textproc/docbook-tdg/Makefile +++ b/textproc/docbook-tdg/Makefile @@ -6,20 +6,17 @@ PORTVERSION= 2.0.17 CATEGORIES= textproc MASTER_SITES= http://www.docbook.org/tdg/en/ DISTNAME= tdg-en-html-${PORTVERSION} +EXTRACT_SUFX= .zip MAINTAINER= ports@FreeBSD.org COMMENT= Norman Walsh's book "DocBook: The Definitive Guide" -USE_ZIP= yes NO_BUILD= yes WRKSRC= ${WRKDIR}/tdg/en -NO_STAGE= yes do-install: -.for D in html/figures/callouts html/figures/admon html/figures html - ${MKDIR} ${DOCSDIR}/${D} - ${INSTALL_DATA} ${WRKSRC}/${D}/*.* ${DOCSDIR}/${D}/ -.endfor - ${INSTALL_DATA} ${FILESDIR}/index.html ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${FILESDIR}/index.html ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |