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 115825 2014-01-12 12:03:59Z nicos@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup kde4 1.1 |
---|
6 | |
---|
7 | name kross-interpreters |
---|
8 | version 4.11.5 |
---|
9 | categories kde kde4 |
---|
10 | maintainers nicos |
---|
11 | license LGPL-2.1+ |
---|
12 | description WEB Development package for the K Desktop Environment. |
---|
13 | long_description KDE ${description} |
---|
14 | homepage http://www.kde.org |
---|
15 | platforms darwin |
---|
16 | master_sites kde:stable/${version}/src/ |
---|
17 | use_xz yes |
---|
18 | |
---|
19 | checksums rmd160 81b4e0838bbfee2dc19e8db8fb2978d97e9bcb5c \ |
---|
20 | sha256 d7faba1195082a5fd60dc683b28315bdb9b2e96ecde4df4a1de113edd478ef27 |
---|
21 | |
---|
22 | depends_lib-append port:kdelibs4 |
---|
23 | # port:falcon |
---|
24 | |
---|
25 | patchfiles patch-CMakeLists.txt.diff |
---|
26 | |
---|
27 | configure.args-append -DFALCON_INCLUDE_DIR=${prefix}/include/falcon0.9.6/falcon \ |
---|
28 | -DFALCON_LIBRARIES=${prefix}/lib/libfalcon_engine.dylib |
---|
29 | |
---|
30 | variant python25 conflicts python26 python27 description {Use python 2.5} { |
---|
31 | configure.pre_args-append -DCMAKE_PREFIX_PATH=${prefix}/Library/Frameworks/Python.framework/Versions/2.5/ |
---|
32 | depends_lib-append port:python25 |
---|
33 | } |
---|
34 | |
---|
35 | variant python26 conflicts python25 python27 description {Use python 2.6} { |
---|
36 | configure.pre_args-append -DCMAKE_PREFIX_PATH=${prefix}/Library/Frameworks/Python.framework/Versions/2.6/ |
---|
37 | depends_lib-append port:python26 |
---|
38 | } |
---|
39 | |
---|
40 | variant python27 conflicts python25 python26 description {Use python 2.7} { |
---|
41 | configure.pre_args-append -DCMAKE_PREFIX_PATH=${prefix}/Library/Frameworks/Python.framework/Versions/2.7/ |
---|
42 | depends_lib-append port:python27 |
---|
43 | } |
---|
44 | |
---|
45 | if {![variant_isset python25] && ![variant_isset python26]} { |
---|
46 | default_variants +python27 |
---|
47 | } |
---|
48 | |
---|
49 | livecheck.url http://kde.mirrors.hoobly.com/stable/ |
---|
50 | livecheck.regex (\\d+(\\.\\d+)+) |
---|