# -*- 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 100201 2012-12-03 16:42:20Z devans@macports.org $

PortSystem          1.0
PortGroup           cmake 1.0

name                libproxy
version             0.4.11
epoch               1
license             LGPL-2.1
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

depends_build-append \
                    port:pkgconfig

depends_lib         port:gconf \
                    port:perl5

# 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

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

variant no_gnome description {Disable GNOME2 plugin} {
        configure.args-delete -DWITH_GNOME2=YES
        configure.args-append -DWITH_GNOME2=NO
        depends_lib-delete port:gconf
}

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 {
	reinplace "s:-D_POSIX_C_SOURCE=1:-D_POSIX_C_SOURCE=200112L:" ${worksrcpath}/libproxy/CMakeLists.txt
}

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