# -*- 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-unit-mock-objects
set cap_name            PHPUnit_MockObject
version                 1.2.3
categories-append       devel
maintainers             nomaintainer
license                 BSD

homepage                https://github.com/sebastianbergmann/phpunit-mock-objects
master_sites            http://pear.phpunit.de/get/
distname                ${cap_name}-${version}
extract.suffix          .tgz
platforms               darwin freebsd

checksums               rmd160  d91b0301b75343772641646314d012001f8a2b34 \
                        sha256  f269bbc43735d2e5f038bc9af0fe481f1ebedd552c0798ffcf78298f8e4b359b

description             Mock Object library for PHPUnit
long_description \
    ${description}

php.branches            5.3 5.4 5.5

php.build_dirs

if {$name ne $subport} {
    depends_lib         port:${php}-text-template

    destroot {
        xinstall -d ${destroot}${prefix}/lib/php
        file copy ${worksrcpath}/PHPUnit ${destroot}${prefix}/lib/php/PHPUnit
    }

    livecheck.type      none
} else {
    livecheck.type      regex
    livecheck.url       ${homepage}/tags
    livecheck.regex     {/([0-9.]+)"}
}