blob: e3724a56e410b04ee786dfe2277f94b8ee7ed4f8 (
plain) (
blame)
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
|
# Created by: ijliao
# $FreeBSD$
#
PORTNAME= docutils
PORTVERSION= 0.11
CATEGORIES= textproc python
MASTER_SITES= SF \
CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= olivierd@FreeBSD.org
COMMENT= Python Documentation Utilities
USE_PYTHON= yes
USE_PYDISTUTILS= yes
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
OPTIONS_DEFINE= PYGMENTS
PYGMENTS_DESC= Syntax highlighting
BIN_SCRIPTS= rst2html.py rst2s5.py rst2latex.py rst2xetex.py \
rst2man.py rst2xml.py rst2pseudoxml.py rstpep2html.py \
rst2odt.py rst2odt_prepstyles.py
.include <bsd.port.options.mk>
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MPYGMENTS}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments
.endif
.if ${PYTHON_REL} >= 320
.include "${PORTSDIR}/devel/py-virtualenv/files/py3k-fix-pkg-plist.inc"
.endif
post-install:
.for script in ${BIN_SCRIPTS}
@cd ${PREFIX}/bin && ${LN} -sf ${script} ${script:C/\.py//}
.endfor
.include <bsd.port.post.mk>
|