- Update maintainer address - Create symlink for scripts (request by email) Submitted by: myself Approved by: miwi, rene (mentors)
31 lines
662 B
Makefile
31 lines
662 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: py-docutils
|
|
# Date created: Sep 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= docutils
|
|
PORTVERSION= 0.9.1
|
|
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>
|