1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name aida |
---|
6 | version 3.2.1 |
---|
7 | categories science |
---|
8 | maintainers pd.infn.it:cristiano.fontana |
---|
9 | license LGPL |
---|
10 | description AIDA -- Abstract Interfaces for Data Analysis |
---|
11 | long_description AIDA is a collection of abstract interfaces for common physics analysis objects, such as histograms, ntuples, fitters, IO etc... \ |
---|
12 | The adoption of these interfaces should make it easier for physicists to use different tools without having to learn new interfaces or change all of their code. \ |
---|
13 | Additional benefits will be interoperability of AIDA compliant applications (for example by making it possible for applications to exchange analysis objects via XML). |
---|
14 | homepage http://aida.freehep.org/ |
---|
15 | platforms darwin |
---|
16 | master_sites ftp://ftp.slac.stanford.edu/software/freehep/AIDA/v${version}/ |
---|
17 | |
---|
18 | checksums md5 1db1f8d984cdb9c73ba9355c5fdfe8cc |
---|
19 | |
---|
20 | default_variants +cpp |
---|
21 | |
---|
22 | variant cpp description {Install C++ header files} {} |
---|
23 | variant java description {Install Java libraries} {} |
---|
24 | |
---|
25 | use_configure no |
---|
26 | |
---|
27 | build {} |
---|
28 | |
---|
29 | destroot { |
---|
30 | if {[variant_isset cpp]} { |
---|
31 | file copy ${workpath}/src/cpp/AIDA ${destroot}${prefix}/include |
---|
32 | } |
---|
33 | |
---|
34 | if {[variant_isset java]} { |
---|
35 | file copy ${workpath}/src/java ${destroot}${prefix}/share/ |
---|
36 | file copy ${workpath}/lib ${destroot}${prefix}/share/java/hep/aida |
---|
37 | } |
---|
38 | |
---|
39 | file copy ${workpath}/doc ${destroot}${prefix}/share/doc/ |
---|
40 | file rename ${destroot}${prefix}/share/doc/doc ${destroot}${prefix}/share/doc/aida |
---|
41 | } |
---|