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 | PortGroup github 1.0 |
---|
6 | |
---|
7 | name rose |
---|
8 | github.setup rose-compiler rose af169e174891539228704cb1befc8fdda4be94c7 |
---|
9 | version 0.9.5a.20120316 |
---|
10 | checksums rmd160 f081db1d4dcce0d633d9f2a7f1fe5565dbe0706a \ |
---|
11 | sha256 b2796008e41a52599efd9ed5d7cdcc7bbd865b6d82b149b6afbbd23b2bfb8429 |
---|
12 | |
---|
13 | categories lang |
---|
14 | maintainers llnl.gov:too1 |
---|
15 | |
---|
16 | description A compiler infrastructure to build source-to-source \ |
---|
17 | program transformation and analysis tools. |
---|
18 | |
---|
19 | long_description ${description} Includes front ends for large-scale Fortran \ |
---|
20 | 77/95/2003, C, C++, OpenMP, and UPC applications. By \ |
---|
21 | default, only the core ROSE library and example translators \ |
---|
22 | are built. |
---|
23 | |
---|
24 | license BSD |
---|
25 | |
---|
26 | platforms darwin |
---|
27 | homepage http://rosecompiler.org/ |
---|
28 | |
---|
29 | depends_build port:boost \ |
---|
30 | port:gcc45 \ |
---|
31 | port:ghostscript \ |
---|
32 | port:libtool \ |
---|
33 | port:wget |
---|
34 | depends_run path:bin/dot:graphviz |
---|
35 | |
---|
36 | configure.dir ${worksrcpath}/buildTree |
---|
37 | configure.cmd ${worksrcpath}/configure |
---|
38 | configure.args-append --with-boost=${prefix} \ |
---|
39 | --with-gfortran=${prefix}/bin/gfortran-mp-4.5 \ |
---|
40 | --with-alternate_backend_fortran_compiler=gfortran-mp-4.5 \ |
---|
41 | --with-CXX_DEBUG=-ggdb3 --with-CXX_WARNINGS=-Wall |
---|
42 | |
---|
43 | use_parallel_build yes |
---|
44 | build.dir ${configure.dir} |
---|
45 | |
---|
46 | build.target core |
---|
47 | destroot.target install-core |
---|
48 | |
---|
49 | variant full description {Also build projects and tests distributed with ROSE.} { |
---|
50 | build.target all |
---|
51 | destroot.target install |
---|
52 | } |
---|
53 | |
---|
54 | pre-configure { |
---|
55 | system -W ${worksrcpath} "./build" |
---|
56 | file mkdir ${configure.dir} |
---|
57 | } |
---|
58 | |
---|