Ticket #27499: Portfile

File Portfile, 1.4 KB (added by marshall.perrin@…, 13 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python27 1.0
6
7name                py27-sphinx
8version             1.0.4
9categories-append   textproc devel
10license             BSD
11maintainers         jmr openmaintainer
12description         Python documentation generator
13long_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
20platforms           darwin
21supported_archs     noarch
22
23homepage            http://sphinx.pocoo.org/
24master_sites        http://pypi.python.org/packages/source/S/Sphinx/
25distname            Sphinx-${version}
26
27checksums           md5 d4067e42e75525ecf108ece471ce97bb \
28                    sha1 0186d10064b37e424185d59a6cff8890a170cb3d \
29                    rmd160 8802b918daa7dbdb07fe6ae3c8db415bfad6118a
30
31depends_lib         port:py27-docutils
32depends_run         port:py27-pygments \
33                    port:py27-jinja2
34
35livecheck.type      regex
36livecheck.regex     {<p>Current version: <b>([0-9.]+)</b></p>}