Ticket #34515: Portfile.diff

File Portfile.diff, 2.3 KB (added by mndavidoff (Monte Davidoff), 12 years ago)
  • Portfile

    old new  
     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
    12# $Id: Portfile 30249 2007-10-23 02:12:47Z jmpp@macports.org $
    23
    3 PortSystem 1.0
    4 PortGroup python24 1.0
     4PortSystem          1.0
     5PortGroup           python 1.0
    56
    6 name                    py-gmpy
    7 version                 1.01
    8 categories              python
    9 platforms               darwin
    10 maintainers             nomaintainer
    11 description             general MultiPrecision arithmetic module for Python
    12 long_description        gmpy is a general MultiPrecision arithmetic module for \
    13                                 Python wrapping the GNU arbitrary precision arithmetic \
    14                                 library 'gmp'.
    15 
    16 homepage                http://gmpy.sourceforge.net/
    17 master_sites            sourceforge:gmpy
    18 distname                gmpy-sources-101
    19 checksums               md5 7b2e951912d4bee9613c35244ca32673
    20 use_zip                 yes
    21 
    22 depends_lib-append      port:gmp
    23 
    24 worksrcdir              gmpy
    25 
    26 build.env               CFLAGS="-I${prefix}/include" \
    27                                 LDFLAGS="-L${prefix}/lib"
    28 
    29 post-destroot   {
    30         xinstall -m 644 -W ${worksrcpath} doc/gmpydoc.txt doc/index.html \
    31                 README ${destroot}${prefix}/share/doc/${name}
     7name                py-gmpy
     8version             1.15
     9categories          python
     10maintainers         nomaintainer
     11license             LGPL-2.1+
     12platforms           darwin
     13description         General multiple precision arithmetic module for Python
     14long_description \
     15    GMPY is a C-coded Python extension module that supports fast \
     16    integer and rational multiple-precision arithmetic using the \
     17    GMP library.
     18
     19homepage            http://code.google.com/p/gmpy/
     20master_sites        googlecode:gmpy
     21distname            gmpy-${version}
     22use_zip             yes
     23checksums           md5     65b6f19cc414c936e82d189f9b3e4bd2 \
     24                    rmd160  a0fcf5639ad66f1b88c937fbef5893d9ed25b079 \
     25                    sha1    59147d4307fddceae0b63ca0f8677dc73fa03fb8 \
     26                    sha256  6adcffaa2cc0d339b5f69e8891b06f0299a14d90249dd89c37edc82cc4fff24f
     27
     28python.versions     25 26 27 31 32
     29python.default_version 27
     30
     31if {$subport != $name} {
     32    depends_lib-append  port:gmp
     33
     34    post-destroot {
     35        xinstall -m 644 -W ${worksrcpath} doc/gmpydoc.txt doc/index.html \
     36            README ${destroot}${prefix}/share/doc/${subport}
     37    }
    3238}