Ticket #23390: Portfile.3

File Portfile.3, 1.4 KB (added by ryandesign (Ryan Carsten Schmidt), 14 years ago)

my proposal

Line 
1# $Id$
2
3PortSystem          1.0
4
5name                aida
6version             3.2.1
7categories          science
8maintainers         pd.infn.it:cristiano.fontana
9license             LGPL
10description         AIDA -- Abstract Interfaces for Data Analysis
11long_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).
14homepage            http://aida.freehep.org/
15platforms           darwin
16master_sites        ftp://ftp.slac.stanford.edu/software/freehep/AIDA/v${version}/
17
18checksums           md5 1db1f8d984cdb9c73ba9355c5fdfe8cc
19
20extract.mkdir       yes
21
22use_configure       no
23
24build {}
25
26destroot {
27    file copy ${worksrcpath}/src/cpp/AIDA ${destroot}${prefix}/include
28
29    file copy ${worksrcpath}/src/java ${destroot}${prefix}/share/
30    file copy ${worksrcpath}/lib ${destroot}${prefix}/share/java/hep/aida
31
32    xinstall -d ${destroot}${prefix}/share/doc
33    file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name}
34}