1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name cgnslib |
---|
6 | version 2.5.4 |
---|
7 | set version_major 2.5 |
---|
8 | set version_minor 4 |
---|
9 | categories science |
---|
10 | maintainers cerfacs.fr:dechaume |
---|
11 | |
---|
12 | description Computational fluid dynamics data container. |
---|
13 | long_description The CFD General Notation System (CGNS) provides a general, \ |
---|
14 | portable, and extensible standard for the storage and retrieval of \ |
---|
15 | computational fluid dynamics (CFD) analysis data. It consists of a collection \ |
---|
16 | of conventions, and free and open software implementing those conventions. It \ |
---|
17 | is self-descriptive, machine-independent, well-documented, and administered by \ |
---|
18 | an international steering committee. |
---|
19 | |
---|
20 | homepage http://cgns.sourceforge.net/ |
---|
21 | platforms darwin |
---|
22 | distname ${name}_${version_major}-${version_minor} |
---|
23 | master_sites sourceforge:cgns |
---|
24 | |
---|
25 | checksums md5 42063efdf726c81300a51c3495d3224e \ |
---|
26 | sha1 d5f99f6df7409d923d8703fc3732b13bd1d89b20 |
---|
27 | |
---|
28 | worksrcdir ${name}_${version_major} |
---|
29 | |
---|
30 | # for DESTDIR |
---|
31 | patchfiles patch-Makefile.in.diff |
---|
32 | |
---|
33 | configure.args-append --enable-lfs |
---|
34 | |
---|
35 | # cgns tools |
---|
36 | post-build { |
---|
37 | system "cd ${worksrcpath}/tools && make" |
---|
38 | } |
---|
39 | post-destroot { |
---|
40 | foreach bin {cgnsversion cgnspack cgnsdiff cgnscheck cgnslist} { |
---|
41 | xinstall -m 755 ${worksrcpath}/tools/${bin} ${destroot}${prefix}/bin |
---|
42 | } |
---|
43 | } |
---|