1 | # $Id: Portfile,v 1.7 2004/11/29 17:17:45 michaelm Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name gsl |
---|
5 | version 1.6 |
---|
6 | categories science |
---|
7 | platforms darwin |
---|
8 | maintainers michaelm@opendarwin.org |
---|
9 | description A numerical library for C and C++ programmers |
---|
10 | long_description \ |
---|
11 | The GNU Scientific Library (GSL) is a numerical \ |
---|
12 | library for C and C++ programmers. It is free software \ |
---|
13 | under the GNU General Public License. \ |
---|
14 | \ |
---|
15 | The library provides a wide range of mathematical \ |
---|
16 | routines such as random number generators, special \ |
---|
17 | functions and least-squares fitting. There are over \ |
---|
18 | 1000 functions in total. |
---|
19 | |
---|
20 | master_sites gnu |
---|
21 | checksums md5 2c63ab9b925a7be70a5a5b4e0a95ea03 |
---|
22 | |
---|
23 | # Lower optimization level (-O1) is required to avoid code generation |
---|
24 | # bugs in Apple's gcc 3.3. |
---|
25 | configure.env CFLAGS="-O1" |
---|
26 | configure.args --mandir=${prefix}/share/man \ |
---|
27 | --infodir=${prefix}/share/info |
---|
28 | |
---|
29 | test.run yes |
---|
30 | test.target check |
---|