04c16f2213
- Convert Makefile headers to new style PR: ports/174683 Submitted by: Po-Chien Lin <linpc_AT_cs.nctu.edu.tw> Approved by: rene, miwi (mentors, implicit)
27 lines
576 B
Makefile
27 lines
576 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= docutils
|
|
PORTVERSION= 0.10
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= SF \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= olivierd@FreeBSD.org
|
|
COMMENT= Python Documentation Utilities
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
BIN_SCRIPTS= rst2html.py rst2s5.py rst2latex.py rst2xetex.py \
|
|
rst2man.py rst2xml.py rst2pseudoxml.py rstpep2html.py \
|
|
rst2odt.py rst2odt_prepstyles.py
|
|
|
|
post-install:
|
|
.for script in ${BIN_SCRIPTS}
|
|
@cd ${PREFIX}/bin && ${LN} -s ${script} ${script:C/\.py//}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|