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 | |
---|
6 | name libsbml |
---|
7 | version 5.8.0 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | |
---|
12 | description The Systems Biology Markup Language library |
---|
13 | |
---|
14 | long_description LibSBML is a free, open-source programming library to \ |
---|
15 | help you read, write, manipulate, translate, and validate \ |
---|
16 | SBML files and data streams. It is not an application \ |
---|
17 | itself (though it does come with example programs), but \ |
---|
18 | rather a library you can embed in your own applications. |
---|
19 | |
---|
20 | homepage http://sbml.org/Software/libSBML |
---|
21 | master_sites sourceforge:sbml |
---|
22 | |
---|
23 | distname libSBML-${version}-src |
---|
24 | worksrcdir libsbml-${version} |
---|
25 | |
---|
26 | checksums md5 7271de66294169c0e728d2e7706e2941 \ |
---|
27 | sha1 ca931f75962f3bb4397f96259c338185014ff091 \ |
---|
28 | rmd160 185beb54cdda53e5a74958c77964ea3015c7b533 |
---|
29 | |
---|
30 | depends_lib port:libxml2 \ |
---|
31 | port:bzip2 |
---|
32 | |
---|
33 | configure.pre_args --prefix=${prefix} \ |
---|
34 | --with-libxml=${prefix} |
---|
35 | |
---|
36 | variant python description {Add Python binding} { |
---|
37 | depends_lib port:swig-python |
---|
38 | configure.args-append --with-python |
---|
39 | } |
---|
40 | |
---|
41 | configure.universal_args-delete --disable-dependency-tracking |
---|
42 | |
---|
43 | use_parallel_build no |
---|