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 49731 2009-04-17 00:24:08Z raimue@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-moin |
---|
8 | version 1.9.5 |
---|
9 | categories-append www |
---|
10 | maintainers nomaintainer |
---|
11 | license GPL-2+ |
---|
12 | platforms darwin |
---|
13 | description a Python-based WikiEngine |
---|
14 | long_description MoinMoin is an advanced, easy to use \ |
---|
15 | and extensible WikiEngine with a large \ |
---|
16 | community of users. Said in a few words, \ |
---|
17 | it is about collaboration on easily \ |
---|
18 | editable web pages. |
---|
19 | |
---|
20 | homepage http://moinmo.in/ |
---|
21 | master_sites http://static.moinmo.in/files/ |
---|
22 | distname moin-${version} |
---|
23 | checksums rmd160 7cbc818109691a4ee2b65906fe67a010ca862900 \ |
---|
24 | sha256 74e1d1420723aaf202f46082540524987f47c40a444f8444d58d57c66324811c |
---|
25 | |
---|
26 | python.versions 25 26 27 |
---|
27 | python.default_version 27 |
---|
28 | |
---|
29 | if {$subport != $name} { |
---|
30 | post-destroot { |
---|
31 | set docdir ${prefix}/share/doc/${subport} |
---|
32 | xinstall -m 644 -W ${worksrcpath} README ${destroot}${docdir} |
---|
33 | copy ${worksrcpath}/docs ${destroot}${docdir} |
---|
34 | system "chmod -R a+r ${destroot}${python.prefix}/share/moin/underlay/pages" |
---|
35 | } |
---|
36 | } |
---|