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 | PortSystem 1.0 |
---|
4 | name xapian-bindings |
---|
5 | version 1.0.9 |
---|
6 | categories devel |
---|
7 | maintainers m@loonsoft.com |
---|
8 | description Xapian bindings |
---|
9 | long_description Xapian is a highly adaptable toolkit which allows developers to easily add advanced indexing and search facilities to their own applications. It supports the Probabilistic Information Retrieval model and also supports a rich set of boolean query operators. |
---|
10 | |
---|
11 | homepage http://people.xapian.org |
---|
12 | platforms darwin |
---|
13 | master_sites http://oligarchy.co.uk/xapian/${version} |
---|
14 | extract.suffix .tar.gz |
---|
15 | |
---|
16 | checksums md5 fa37abeb8927dde6b8f9655c893ebfac \ |
---|
17 | sha1 2dfab97cd9bcea67285c8aa91d41c44ca4d161b2 \ |
---|
18 | rmd160 d9582f410aa392e8a694fbed2fabca481f9f1113 |
---|
19 | depends_lib port:xapian-core |
---|
20 | |
---|
21 | configure.args-append --without-python --without-java --without-tcl --without-php --without-ruby |
---|
22 | variant ruby description {builds ruby bindings} { |
---|
23 | configure.args-delete --without-ruby |
---|
24 | depends_lib-append port:ruby |
---|
25 | } |
---|
26 | variant php description {builds php bindings} { |
---|
27 | configure.args-delete --without-php |
---|
28 | depends_lib-append port:php5 |
---|
29 | } |
---|
30 | variant python description {builds python bindings} { |
---|
31 | configure.args-delete --without-python |
---|
32 | depends_lib-append port:python25 |
---|
33 | } |
---|
34 | variant tcl description {builds tcl bindings} { |
---|
35 | configure.args-delete --without-tcl |
---|
36 | } |
---|
37 | variant java description {builds java bindings} { |
---|
38 | configure.args-delete --without-java |
---|
39 | } |
---|
40 | default_variants +ruby |
---|
41 | |
---|