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

name            neon
version         0.37.1
revision        0
categories      www
maintainers     nomaintainer
description     An HTTP and WebDAV client library with a C interface
license         LGPL-2+

long_description \
                neon is an HTTP and WebDAV client library with a C language API. \
                It provides a high-level interface to HTTP and WebDAV methods and a \
                low-level interface to HTTP request handling, easily allowing the \
                implementation of new methods.

homepage        https://notroj.github.io/neon
master_sites    ${homepage}

depends_build   port:pkgconfig
depends_lib     port:expat \
                port:gettext \
                port:libiconv \
                port:kerberos5 \
                port:libcomerr \
                port:libproxy \
                path:lib/libssl.dylib:openssl \
                port:zlib

checksums       rmd160  c453abe91419d7bf80c00d74ce35f5f57fe10156 \
                sha256  a99b7262525a454d1065cf76dd17240fd808dfc4ef15636990ff83a5d0d9e740 \
                size    979090

configure.args  --with-ssl \
                --enable-shared \
                --with-expat \
                --with-libproxy

pre-test {
    set x {}

    fs-traverse dir ${worksrcpath} {
        if {[file tail ${dir}] == ".libs" && [file isdirectory ${dir}]} {
            lappend x ${dir}
            continue
        }
    }

    test.env-append DYLD_LIBRARY_PATH=[join ${x} ":"]
}

post-destroot {
    if {[variant_exists universal] && [variant_isset universal]} {
        if {${configure.universal_cppflags} ne ""} {
            reinplace "s|${configure.universal_cppflags}||g" \
                ${destroot}${prefix}/bin/neon-config \
                ${destroot}${prefix}/lib/pkgconfig/neon.pc
        }
        if {${configure.universal_ldflags} ne ""} {
            reinplace "s|${configure.universal_ldflags}||g" \
                ${destroot}${prefix}/bin/neon-config \
                ${destroot}${prefix}/lib/pkgconfig/neon.pc
        }
    }
}

test.run        yes
test.target     check

livecheck.regex  {neon/neon-(\d+(?:\.\d+)*)}
