Ticket #18192: Portfile.diff
File Portfile.diff, 1.2 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago) |
---|
-
Portfile
old new 2 2 3 3 PortSystem 1.0 4 4 5 # Although mpfr builds without a custom universal variant, 6 # it is not the same as builing the archs differently 7 # due to the variable HAVE_LDOUBLE_IEEE_EXT_LITTLE. 8 PortGroup merge_universal 1.0 9 5 10 name mpfr 6 11 version 2.3.2 7 12 categories devel math … … 27 32 use_bzip2 yes 28 33 use_parallel_build yes 29 34 30 # gmp is not universal31 universal_variant no32 33 35 depends_lib port:gmp 34 36 35 37 dist_subdir ${name}/${version} … … 38 40 #patchfiles patch01 patch02 patch03 patch04 39 41 #patch.args -p1 40 42 41 configure.args --enable-shared42 43 43 test.run yes 44 44 test.target check 45 45 46 p re-destroot {46 post-destroot { 47 47 set docdir ${destroot}${prefix}/share/doc/${name} 48 48 file mkdir ${docdir} 49 49 xinstall -m 644 -v -W ${worksrcpath} \ 50 50 AUTHORS BUGS COPYING.LIB FAQ.html NEWS TODO ${docdir} 51 51 } 52 52 53 platform darwin x86 {54 configure.args-append --host=none-apple-darwin55 }56 57 platform darwin i386 {58 configure.args-append --host=none-apple-darwin59 }60 61 53 livecheck.url http://www.mpfr.org/mpfr-current/ 62 54 livecheck.regex "mpfr-(\\d+(?:\\.\\d+)*)${extract.suffix}"