diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2016-01-01 06:35:50 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2016-01-01 06:35:50 +0000 |
commit | ae9226c1e7c0b617bd8a511760041418b74b11e3 (patch) | |
tree | 456834c6422e7ae6ee0ea434896f00ca15d646ee /lang/python-doc-html | |
parent | 46f885361d90689664d321be4e1df84663beee79 (diff) |
Notes
Diffstat (limited to 'lang/python-doc-html')
-rw-r--r-- | lang/python-doc-html/Makefile | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/lang/python-doc-html/Makefile b/lang/python-doc-html/Makefile index dc18985d8b0d..995e35a02972 100644 --- a/lang/python-doc-html/Makefile +++ b/lang/python-doc-html/Makefile @@ -14,6 +14,7 @@ COMMENT= Documentation for the Python programming language PORTSCOUT= ignore:1 +NO_ARCH= yes NO_BUILD= yes USES= python:build tar:bzip2 @@ -22,23 +23,19 @@ PLIST= ${WRKDIR}/pkg-plist.${DOCFORMAT} DOCFORMAT?= html -.include <bsd.port.pre.mk> +.if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "pdf-a4" && ${DOCFORMAT} != "pdf-letter" && ${DOCFORMAT} != "text" +IGNORE= invalid value for DOCFORMAT: "${DOCFORMAT}", possible values are: text, html, pdf-a4, pdf-letter +.endif -. if ${DOCFORMAT} == "html" || ${DOCFORMAT} == "text" -WRKSRC= ${WRKDIR}/${DISTNAME} -. else +.if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "text" WRKSRC= ${WRKDIR}/docs-pdf -. endif -. if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "pdf-a4" && ${DOCFORMAT} != "pdf-letter" && ${DOCFORMAT} != "text" -IGNORE= invalid value for DOCFORMAT: "${DOCFORMAT}", possible values are: text, html, pdf-a4, pdf-letter -. endif +.endif pre-install: - @cd ${WRKSRC} && \ - (${FIND} . -type f | ${SED} -e 's|^\./|%%DOCSDIR%%/|' | ${SORT}) > ${PLIST} + @${FIND} ${WRKSRC} -type f | ${SED} -e 's|^${WRKSRC}|%%DOCSDIR%%|' | ${SORT} > ${PLIST} do-install: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |