# -*- 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 151933 2016-08-24 06:34:16Z devans@macports.org $ PortSystem 1.0 PortGroup active_variants 1.1 PortGroup compiler_blacklist_versions 1.0 PortGroup conflicts_build 1.0 PortGroup github 1.0 github.setup arvidn libtorrent 1_1_1 libtorrent- name libtorrent-rasterbar version [string map {_ .} ${version}] license BSD categories net maintainers devans openmaintainer platforms darwin homepage http://www.rasterbar.com/products/libtorrent/ description A C++ bittorrent library (not the same as port libtorrent) long_description A C++ bittorrent library designed to run on anything from embedded systems to large scale \ seed servers. It comes with python bindings and detailed documentation. checksums rmd160 18ad6a0bf99556d5e7b60659e53dbd33b895dc3d \ sha256 f2c6dee65b97645ba88aa3bb84af0b8e0f4b7190ccfe2b6cce107bf05bc1a125 depends_build port:pkgconfig \ port:autoconf \ port:automake \ port:libtool depends_lib port:boost \ path:lib/libssl.dylib:openssl patchfiles patch-configure.ac.diff \ patch-bindings-python-setup.py.diff post-patch { reinplace "s|__MP_BUILD_ARCH__|${build_arch}|" ${worksrcpath}/bindings/python/setup.py } compiler.blacklist *gcc* {clang < 300} configure.args --disable-silent-rules \ --enable-python-binding \ --with-boost-libdir="${prefix}/lib" \ --with-boost-python="boost_python-mt" configure.cmd ./autotool.sh && ./configure universal_variant no conflicts_build ${name} variant python27 description {Build bindings for Python 2.7} { require_active_variants boost python27 depends_lib-append port:python27 configure.python ${prefix}/bin/python2.7 configure.env-append \ "PYTHON_INSTALL_PARAMS=--prefix=${destroot}${prefix}/Library/Frameworks/Python.framework/Versions/2.7" \ PYTHON_EXTRA_LIBS=' ' } variant error_logging description {Enable logging of errors to disk} { configure.args-append --enable-logging=errors } default_variants +python27