Ticket #44469: libical-diff.patch

File libical-diff.patch, 2.3 KB (added by RJVB (René Bertin), 9 years ago)
  • devel/libical/Portfile

    old new  
    11# -*- 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
    2 # $Id: Portfile 124942 2014-09-01 00:07:36Z khindenburg@macports.org $
     2# $Id: Portfile 119360 2014-04-23 16:52:49Z devans@macports.org $
    33
    44PortSystem          1.0
     5PortGroup           cmake 1.0
     6cmake.out_of_source yes
    57
    68name                libical
    7 version             1.0
    89categories          devel
    910license             {LGPL-2.1 MPL-1}
    1011maintainers         nomaintainer
     
    1415homepage            http://sourceforge.net/projects/freeassociation/
    1516master_sites        sourceforge:freeassociation
    1617
    17 checksums           rmd160  1c78b07c37c80e8fe068fb3164bbf8614f02e67f \
     18subport libical-devel {
     19    description-append \
     20                    . Follows the development version.
     21    long_description \
     22                    ${description}
     23}
     24
     25if {${subport} eq "${name}"} {
     26    version         1.0
     27    revision        1
     28    checksums       rmd160  1c78b07c37c80e8fe068fb3164bbf8614f02e67f \
    1829                    sha256  7c39b3448e4927a2de2775d853f52b3aaeb42400970a3db0b01a78987e6ec0b7
     30    patchfiles-append \
     31                    fix_timezone_crash.patch \
     32                    make_recursive_mutex.patch
     33} else {
     34    # v1.0.1-351-g25bc500
     35    maintainers     gmail.com:rjvbertin openmaintainer
     36    if {[file exists ${filespath}/libical-git/.git]} {
     37        fetch.type  git
     38        git.url     ${filespath}/libical-git
     39        git.branch  25bc500e15bafcef7324ec9b6472982b56dcdc6d
     40    } else {
     41        PortGroup   github 1.0
     42        git.url     http://github.com/libical/libical
     43        github.setup \
     44                    libical libical 25bc500e15bafcef7324ec9b6472982b56dcdc6d
     45    }
     46    version         1.0.1.351
     47    distname        ${name}-git
     48}
     49
     50# use_autoreconf      yes
     51# autoreconf.args     -fvi
    1952
    20 use_autoreconf      yes
    21 autoreconf.args     -fvi
     53patch.pre_args      -p1
    2254
    2355livecheck.url       http://sourceforge.net/projects/freeassociation/files/
    2456livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"