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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-kiwi |
---|
8 | homepage http://www.async.com.br/projects/kiwi |
---|
9 | license LGPL-2.1 |
---|
10 | version 1.9.29 |
---|
11 | revision 0 |
---|
12 | |
---|
13 | python.versions 26 27 |
---|
14 | python.default_version 27 |
---|
15 | |
---|
16 | categories python devel gnome |
---|
17 | platforms darwin |
---|
18 | maintainers ucla.edu:alexander.afanasyev |
---|
19 | supported_archs noarch |
---|
20 | |
---|
21 | description Framework for Python applications with GUIs. |
---|
22 | |
---|
23 | long_description Kiwi is a framework and a set of enhanced PyGTK widgets designed to \ |
---|
24 | make building programs with graphical interfaces both easy to write \ |
---|
25 | and easy to maintain. Kiwi is pure Python and should work \ |
---|
26 | cross-platform, but is developed on Python 2.4, Linux ix86. |
---|
27 | |
---|
28 | distname kiwi-${version} |
---|
29 | set branch [join [lrange [split ${version} .] 0 1] .] |
---|
30 | master_sites gnome:sources/kiwi/${branch}/ |
---|
31 | use_xz yes |
---|
32 | |
---|
33 | checksums rmd160 59e0659aaa535e962613d489934f9a1f89c9cc59 \ |
---|
34 | sha256 32e43540150c03fda8ad55d22a389cf25356fc5216f6ee3febc4a3df9862ecad |
---|
35 | |
---|
36 | livecheck.type regex |
---|
37 | livecheck.url http://ftp.gnome.org/pub/gnome/sources/kiwi/${branch}/ |
---|
38 | livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)} |
---|
39 | |
---|
40 | if {$subport != $name} { |
---|
41 | depends_lib-append port:glib2 \ |
---|
42 | port:py${python.version}-gobject \ |
---|
43 | port:py${python.version}-gtk \ |
---|
44 | port:py${python.version}-numeric |
---|
45 | depends_build-append port:pkgconfig |
---|
46 | } |
---|
47 | |
---|
48 | python.link_binaries_suffix |
---|
49 | |
---|
50 | |
---|