Commits
reneeotten authored and Frank Schima committed 00550c00eee
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 + | PortGroup deprecated 1.0 |
5 6 | |
6 7 | name py-piddle |
7 8 | version 1.0.15 |
8 9 | revision 1 |
9 10 | categories-append graphics |
10 11 | license LGPL |
11 12 | platforms darwin |
12 13 | supported_archs noarch |
13 14 | maintainers nomaintainer |
14 15 | description python module for creating two-dimensional graphics |
15 16 | long_description PIDDLE is a Python module for creating two-dimensional \ |
16 17 | graphics in a manner that is both cross-platform and \ |
17 18 | cross-media. That is, it can support screen graphics \ |
18 19 | (e.g. QuickDraw, Windows, Tk) as well as file output \ |
19 20 | (PostScript, PDF, GIF, etc.). |
20 21 | |
21 22 | homepage http://piddle.sourceforge.net/ |
22 23 | master_sites sourceforge:piddle |
23 24 | distname piddle-${version} |
24 - | checksums md5 b199bee7379e40737673573f5f0e5d9f |
25 + | checksums md5 b199bee7379e40737673573f5f0e5d9f \ |
26 + | rmd160 26661e1bdf90b6791a8e3baa24269bd54cab039f \ |
27 + | sha256 84c33ba0d054e6b585005aae3a4a99aa5e0d735798fb015c220c24a548d1364d \ |
28 + | size 454044 |
29 + | |
30 + | deprecated.upstream_support no |
25 31 | |
26 32 | python.versions 27 |
27 33 | |
28 34 | if {${name} ne ${subport}} { |
29 35 | post-destroot { |
30 36 | file delete -force ${destroot}${prefix}/share/doc/${subport} |
31 37 | file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${subport} |
32 - | xinstall -m 644 -W ${worksrcpath} README.txt \ |
38 + | xinstall -m 0644 -W ${worksrcpath} README.txt \ |
33 39 | ${destroot}${prefix}/share/doc/${subport} |
34 40 | } |
41 + | |
42 + | livecheck.type none |
43 + | } else { |
44 + | livecheck.regex piddle-(\[0-9.\]+)${extract.suffix} |
35 45 | } |