Ticket #34058: Portfile

File Portfile, 6.4 KB (added by sebastian@…, 12 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 90820 2012-03-15 03:13:40Z jmr@macports.org $
3
4PortSystem 1.0
5
6name                octave36
7version             3.6.1
8revision            2
9conflicts           octave octave-devel
10categories          math science
11maintainers         michaelld openmaintainer
12platforms           darwin
13description         a Matlab-like environment for numerical analysis
14long_description    Octave provides a convenient command line interface \
15                    for solving linear and nonlinear problems numerically, \
16                    using a language that is mostly compatible with Matlab. \
17                    It is easily extensible and customizable via \
18                    user-defined functions or using dynamically loaded \
19                    modules written in e.g. C++, C or Fortran.
20
21homepage            http://www.gnu.org/software/octave/
22master_sites        gnu:octave
23dist_subdir         octave
24distname            octave-${version}
25use_bzip2           yes
26
27checksums           md5 b543dd5ca743cba8c1d3474b1b99ae41 \
28                                        sha1 46fdc0b3d7db1b0266975a7443e26769c939a9c7 \
29                                        rmd160 e57ff05ee14cce60de781233c1b4e6febef89416
30
31depends_build       port:bison \
32                    port:flex \
33                    port:gawk \
34                    port:gperf \
35                    port:grep \
36                    port:gsed \
37                    path:bin/perl:perl5 \
38                    port:texinfo
39
40depends_lib         port:curl \
41                    port:fftw-3 \
42                    port:fftw-3-single \
43                    port:ftgl \
44                    port:ghostscript \
45                    port:glpk \
46                    port:GraphicsMagick \
47                    port:gnuplot \
48                    port:hdf5-18 \
49                    port:less \
50                    port:metis \
51                    port:ncurses \
52                    port:pcre \
53                    port:readline \
54                    port:qhull \
55                    port:qrupdate \
56                    port:SuiteSparse
57
58# allow us to disable checking for FLTK
59# via the environment variable "FLTK_CONFIG"
60# patchfiles-append   patch-configure.diff
61
62universal_variant   no
63
64# do not use CLANG (yet)
65if {${configure.compiler} == "clang"} {
66    configure.compiler llvm-gcc-4.2
67}
68
69configure.args      --disable-dependency-tracking \
70                    --without-x \
71                    --disable-docs \
72                    --with-cholmod="-lcholmod -lmetis"
73
74#                    --without-framework-carbon
75
76# octave uses a number of other ports to create sources from template:
77# perl, gawk, gsed, flex, bison, texinfo.  Make sure these are the
78# MacPorts' versions.  Python is not used if perl is available, so
79# clear it out.  grep is checked for in 'configure', but not used
80# except inside that script; include it here for completion.
81configure.perl      ${prefix}/bin/perl
82configure.python    ' '
83configure.awk       ${prefix}/bin/gawk
84configure.env-append GREP="${prefix}/bin/grep" \
85                     FLTK_CONFIG=no \
86                     SED="${prefix}/bin/gsed" \
87                     TEXI2DVI="${prefix}/bin/texi2dvi" \
88                     TEXI2PDF="${prefix}/bin/texi2pdf"
89configure.cppflags
90configure.ldflags
91
92test.run            yes
93test.target         check
94
95platform darwin 11 {
96    # 10.7 requires an extra patch; this patch will break the build on
97    # 10.6 and prior, so apply it only under 10.7.
98    patchfiles-append patch-src-display.cc.diff
99}
100
101variant gcc43 description {build with the macports gcc43 toolchain} conflicts gcc46 gcc45 gcc44 g95 {}
102
103variant gcc44 description {build with the macports gcc44 toolchain} conflicts gcc46 gcc45 gcc43 g95 {}
104
105variant gcc45 description {build with the macports gcc45 toolchain} conflicts gcc46 gcc44 gcc43 g95 {}
106
107variant gcc46 description {build with the macports gcc45 toolchain} conflicts gcc45 gcc44 gcc43 g95 {}
108
109variant g95 description {build with g95} conflicts gcc43 gcc44 gcc45 gcc46 {
110    depends_build-append    port:g95
111    configure.f77           "${prefix}/bin/g95"
112}
113
114variant atlas description {use BLAS from ATLAS} conflicts accelerate {
115    depends_lib-append port:atlas
116}
117
118variant accelerate description {use BLAS from Apple's Accelerate.framework} conflicts atlas {
119    depends_lib-append      port:dotwrp
120    configure.args-append   --with-blas="-ldotwrp -framework Accelerate"
121    configure.args-append   --with-lapack="-framework Accelerate"
122}
123
124if {[variant_isset g95]} {
125    default_variants +accelerate
126} elseif {![variant_isset accelerate]} {
127    default_variants +atlas
128}
129
130# check for GCC / G95 variants.  The default here must match the
131# default found in the 'atlas' port (but, this is not checked for).
132
133# check for setting the default variant (gcc44)
134if { ![variant_isset gcc43] && ![variant_isset gcc44] && \
135         ![variant_isset gcc46] && ![variant_isset g95] } {
136    default_variants +gcc45
137}
138
139# check if the user disabled just the default variant: -gcc44
140if { ![variant_isset gcc43] && ![variant_isset gcc44] && \
141         ![variant_isset gcc45] && ![variant_isset gcc46] && \
142         ![variant_isset g95] } {
143    pre-fetch {
144        error "You must select one of the compiler variants."
145    }
146}
147
148set gcc_version ""
149if {[variant_isset gcc43]} {
150    set gcc_version "4.3"
151} elseif {[variant_isset gcc44]} {
152    set gcc_version "4.4"
153} elseif {[variant_isset gcc45]} {
154    set gcc_version "4.5"
155} elseif {[variant_isset gcc46]} {
156    set gcc_version "4.6"
157}
158
159if {${gcc_version} != ""} {
160    set gcc_version_join [join [split ${gcc_version} "."] ""]
161    configure.ldflags    "${prefix}/lib/gcc${gcc_version_join}/libstdc++.6.dylib"
162    depends_build-append port:gcc${gcc_version_join}
163    configure.compiler   macports-gcc-${gcc_version}
164}
165
166variant docs description {Enable creation and installation of documentation} {
167    depends_run-append port:texlive-basic
168    configure.args-replace s|--disable-docs|--enable-docs|
169}
170
171variant x11 description {Enable use of X11} {
172    configure.args-replace s|--without-x|--with-x|
173    configure.args-append --x-includes=${prefix}
174}
175
176variant fltk description {Include FLTK for graphical front-end} {
177    depends_lib-append port:fltk-devel
178    depends_run-append  port:epstool \
179                        port:transfig \
180                        port:pstoedit
181    configure.env-delete FLTK_CONFIG=no
182}
183
184livecheck.type      regex
185livecheck.url       http://www.gnu.org/software/octave/news.html
186livecheck.regex     Version (\\d+(\\.\\d+)*)