1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 73249 2010-11-07 16:02:04Z alakazam@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python27 1.0 |
---|
6 | |
---|
7 | name py27-south |
---|
8 | version 0.7.3 |
---|
9 | categories-append www |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainer |
---|
12 | homepage http://south.aeracode.org/ |
---|
13 | description South provides intelligent schema migrations for Django apps |
---|
14 | long_description South provides intelligent, database-independant, \ |
---|
15 | semi-automatic, schema migrations for Django apps. |
---|
16 | |
---|
17 | master_sites http://www.aeracode.org/releases/south/ |
---|
18 | distname south-${version} |
---|
19 | worksrcdir south |
---|
20 | checksums md5 693a2a7a57b29c49bc177fe951e04767 \ |
---|
21 | sha1 f5a1e811f4c028874c7e617e7eba60d0a9e9dd71 \ |
---|
22 | rmd160 4c0a56139905624480f6b18b3ee3d81a7a13cb29 |
---|
23 | |
---|
24 | depends_lib-append port:py27-distribute |
---|
25 | |
---|
26 | post-destroot { |
---|
27 | file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}/docs |
---|
28 | } |
---|
29 | |
---|
30 | livecheck.type regex |
---|
31 | livecheck.url ${homepage} |
---|
32 | livecheck.regex "/wiki/ReleaseNotes/(0\.\[0-9\]+\.\[0-9\]+)" |
---|