1581becd33
Major Changes Since Docutils 0.3.7 ================================== * Added "file_insertion_enabled" and "raw_enabled" settings. See <http://docutils.sf.net/docs/user/config.html#file-insertion-enabled>. * Added auto-enumerated lists. See <http://docutils.sf.net/docs/ref/rst/restructuredtext.html#enumerated-lists>. * Added "header" and "footer" directives. See <http://docutils.sf.net/docs/ref/rst/directives.html#document-header-footer>. * Added "list-table" directive. See <http://docutils.sf.net/docs/ref/rst/directives.html#list-table>. * Added support for section subtitles. See <http://docutils.sf.net/docs/user/config.html#sectsubtitle-xform>. * Added "field_name_limit" and "option_limit" settings to HTML writer. See <http://docutils.sf.net/docs/user/config.html#field-name-limit>. * Added "cloak_email_addresses" setting to HTML writer. See <http://docutils.sf.net/docs/user/config.html#cloak-email-addresses>. * UTF-8 BOMs are now removed from the input stream. * Many minor improvements and bug fixes. See <http://docutils.sf.net/HISTORY.html#release-0-3-9-2005-05-26
24 lines
557 B
Makefile
24 lines
557 B
Makefile
# $NetBSD: Makefile,v 1.16 2005/12/10 15:59:28 darcy Exp $
|
|
|
|
DISTNAME= docutils-0.3.9
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=docutils/}
|
|
|
|
MAINTAINER= darcy@NetBSD.org
|
|
HOMEPAGE= http://docutils.sf.net/
|
|
COMMENT= Python tool to generate documents
|
|
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23 22 21
|
|
PYDISTUTILSPKG= YES
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
|
|
.if !empty(PYVERSSUFFIX:M2*[12])
|
|
PLIST_SUBST+= PYSTDMODULE=""
|
|
.else
|
|
PLIST_SUBST+= PYSTDMODULE="@comment "
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|