# -*- 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
# $Id: Portfile 118529 2014-04-03 23:28:11Z devans@macports.org $

PortSystem          1.0
PortGroup           cmake 1.0

name                libproxy
version             0.4.11
epoch               1
revision            4
categories          net
maintainers         devans openmaintainer
platforms           darwin
license             LGPL-2.1+
homepage            http://code.google.com/p/${name}/
master_sites        googlecode

description         A library that provides automatic proxy configuration management.


long_description    Libproxy exists to answer the question: Given a \
                    network resource, how do I reach it? It handles all \
                    the details, enabling you to get back to programming.

checksums           rmd160  382110e088faf7a170ac838864d675204d886237 \
                    sha256  dc3f33de54163718f82b3e7c496a7de97f8862578414b8ecaad3cbfe4821864b

patchfiles          patch-libproxy-cmake.diff \
                    patch-libproxy-test-CMakeLists.txt.diff \
                    patch-bindings-perl-src-CMakeLists.txt.diff

depends_build-append \
                    port:pkgconfig

depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 \
                    port:vala

# default to python27 bindings
if {![variant_isset python27] && ![variant_isset python26]} {
    default_variants +python27
}

variant python27 conflicts python26 \
description {Build Bindings for Python 2.7} {
    set python_prefix ${frameworks_dir}/Python.framework/Versions/2.7
    depends_lib-append port:python27
    configure.args-append \
                    -DPYTHON_EXECUTABLE=${prefix}/bin/python2.7 \
                    -DPYTHON_SITEPKG_DIR=${python_prefix}/lib/python2.7/site-packages
}

variant python26 conflicts python27 \
description {Build Bindings for Python 2.6} {
    set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6
    depends_lib-append port:python26
    configure.args-append \
                    -DPYTHON_EXECUTABLE=${prefix}/bin/python2.6 \
                    -DPYTHON_SITEPKG_DIR=${python_prefix}/lib/python2.6/site-packages
}

#
# webkit and mozjs pacrunners disabled by default due to the
# following issues
#
# webkit pacrunner circular dependency problem
# webkit-gtk -> libsoup -> libproxy -> webkit-gtk (#26261)
#
# pac files support not available on Tiger (#24127)
#
# TODO: add variants that safely enable these features
#

use_parallel_build no

# use default build which targets GNOME3 (gsettings) instead of GNOME2 (gconf)
# perl bindings disabled due to unpredictable configuration

configure.args-append \
                    -DMP_MACOSX=NO \
                    -DWITH_KDE4=NO \
                    -DWITH_WEBKIT=NO \
                    -DWITH_WEBKIT3=NO \
                    -DWITH_VALA=YES \
                    -DWITH_PERL=NO \
                    -DWITH_PYTHON=YES

variant kde description {Enable KDE4 plugin} {
        configure.args-delete -DWITH_KDE4=NO
        configure.args-append -DWITH_KDE4=YES \
                              -DQT_QT_INCLUDE_DIR=${prefix}/include/QtCore
        depends_lib-append port:kdelibs4
}

post-patch {
	if {${os.major} < 13 && [string match "*clang*" ${configure.compiler}]} {
		# <rdar://problem/12941376>
		reinplace "s:-D_POSIX_C_SOURCE=200112L:-D_POSIX_C_SOURCE=200112L -D_DARWIN_C_SOURCE=1:" ${worksrcpath}/libproxy/CMakeLists.txt
	}
}

livecheck.regex     "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
