blob: b35788660494f8a809cf772ca5c9de0895356f41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
PORTNAME= python-doc-${DOCFORMAT}
DISTVERSION= ${PYTHON_DISTVERSION}
CATEGORIES= lang python
MASTER_SITES= PYTHON/ftp/python/doc/${DISTVERSION} \
PYTHON/ftp/python/doc/current
DISTNAME= python-${DISTVERSION}-docs-${DOCFORMAT}
DIST_SUBDIR= python
MAINTAINER= python@FreeBSD.org
COMMENT= Documentation for the Python programming language
WWW= https://www.python.org/doc/
PORTSCOUT= ignore:1
USES= python:3.6-3.10,env tar:bzip2
NO_ARCH= yes
NO_BUILD= yes
DOCSDIR= ${PREFIX}/share/doc/${PYTHON_VERSION}
PLIST= ${WRKDIR}/pkg-plist.${DOCFORMAT}
DOCFORMATS= html pdf-a4 pdf-letter text
DOCFORMAT?= html
.if empty(DOCFORMATS:M${DOCFORMAT})
IGNORE= invalid value for DOCFORMAT: "${DOCFORMAT}", possible values are: ${DOCFORMATS:ts,:S/,/, /g}
.endif
.if ${DOCFORMAT} != "html" && ${DOCFORMAT} != "text"
WRKSRC= ${WRKDIR}/docs-pdf
.endif
.if make(all_python_versions)
_VERS!= ${MAKE} -V _PYTHON_VERSIONS:O
.endif
all_python_versions:
.for v in ${_VERS}
@${MAKE} -C ${PORTSDIR}/lang/python${v:S/.//} -V PYTHON_DISTVERSION
.endfor
.if make(makesum)
ALL_PYTHON_VERSIONS!= ${MAKE} all_python_versions
.endif
.if make(makesum)
MASTER_SITES=
.for v in ${ALL_PYTHON_VERSIONS}
MASTER_SITES+= PYTHON/ftp/python/doc/${v}:${v:S/./x/g}
.for f in ${DOCFORMATS}
DISTFILES+= python-${v}-docs-${f}${EXTRACT_SUFX}:${v:S/./x/g},DEFAULT
.endfor
.endfor
MASTER_SITES+= PYTHON/ftp/python/doc/current
.export MASTER_SITES
.endif
pre-install:
@${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.mk>
|