summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2014-07-08 16:23:25 +0000
committerDavide Pesavento <pesa@gentoo.org>2014-07-08 16:23:25 +0000
commit328874c73468f10f048a9af37d3165e2b0284f73 (patch)
treea5c5a96281fe4d985c341011338cb063d11c090c /net-libs/telepathy-qt
parentremoving bad versions for bug 491368 CVE-2013-6396 and bumping to 2.1.0 (diff)
downloadgentoo-2-328874c73468f10f048a9af37d3165e2b0284f73.tar.gz
gentoo-2-328874c73468f10f048a9af37d3165e2b0284f73.tar.bz2
gentoo-2-328874c73468f10f048a9af37d3165e2b0284f73.zip
old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xDADED6B2671CB57D!)
Diffstat (limited to 'net-libs/telepathy-qt')
-rw-r--r--net-libs/telepathy-qt/ChangeLog6
-rw-r--r--net-libs/telepathy-qt/metadata.xml1
-rw-r--r--net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild74
3 files changed, 5 insertions, 76 deletions
diff --git a/net-libs/telepathy-qt/ChangeLog b/net-libs/telepathy-qt/ChangeLog
index d7cb93e7d422..db808bd8220d 100644
--- a/net-libs/telepathy-qt/ChangeLog
+++ b/net-libs/telepathy-qt/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/telepathy-qt
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.28 2014/07/07 13:14:59 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/ChangeLog,v 1.29 2014/07/08 16:23:25 pesa Exp $
+
+ 08 Jul 2014; Davide Pesavento <pesa@gentoo.org> -telepathy-qt-0.9.3-r1.ebuild,
+ metadata.xml:
+ old
07 Jul 2014; Pacho Ramos <pacho@gentoo.org> telepathy-qt-0.9.3-r2.ebuild:
amd64/x86 stable, bug #514464
diff --git a/net-libs/telepathy-qt/metadata.xml b/net-libs/telepathy-qt/metadata.xml
index dabc844f3d48..1e6e07184330 100644
--- a/net-libs/telepathy-qt/metadata.xml
+++ b/net-libs/telepathy-qt/metadata.xml
@@ -4,7 +4,6 @@
<herd>qt</herd>
<herd>kde</herd>
<use>
- <flag name='farsight'>Enable support for farsight connection manager</flag>
<flag name='farstream'>Enable support for audio/video calls via farstream</flag>
</use>
</pkgmetadata>
diff --git a/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild b/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild
deleted file mode 100644
index dff6a85ec0fa..000000000000
--- a/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt/telepathy-qt-0.9.3-r1.ebuild,v 1.5 2014/04/13 16:03:18 johu Exp $
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_6,2_7} )
-inherit base python-any-r1 cmake-utils virtualx
-
-DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
-HOMEPAGE="http://telepathy.freedesktop.org/"
-SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="debug farsight farstream test"
-
-RDEPEND="
- dev-qt/qtcore:4
- dev-qt/qtdbus:4
- farsight? (
- net-libs/telepathy-farsight
- )
- farstream? (
- >=net-libs/telepathy-farstream-0.2.2
- >=net-libs/telepathy-glib-0.18.0
- )
- !net-libs/telepathy-qt4
-"
-DEPEND="${RDEPEND}
- ${PYTHON_DEPS}
- virtual/pkgconfig
- test? (
- dev-libs/dbus-glib
- dev-libs/glib
- dev-python/dbus-python
- dev-qt/qttest:4
- )
-"
-
-REQUIRED_USE="farsight? ( !farstream )"
-
-DOCS=( AUTHORS ChangeLog HACKING NEWS README )
-
-PATCHES=(
- "${FILESDIR}/${P}-tp-glib-0.18-tests.patch"
- "${FILESDIR}/${P}-avatar-duplication.patch"
- "${FILESDIR}/${P}-cmake-2.8.12.patch"
-)
-
-# test hangs, needs further investigation
-RESTRICT="test"
-
-pkg_setup() {
- python-any-r1_pkg_setup
-}
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_enable farsight)
- $(cmake-utils_use_enable farstream)
- $(cmake-utils_use_enable debug DEBUG_OUTPUT)
- $(cmake-utils_use_enable test TESTS)
- -DENABLE_EXAMPLES=OFF
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- pushd "${CMAKE_BUILD_DIR}" > /dev/null
- Xemake test || die "tests failed"
- popd > /dev/null
-}