# -*- 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

PortSystem      1.0
PortGroup       php 1.1

name            php-mailparse
license         PHP
categories      php mail devel
maintainers     {ryandesign @ryandesign} openmaintainer

php.branches    5.3 5.4 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3
php.pecl        yes

# This extension must load after the mbstring extension.
php.extension_ini       ~${php.extension_ini}

if {[vercmp ${php.branch} >= 7.3]} {
    version     3.1.6
    revision    0
    checksums   rmd160  99c16dd9978b2dee820d0ee414c3f4e76a647b97 \
                sha256  a69f1605583eabdb59c2cd4c17334b3267398a1d47e1fd7edb92d8bef9dee008 \
                size    945937
} elseif {[vercmp ${php.branch} >= 7.0]} {
    version     3.1.3
    revision    1
    checksums   rmd160  e8c952fca8989fbaf8a3d0131fbee24877399a80 \
                sha256  8659ca62dc9a4d7d15f07f97a0e2142cb58251c8e772cd36669ec740d2292471 \
                size    943785
} else {
    version     2.1.6
    revision    2
    checksums   rmd160  68b2fedcacda2850c10e3551131502429b8daee1 \
                sha256  73705197d2b2ee782efa5477eb2a21432f592c2cb05a72c3a037bbe39e02b5cc \
                size    36538
}

description     Email message manipulation

long_description \
    Mailparse is an extension for parsing and working with email messages. \
    It can deal with rfc822 and rfc2045 (MIME) compliant messages.

if {${name} ne ${subport}} {
    depends_build       port:autoconf port:${php}-mbstring
    depends_run         port:${php}-mbstring

    configure.cppflags-append -DHAVE_MBSTRING

    use_parallel_build  yes

    test.run            yes

    post-destroot {
        set docdir ${prefix}/share/doc/${subport}
        xinstall -d ${destroot}${docdir}
        xinstall -m 0644 -W ${worksrcpath} CREDITS ${destroot}${docdir}
        if {[vercmp ${version} >= 3.0.3]} {
            xinstall -m 0644 -W ${worksrcpath} README.md ${destroot}${docdir}
        } else {
            xinstall -m 0644 -W ${worksrcpath} README ${destroot}${docdir}
        }
    }
}
