1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python25 1.0 |
---|
6 | |
---|
7 | name py25-cherrypy3 |
---|
8 | version 3.1.1 |
---|
9 | categories python www |
---|
10 | maintainers akitada openmaintainer |
---|
11 | description Object-Oriented HTTP framework |
---|
12 | long_description CherryPy is a pythonic, object-oriented web \ |
---|
13 | development framework. CherryPy allows developers \ |
---|
14 | to build web applications in much the same way \ |
---|
15 | they would build any other object-oriented Python \ |
---|
16 | program. This usually results in smaller source \ |
---|
17 | code developed in less time. |
---|
18 | platforms darwin |
---|
19 | homepage http://www.cherrypy.org/ |
---|
20 | master_sites http://download.cherrypy.org/cherrypy/${version}/ |
---|
21 | distname CherryPy-${version} |
---|
22 | checksums md5 3a37c6eae833324897f298191ff11ae2 \ |
---|
23 | sha1 0a8aace00ea28adc05edd41e20dd910042e6d265 \ |
---|
24 | rmd160 1d5975ade0b511ad5f116c398938c87ce38d323f |
---|
25 | post-destroot { |
---|
26 | xinstall -m 644 -W ${worksrcpath} \ |
---|
27 | README.txt ${destroot}${prefix}/share/doc/${name} |
---|
28 | move ${destroot}${prefix}/lib/python2.5/site-packages/cherrypy/tutorial \ |
---|
29 | ${destroot}${prefix}/share/doc/${name} |
---|
30 | } |
---|