Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/mpfr/Portfile

Revision 39931, 1.5 KB (checked in by vinc17@…, 3 months ago)

Bump to version 2.3.2.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem 1.0
4
5name            mpfr
6version         2.3.2
7categories      devel math
8platforms       darwin
9maintainers     vincent-opdarw@vinc17.org
10
11description     C library for multiple-precision floating-point computations
12long_description \
13    MPFR is a portable C library for arbitrary-precision binary \
14    floating-point computation with correct rounding, based on the GMP \
15    multiple-precision library. The computation is both efficient and \
16    has a well-defined semantics. It copies the good ideas from the \
17    ANSI/IEEE-754 standard for fixed-precision floating-point arithmetic.
18
19homepage        http://www.mpfr.org/
20master_sites    http://www.mpfr.org/mpfr-${version}/
21
22checksums \
23    ${distname}.tar.bz2 md5 527147c097874340cb9cee0579dacf3b \
24    ${distname}.tar.bz2 sha1 37dbd478e1c136f37cf4c68eb1522e86e2307288 \
25    ${distname}.tar.bz2 rmd160 7f025fa03450cd64e57b226804d013614ef7d165
26
27use_bzip2       yes
28use_parallel_build yes
29
30depends_lib     port:gmp
31
32dist_subdir     ${name}/${version}
33
34#patch_sites     ${master_sites}
35#patchfiles      patch01 patch02 patch03 patch04
36#patch.args      -p1
37
38configure.args  --enable-shared
39
40test.run        yes
41test.target     check
42
43pre-destroot {
44    set docdir ${destroot}${prefix}/share/doc/${name}
45    file mkdir ${docdir}
46    xinstall -m 644 -v -W ${worksrcpath} \
47      AUTHORS BUGS COPYING.LIB FAQ.html NEWS TODO ${docdir}
48}
49
50platform darwin x86 {
51    configure.args-append --host=none-apple-darwin
52}
53
54platform darwin i386 {
55    configure.args-append --host=none-apple-darwin
56}
57
58livecheck.check none
Note: See TracBrowser for help on using the browser.