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 72602 2010-10-21 12:39:12Z michaelld@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name treehh |
---|
7 | version 2.65 |
---|
8 | categories aqua science |
---|
9 | maintainers openmaintainer |
---|
10 | |
---|
11 | description Data Analysis and Scientific Plotting |
---|
12 | long_description The tree.hh library for C++ provides an STL-like container class \ |
---|
13 | for n-ary trees, templated over the data stored at the nodes. Various \ |
---|
14 | types of iterators are provided (post-order, pre-order, and others). \ |
---|
15 | Where possible the access methods are compatible with the STL or \ |
---|
16 | alternative algorithms are available. |
---|
17 | |
---|
18 | platforms darwin |
---|
19 | homepage http://tree.phi-sci.com/ |
---|
20 | master_sites http://tree.phi-sci.com/ |
---|
21 | distname tree-${version} |
---|
22 | |
---|
23 | checksums md5 4f40c908c8c5ca27c1fb110b76e35c7c \ |
---|
24 | sha1 1a88804682bb32f73245fe0e4d2370bc33b1f85a \ |
---|
25 | rmd160 94416c517f1dae1ef42f0f4f05db5e15ecc564ae |
---|
26 | |
---|
27 | universal_variant yes |
---|
28 | |
---|
29 | use_parallel_build yes |
---|
30 | |
---|
31 | configure {} |
---|
32 | build {} |
---|
33 | destroot { |
---|
34 | xinstall ${worksrcpath}/src/tree.hh ${destroot}${prefix}/include |
---|
35 | } |
---|