3813a5dbe7
Python 2.6 will be the next default python version when enough testings of consumer ports are done. The new "2to3" program is renamed to 2to3-2.6 and 2to3-3.0 for each version, respectively. Repo-copied by: marcus
69 lines
2 KiB
Makefile
69 lines
2 KiB
Makefile
# New ports collection makefile for: python-doc
|
|
# Date created: 12 May 1999
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= python-doc-${DOCFORMAT}
|
|
PORTVERSION= ${PYTHON_PORTVERSION}
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= ${MASTER_SITE_PYTHON}
|
|
MASTER_SITE_SUBDIR= ftp/python/doc/${PORTVERSION}
|
|
DISTNAME= ${DOCFORMAT}-${PORTVERSION}
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= Documentation for the Python programming language
|
|
|
|
DIST_SUBDIR= python
|
|
USE_PYTHON= yes
|
|
USE_BZIP2= yes
|
|
NO_BUILD= yes
|
|
PLIST= ${WRKDIR}/pkg-plist_${DOCFORMAT}
|
|
|
|
WRKSRC= ${WRKDIR}/Python-Docs-${PORTVERSION}
|
|
DOCDIR= ${PREFIX}/share/doc/${PYTHON_VERSION}
|
|
|
|
DOCFORMAT?= html
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 260
|
|
.if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "pdf-a4" && ${DOCFORMAT} != "pdf-letter" && ${DOCFORMAT} != "postscript-a4" && ${DOCFORMAT} != "postscript-letter"
|
|
.BEGIN:
|
|
@${ECHO} "ERROR: invalid value for DOCFORMAT: \"${DOCFORMAT}\""
|
|
@${ECHO} "Possible values are: html, pdf-a4, pdf-letter,"
|
|
@${ECHO} "postscript-a4, postscript-letter."
|
|
@${FALSE}
|
|
.endif
|
|
.else # ${PYTHON_REL} >= 260
|
|
.if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "pdf-a4" && ${DOCFORMAT} != "pdf-letter"
|
|
.BEGIN:
|
|
@${ECHO} "ERROR: invalid value for DOCFORMAT: \"${DOCFORMAT}\""
|
|
@${ECHO} "Possible values are: html, pdf-a4, pdf-letter."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
DISTNAME= python-docs-${DOCFORMAT}
|
|
DIST_SUBDIR= python${PYTHON_REL}
|
|
.if ${DOCFORMAT} == "html"
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
.else
|
|
WRKSRC= ${WRKDIR}/docs-pdf
|
|
.endif # ${DOCSFORMAT} == "html"
|
|
.endif # ${PYTHON_REL} < 260
|
|
|
|
pre-install:
|
|
@cd ${WRKSRC} && (${FIND} . -type f | \
|
|
${SED} -e 's,^\.,share/doc/${PYTHON_VERSION},' | ${SORT} \
|
|
> ${PLIST})
|
|
@cd ${WRKSRC} && (${FIND} * -type d | \
|
|
${SED} -e 's,^,@dirrm share/doc/${PYTHON_VERSION}/,' | \
|
|
${SORT} -r) >> ${PLIST}
|
|
@${ECHO_CMD} "@dirrmtry share/doc/%%PYTHON_VERSION%%" >> ${PLIST}
|
|
|
|
do-install:
|
|
@${MKDIR} ${DOCDIR}
|
|
@${TAR} -C ${WRKSRC} -cf - . | ${TAR} -C ${DOCDIR} -xf -
|
|
|
|
.include <bsd.port.post.mk>
|