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 | set description_common {Notre Dame Cooperative Computing Software} |
---|
7 | |
---|
8 | name ndcctools |
---|
9 | version 4.4.2 |
---|
10 | categories sysutils |
---|
11 | platforms darwin |
---|
12 | license MIT |
---|
13 | |
---|
14 | maintainers nd.edu:pivie \ |
---|
15 | openmaintainer |
---|
16 | |
---|
17 | description ${description_common} (cooperative-computing-lab) |
---|
18 | long_description ${description_common} \ |
---|
19 | Enables collaborators to easily harness large scale \ |
---|
20 | distributed systems such as clusters, clouds, and grids. |
---|
21 | |
---|
22 | homepage http://ccl.cse.nd.edu/ |
---|
23 | master_sites http://ccl.cse.nd.edu/software/files/ |
---|
24 | distfiles cctools-${version}-source.tar.gz |
---|
25 | worksrcdir cctools-${version}-source |
---|
26 | |
---|
27 | configure.pre_args --prefix ${destroot}${prefix} |
---|
28 | |
---|
29 | post-destroot { |
---|
30 | xinstall -d -m 755 ${destroot}${prefix}/share/doc |
---|
31 | file rename -force ${destroot}${prefix}/doc ${destroot}${prefix}/share/doc/${name} |
---|
32 | |
---|
33 | xinstall -d -m 755 ${destroot}${prefix}/etc/${name} |
---|
34 | file rename -force ${destroot}${prefix}/etc/config.mk ${destroot}${prefix}/etc/${name}/config.mk |
---|
35 | |
---|
36 | } |
---|
37 | |
---|
38 | checksums rmd160 73c6b429c11235d42fe6a870420df496ed510fbd \ |
---|
39 | sha256 64239e98c13536ab14ff70e625cd7f50a4cba714ee719a47b8286c2d6d38b597 |
---|
40 | |
---|
41 | |
---|