1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sts=4:sw=4:ts=4 |
---|
2 | PortSystem 1.0 |
---|
3 | |
---|
4 | name librets |
---|
5 | version 1.4.0 |
---|
6 | revision 1 |
---|
7 | categories devel |
---|
8 | platforms darwin |
---|
9 | maintainers josephholsten.com:joseph |
---|
10 | |
---|
11 | description RETS client library |
---|
12 | long_description \ |
---|
13 | libRETS is RETS client library written in C++ that allows rapid \ |
---|
14 | development of RETS client applications. By saving the developer from \ |
---|
15 | dealing with the RETS protocol details, the application writer can \ |
---|
16 | concentrate on their application, saving them time and money in \ |
---|
17 | the process. |
---|
18 | |
---|
19 | homepage http://www.crt.realtors.org/projects/rets/librets/ |
---|
20 | master_sites ${homepage}/files/ |
---|
21 | |
---|
22 | checksums md5 e8c5bde8897d6f3d979b5415c4392961 \ |
---|
23 | sha1 b398098efce28b4afbe7020bfa070f6aeb8baac2 \ |
---|
24 | rmd160 28673dc8e60b782ad5def9a388490befd013a7d3 |
---|
25 | |
---|
26 | default_variants +swig |
---|
27 | |
---|
28 | depends_lib port:boost port:curl |
---|
29 | |
---|
30 | configure.args --disable-perl \ |
---|
31 | --disable-php \ |
---|
32 | --disable-ruby \ |
---|
33 | --disable-java \ |
---|
34 | --disable-python |
---|
35 | |
---|
36 | variant swig description {Build swig extensions} { |
---|
37 | depends_lib port:swig |
---|
38 | } |
---|
39 | |
---|
40 | variant java description {Build Java bindings} { |
---|
41 | configure.args-delete --disable-java |
---|
42 | } |
---|
43 | |
---|
44 | variant perl description {Build Perl bindings} { |
---|
45 | configure.args-delete --disable-perl |
---|
46 | } |
---|
47 | |
---|
48 | variant php5 description {Build PHP5 bindings} { |
---|
49 | configure.args-delete --disable-php |
---|
50 | } |
---|
51 | |
---|
52 | variant python description {Build Python bindings} { |
---|
53 | configure.args-delete --disable-pithon |
---|
54 | } |
---|
55 | |
---|
56 | variant ruby description {Build Ruby bindings} { |
---|
57 | configure.args-delete --disable-ruby |
---|
58 | } |
---|
59 | |
---|
60 | variant sql2dmql description {Build SQL to DMQL compiler} { |
---|
61 | depends_lib port:antlr |
---|
62 | configure.args-append --enable-sql-compiler |
---|
63 | } |
---|
64 | |
---|
65 | livecheck.check regex |
---|
66 | livecheck.url http://www.crt.realtors.org/projects/rets/librets/downloads/ |
---|
67 | livecheck.regex ${name}-(\\d+(?:\\.\\d+)+)\\.tar |
---|