Ticket #7149: Portfile

File Portfile, 1.4 KB (added by erickt@…, 18 years ago)

portfile for py-config

Line 
1# $Id: Portfile,v 1.9 2004/12/28 06:54:54 mww Exp $
2
3PortSystem 1.0
4PortGroup python24 1.0
5
6name                py-config
7version             0.3.4
8categories          python
9maintainers         erickt@opendarwin.org
10platforms           darwin freebsd
11description         A hierarchical, easy-to-use, powerful configuration module for Python \
12long_description    This module allows a hierarchical configuration scheme with support for mappings \
13                        and sequences, cross-references between one part of the configuration and \
14                        another, the ability to flexibly access real Python objects without full-blown \
15                        eval(), an include facility, simple expression evaluation and the ability to \
16                        change, save, cascade and merge configurations. Interfaces easily with \
17                        environment variables and command-line options. It has been developed on python \
18                        2.3 but should work on version 2.2 or greater.
19
20homepage            http://www.red-dove.com/python-config.html
21master_sites        http://www.red-dove.com
22distname            config-${version}
23checksums           md5 770e92d78b690fe549c8c0d872cd1fdb
24
25post-destroot {
26        xinstall -m 644 -v -W ${worksrcpath} LICENSE README.txt default.css python_config.html \
27                ${destroot}${prefix}/share/doc/${name}/
28}