Ticket #35541: webp-1.99.diff

File webp-1.99.diff, 3.2 KB (added by Themanwithoutaplan, 12 years ago)
  • dports/graphics/webp/Portfile

     
    44PortSystem              1.0
    55
    66name                    webp
    7 version                 0.1.3
     7version                 0.1.99
    88categories              graphics science devel
    99platforms               darwin
    1010maintainers             ryandesign openmaintainer
     
    2828homepage                http://code.google.com/p/webp/
    2929master_sites            googlecode
    3030
    31 checksums               rmd160  aa84fea974461f1fea074b9983c40759f635b998 \
    32                         sha256  40b18456e39b2822311b0ea161d6f09507cf5e8e937b02b9be3ee994ded67aba
     31checksums               rmd160  94b7c53dca28ca99e06d1c93b6f2d35bf651b0b1 \
     32                        sha256  5c98c4ad2af3649fa856ae44207aeb0ee559271e38cedfd10b25976c55cbea24
    3333
    3434depends_lib             port:zlib \
    3535                        port:libpng \
     
    4848    }
    4949}
    5050
    51 patchfiles              patch-src-dsp-cpu.c.diff
    52 
    5351post-destroot {
    5452    set docdir ${destroot}${prefix}/share/doc/${name}
    5553    xinstall -d ${docdir}
  • dports/python/py-weasyprint/Portfile

     
     1# $Id:  $
     2# -*- 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
     3
     4PortSystem          1.0
     5PortGroup           python 1.0
     6
     7name                py-weasyprint
     8set my_name         WeasyPrint
     9version             0.9
     10set branch          [join [lrange [split ${version} .] 0 1] .]
     11categories          python pdf
     12license             BSD
     13maintainers         openmaintainer
     14platforms           darwin
     15description         A Python HTML to PDF converter
     16
     17long_description \
     18    WeasyPrint is a visual rendering engine for HTML and CSS that can export \
     19    to PDF. It aims to support web standards for printing.
     20
     21homepage            http://weasyprint.org/
     22master_sites        http://pypi.python.org/packages/source/W/WeasyPrint
     23distname            ${my_name}-${version}
     24
     25checksums           sha256  6c93c9f41f21b7bc09205d04d0c16f5aab09993035f4e853f9e13d0e86366c4b \
     26                    rmd160  35a100dd417d584cbebb2faf64a432d1f5be3d8c
     27
     28python.versions     27
     29
     30if {$subport != $name} {
     31    depends_build-append    port:pkgconfig
     32    depends_lib-append      port:py${python.version}-gobject3 \
     33                            port:pango \
     34                            port:py${python.version}-lxml \
     35                            port:ImageMagick
     36
     37    build.type              python
     38
     39    destroot.cmd            ${build.cmd}
     40    destroot.target         install
     41   
     42    test.run                yes
     43    test.env                PYTHONPATH=[glob -nocomplain ${worksrcpath}/build/lib*]
     44    test.target             check
     45   
     46
     47} else {
     48    livecheck.type      regex
     49    livecheck.url       http://pypi.python.org/packages/source/W/${my_name}/${branch}/
     50    livecheck.regex     {LATEST-IS-(\d+(?:\.\d+)*)}
     51}