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 71614 2010-09-18 04:06:05Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | |
---|
7 | name py27-sphinx |
---|
8 | version 1.0.4 |
---|
9 | categories-append textproc devel |
---|
10 | license BSD |
---|
11 | maintainers jmr openmaintainer |
---|
12 | description Python documentation generator |
---|
13 | long_description \ |
---|
14 | Sphinx is a tool that makes it easy to create intelligent and beautiful \ |
---|
15 | documentation for Python projects (or other documents consisting of \ |
---|
16 | multiple reStructuredText sources), written by Georg Brandl. It was \ |
---|
17 | originally created to translate the new Python documentation, but has now \ |
---|
18 | been cleaned up in the hope that it will be useful to many other projects. |
---|
19 | |
---|
20 | platforms darwin |
---|
21 | supported_archs noarch |
---|
22 | |
---|
23 | homepage http://sphinx.pocoo.org/ |
---|
24 | master_sites http://pypi.python.org/packages/source/S/Sphinx/ |
---|
25 | distname Sphinx-${version} |
---|
26 | |
---|
27 | checksums md5 d4067e42e75525ecf108ece471ce97bb \ |
---|
28 | sha1 0186d10064b37e424185d59a6cff8890a170cb3d \ |
---|
29 | rmd160 8802b918daa7dbdb07fe6ae3c8db415bfad6118a |
---|
30 | |
---|
31 | depends_lib port:py27-docutils |
---|
32 | depends_run port:py27-pygments \ |
---|
33 | port:py27-jinja2 |
---|
34 | |
---|
35 | livecheck.type regex |
---|
36 | livecheck.regex {<p>Current version: <b>([0-9.]+)</b></p>} |
---|