Commits
David B. Evans authored daa810c60d7
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 | |
5 5 | name vala |
6 - | version 0.42.6 |
6 + | version 0.42.7 |
7 7 | set branch [join [lrange [split ${version} .] 0 1] .] |
8 8 | categories lang |
9 9 | maintainers nomaintainer |
10 10 | description Compiler for the GObject type system |
11 11 | long_description Vala is a new programming language that aims to bring modern programming \ |
12 12 | language features to GNOME developers without imposing any additional \ |
13 13 | runtime requirements and without using a different ABI compared to \ |
14 14 | applications and libraries written in C. |
15 15 | |
16 16 | platforms darwin |
17 17 | license LGPL-2.1+ |
18 18 | |
19 19 | homepage https://wiki.gnome.org/Projects/Vala |
20 20 | master_sites gnome:sources/${name}/${branch}/ |
21 21 | |
22 22 | use_xz yes |
23 23 | |
24 - | checksums rmd160 bcb307cfe880a14cf2ff70d04d20e9ac08dddd72 \ |
25 - | sha256 3774f46fed70f528d069beaa2de5eaeafa2851c3509856dd10030fa1f7230290 \ |
26 - | size 3354840 |
24 + | checksums rmd160 4731fd8b2688cc7b17c9d046855f25212802f676 \ |
25 + | sha256 03dd5226e373eb1f0a602411f87e5c64213e2791139ce23f0fa8d0dbf4d23309 \ |
26 + | size 3362192 |
27 27 | |
28 28 | depends_build port:pkgconfig \ |
29 29 | port:bison \ |
30 30 | port:flex \ |
31 31 | port:libxslt |
32 32 | |
33 33 | depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \ |
34 34 | path:bin/dot:graphviz |
35 35 | |
36 36 | configure.args --disable-silent-rules |
37 37 | |
38 - | # valadoc, previously a separate port, is merged with vala as of version 0.38.0 |
39 - | # deactivate old conflicting port valadoc before activation |
40 - | |
41 - | pre-activate { |
42 - | set pname valadoc |
43 - | if {![catch {set installed [lindex [registry_active $pname] 0]}]} { |
44 - | registry_deactivate_composite $pname "" [list ports_nodepcheck 1] |
45 - | } |
46 - | } |
47 - | |
48 38 | livecheck.type gnome |