mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
8b223b0637
- STAGEDIR - Replace USE_PYDISTUTILS= easy_install by USE_PYDISTUTILS= yes While I'm here - Use PYDISTUTILS_AUTOPLIST - Adjust or add LICENSE
38 lines
878 B
Makefile
38 lines
878 B
Makefile
# 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
|
|
PYTHON_PY3K_PLIST_HACK= 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>
|
|
|
|
.if ${PORT_OPTIONS:MPYGMENTS}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments
|
|
.endif
|
|
|
|
post-install:
|
|
.for script in ${BIN_SCRIPTS}
|
|
@cd ${STAGEDIR}${PREFIX}/bin && ${LN} -sf ${script} ${script:C/\.py//}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|