# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4

PortSystem              1.0
PortGroup               github 1.0
PortGroup               php 1.1

name                    php-phalcon4
platforms               darwin
maintainers             {ryandesign @ryandesign} openmaintainer
license                 BSD

php.branches            7.2 7.3

if {[vercmp ${php.branch} 7.5] < 0} {
    conflicts-append    ${php}-phalcon3
}

if {[vercmp ${php.branch} 7.2] >= 0} {
    github.setup        phalcon cphalcon 4.0.0-rc.3 v
    revision            0
    checksums           rmd160  dac9dc2091bd1906ac8781f19f9a2c028306dd21 \
                        sha256  f844d0e555fdfd991f3152c6ca0d17a1072678958c938f89fe70455ae702e535 \
                        size    6819820
}

description             full stack PHP framework written as an extension

long_description        Phalcon is an open source full stack framework for \
                        PHP, written as a C-extension. Phalcon is optimized \
                        for high performance. Its unique architecture allows \
                        the framework to always be memory resident, offering \
                        its functionality whenever it's needed, without \
                        expensive file stats and file reads that traditional \
                        PHP frameworks employ.

homepage                https://phalconphp.com
dist_subdir             php-phalcon

if {${name} ne ${subport}} {
    depends_lib-append  port:${php}-psr

    # The build/install script makes all sorts of assumptions I don't like
    # so I'm ignoring it.

    set phpmajor        [lindex [split ${php.branch} .] 0]
    set build           build/php${phpmajor}
    if {[string match *64 ${build_arch}]} {
        set build       ${build}/64bits
    } else {
        set build       ${build}/32bits
    }

    worksrcdir          ${worksrcdir}/${build}

    # Separate dir for each arch means using the muniversal portgroup
    # but it doesn't get along with the php portgroup.
    universal_variant   no

    configure.args      --enable-phalcon
}