Revision: 87669 http://trac.macports.org/changeset/87669 Author: devans@macports.org Date: 2011-12-01 00:58:08 -0800 (Thu, 01 Dec 2011) Log Message: ----------- telepathy-salute: new port, link-local XMPP. Added Paths: ----------- trunk/dports/comms/telepathy-salut/ trunk/dports/comms/telepathy-salut/Portfile trunk/dports/comms/telepathy-salut/files/ trunk/dports/comms/telepathy-salut/files/patch-configure.diff Added: trunk/dports/comms/telepathy-salut/Portfile =================================================================== --- trunk/dports/comms/telepathy-salut/Portfile (rev 0) +++ trunk/dports/comms/telepathy-salut/Portfile 2011-12-01 08:58:08 UTC (rev 87669) @@ -0,0 +1,55 @@ +# -*- 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 +# $Id$ + +PortSystem 1.0 + +name telepathy-salut +version 0.6.0 +license LGPL-2.1+ +set branch [join [lrange [split ${version} .] 0 1] .] +description The ${name} component of Telepathy - a Flexible Communications Framework +long_description \ + Salut implements the Telepathy D-Bus specification for link-local XMPP (XEP-0174, often called \"Bonjour\") +maintainers devans openmaintainer +categories comms +platforms darwin +homepage http://telepathy.freedesktop.org/wiki/ +master_sites http://telepathy.freedesktop.org/releases/${name}/ + +checksums sha1 c484b3ad335233c7ad3075cb659afcb351a575d9 \ + rmd160 d532bde43e69a29ccd1478ffb2c807ce08cc3b66 + +depends_build port:pkgconfig \ + port:gtk-doc + +depends_lib port:telepathy-glib \ + port:gnutls \ + port:avahi \ + port:libsoup + +patchfiles patch-configure.diff + +configure.args --disable-silent-rules + +variant python25 conflicts python26 python27 description {Use python 2.5} { + configure.python ${prefix}/bin/python2.5 + depends_lib-append port:py25-twisted +} + +variant python26 conflicts python25 python27 description {Use python 2.6} { + configure.python ${prefix}/bin/python2.6 + depends_lib-append port:py26-twisted +} + +variant python27 conflicts python25 python26 description {Use python 2.7} { + configure.python ${prefix}/bin/python2.7 + depends_lib-append port:py27-twisted +} + +if {![variant_isset python25] && ![variant_isset python26]} { + default_variants +python27 +} + +livecheck.type regex +livecheck.url ${master_sites} +livecheck.regex "${name}-(${branch}(?:\\.\\d+)*)${extract.suffix}" Property changes on: trunk/dports/comms/telepathy-salut/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native Added: trunk/dports/comms/telepathy-salut/files/patch-configure.diff =================================================================== --- trunk/dports/comms/telepathy-salut/files/patch-configure.diff (rev 0) +++ trunk/dports/comms/telepathy-salut/files/patch-configure.diff 2011-12-01 08:58:08 UTC (rev 87669) @@ -0,0 +1,22 @@ +--- configure.orig 2011-12-01 00:15:46.000000000 -0800 ++++ configure 2011-12-01 00:25:45.000000000 -0800 +@@ -13497,9 +13497,9 @@ + + + +- PYTHON_PREFIX='${prefix}' ++ PYTHON_PREFIX=`$PYTHON -c 'import sys; print sys.prefix;'` + +- PYTHON_EXEC_PREFIX='${exec_prefix}' ++ PYTHON_EXEC_PREFIX=`$PYTHON -c 'import sys; print sys.exec_prefix;'` + + + +@@ -14870,6 +14870,7 @@ + HAVE_UUID=yes + fi + ++HAVE_UUID=no + + if test x"$HAVE_UUID" = xyes; then +
participants (1)
-
devans@macports.org