diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-10-27 09:47:16 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-10-27 09:47:16 +0000 |
commit | 45aab22153b29c8cc16ea6734c178237dff27ecc (patch) | |
tree | 655d8230cca377291ae52c4c763e373d57cd6d4f /net-libs/telepathy-farstream | |
parent | Cleanup due voip herd removal: http://article.gmane.org/gmane.linux.gentoo.de... (diff) | |
download | gentoo-2-45aab22153b29c8cc16ea6734c178237dff27ecc.tar.gz gentoo-2-45aab22153b29c8cc16ea6734c178237dff27ecc.tar.bz2 gentoo-2-45aab22153b29c8cc16ea6734c178237dff27ecc.zip |
Voip herd is removed: http://article.gmane.org/gmane.linux.gentoo.devel/88434
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-libs/telepathy-farstream')
-rw-r--r-- | net-libs/telepathy-farstream/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/telepathy-farstream/metadata.xml | 1 | ||||
-rw-r--r-- | net-libs/telepathy-farstream/telepathy-farstream-0.4.0.ebuild | 64 |
3 files changed, 5 insertions, 66 deletions
diff --git a/net-libs/telepathy-farstream/ChangeLog b/net-libs/telepathy-farstream/ChangeLog index d74a5e8ec784..675401776788 100644 --- a/net-libs/telepathy-farstream/ChangeLog +++ b/net-libs/telepathy-farstream/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/telepathy-farstream # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/ChangeLog,v 1.19 2013/03/30 17:03:44 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/ChangeLog,v 1.20 2013/10/27 09:47:16 pacho Exp $ + + 27 Oct 2013; Pacho Ramos <pacho@gentoo.org> -telepathy-farstream-0.4.0.ebuild, + metadata.xml: + Voip herd is removed: http://article.gmane.org/gmane.linux.gentoo.devel/88434 30 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> -telepathy-farstream-0.2.3.ebuild: diff --git a/net-libs/telepathy-farstream/metadata.xml b/net-libs/telepathy-farstream/metadata.xml index ea8d33221693..da6fd63d0085 100644 --- a/net-libs/telepathy-farstream/metadata.xml +++ b/net-libs/telepathy-farstream/metadata.xml @@ -2,5 +2,4 @@ <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> <herd>gnome</herd> -<herd>voip</herd> </pkgmetadata> diff --git a/net-libs/telepathy-farstream/telepathy-farstream-0.4.0.ebuild b/net-libs/telepathy-farstream/telepathy-farstream-0.4.0.ebuild deleted file mode 100644 index 5cc784dbea3d..000000000000 --- a/net-libs/telepathy-farstream/telepathy-farstream-0.4.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farstream/telepathy-farstream-0.4.0.ebuild,v 1.5 2013/03/25 16:36:50 ago Exp $ - -EAPI="4" -PYTHON_DEPEND="python? 2:2.5" -PYTHON_USE_WITH="xml" -PYTHON_USE_WITH_OPT="python" - -inherit python - -DESCRIPTION="Telepathy client library that uses Farstream to handle Call channels" -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="examples python" - -RDEPEND=">=dev-libs/glib-2.30:2 - >=sys-apps/dbus-0.60 - >=dev-libs/dbus-glib-0.60 - >=net-libs/telepathy-glib-0.17.5 - >=net-libs/farstream-0.1.0:0.1 - python? ( - >=dev-python/pygobject-2.12.0:2 - >=dev-python/gst-python-0.10.10 )" -# python2 is needed at build time in all cases -DEPEND="${RDEPEND} - !python? ( =dev-lang/python-2*[xml] )" - -pkg_setup() { - # Needed for xincludator.py at build time even if USE=-python - python_set_active_version 2 - python_pkg_setup -} - -src_prepare() { - if use python; then - python_convert_shebangs -r 2 . - fi -} - -src_configure() { - econf $(use_enable python) --disable-static -} - -src_install() { - emake install DESTDIR="${D}" - dodoc AUTHORS ChangeLog NEWS README - - # Remove .la files since static libs are disabled - find "${D}" -name '*.la' -exec rm -f {} + || die - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins examples/*.c - if use python; then - insinto /usr/share/doc/${PF}/examples/python - doins python/examples/*.py - fi - fi -} |