1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 69532 2010-07-09 01:08:45Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | |
---|
7 | name py27-docutils |
---|
8 | version 0.7 |
---|
9 | categories-append textproc |
---|
10 | license GPL-2 PSF-2.1.1 |
---|
11 | maintainers jmr openmaintainer |
---|
12 | description A set of tools for processing plaintext documentation |
---|
13 | long_description Docutils is a set of tools for processing plaintext \ |
---|
14 | documentation into useful formats, such as HTML, XML, \ |
---|
15 | and LaTeX. Includes reStructuredText, the easy to read, \ |
---|
16 | easy to use, what-you-see-is-what-you-get plaintext \ |
---|
17 | markup language. |
---|
18 | platforms darwin |
---|
19 | supported_archs noarch |
---|
20 | |
---|
21 | homepage http://docutils.sourceforge.net/ |
---|
22 | master_sites sourceforge:docutils |
---|
23 | distname docutils-${version} |
---|
24 | |
---|
25 | checksums md5 9aec716baf15d06b5aa57cf8d5591c15 \ |
---|
26 | sha1 e82988f826844ef8d8bf28fa286a19de211349cd \ |
---|
27 | rmd160 73c832860405c3cba655c92aacccca1582c8f905 |
---|
28 | |
---|
29 | depends_lib port:py27-roman |
---|
30 | |
---|
31 | # we want *-2.6.py not *.py-2.6 |
---|
32 | python.link_binaries no |
---|
33 | post-destroot { |
---|
34 | foreach f {rst2html rst2latex rst2man rst2newlatex rst2odt rst2odt_prepstyles rst2pseudoxml rst2s5 rst2xml rstpep2html} { |
---|
35 | ln -s ${python.prefix}/bin/${f}.py ${destroot}${prefix}/bin/${f}-2.6.py |
---|
36 | } |
---|
37 | } |
---|
38 | |
---|
39 | livecheck.url http://sourceforge.net/api/file/index/project-id/38414/rss |
---|
40 | livecheck.regex {docutils/([0-9.]+)} |
---|