summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDion Moult <moult@gentoo.org>2013-12-15 12:18:36 +0000
committerDion Moult <moult@gentoo.org>2013-12-15 12:18:36 +0000
commita4bb3524de67d07124a966a0f276f148d134538d (patch)
tree366a028dcee6883ca9c7b3068c4098897ff7ea25 /net-voip
parentIntroduce the PyQt4 UI for mupen64plus-2.0. (diff)
downloadgentoo-2-a4bb3524de67d07124a966a0f276f148d134538d.tar.gz
gentoo-2-a4bb3524de67d07124a966a0f276f148d134538d.tar.bz2
gentoo-2-a4bb3524de67d07124a966a0f276f148d134538d.zip
<=net-libs/ekiga-2.0.12 removal (pending 11 July 2013), see #290062 and #290063 for reference.
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-voip')
-rw-r--r--net-voip/ekiga/ChangeLog6
-rw-r--r--net-voip/ekiga/ekiga-2.0.12.ebuild99
2 files changed, 5 insertions, 100 deletions
diff --git a/net-voip/ekiga/ChangeLog b/net-voip/ekiga/ChangeLog
index 1b043cbfb4d1..ebea601623ce 100644
--- a/net-voip/ekiga/ChangeLog
+++ b/net-voip/ekiga/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-voip/ekiga
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/ekiga/ChangeLog,v 1.54 2013/10/27 09:55:42 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-voip/ekiga/ChangeLog,v 1.55 2013/12/15 12:18:36 moult Exp $
+
+ 15 Dec 2013; Dion Moult <moult@gentoo.org> -ekiga-2.0.12.ebuild:
+ <=net-libs/ekiga-2.0.12 removal (pending 11 July 2013), see #290062 and
+ #290063 for reference.
27 Oct 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Voip herd is removed: http://article.gmane.org/gmane.linux.gentoo.devel/88434
diff --git a/net-voip/ekiga/ekiga-2.0.12.ebuild b/net-voip/ekiga/ekiga-2.0.12.ebuild
deleted file mode 100644
index a31b78d3cb27..000000000000
--- a/net-voip/ekiga/ekiga-2.0.12.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-voip/ekiga/ekiga-2.0.12.ebuild,v 1.7 2013/08/15 02:40:49 patrick Exp $
-
-EAPI="2"
-inherit gnome2 eutils flag-o-matic
-
-DESCRIPTION="H.323 and SIP VoIP softphone"
-HOMEPAGE="http://www.ekiga.org/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE="avahi dbus doc gnome sdl"
-
-RDEPEND="~dev-libs/pwlib-1.10.$[${PV##*.}-2][ldap]
- ~net-libs/opal-2.2.$[${PV##*.}-1]
- >=x11-libs/gtk+-2.4.0:2
- >=dev-libs/glib-2.0.0:2
- sdl? ( >=media-libs/libsdl-1.2.4 )
- dbus? ( >=dev-libs/dbus-glib-0.71 )
- avahi? ( net-dns/avahi[dbus] )
- gnome? (
- >=gnome-base/libbonobo-2.2.0
- >=gnome-base/libgnomeui-2.2.0
- >=gnome-base/libgnome-2.2.0
- >=gnome-base/gconf-2.2.0
- >=gnome-base/orbit-2.5.0
- gnome-extra/evolution-data-server
- media-sound/pulseaudio )"
-
-DEPEND="${RDEPEND}
- dev-lang/perl
- virtual/pkgconfig
- >=dev-util/intltool-0.20
- gnome? ( app-text/scrollkeeper
- doc? ( app-text/gnome-doc-utils ) )"
-
-DOCS="AUTHORS ChangeLog NEWS"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- $(use_enable dbus)
- $(use_enable sdl)
- $(use_enable avahi)
- $(use_enable doc)
- $(use_enable gnome)
- --disable-scrollkeeper
- --disable-schemas-install"
-}
-
-src_unpack() {
- gnome2_src_unpack
-}
-
-src_prepare() {
- # Fix configure to install schemafile into the proper directory
- epatch "${FILESDIR}"/${PN}-1.99.0-configure.patch
-
- # Fix gnome-doc-utils detection
- epatch "${FILESDIR}"/${P}-gdu.patch
-
- # Use installed inittools, see bug #234851
- sed -i -e 's#$(top_builddir)/intltool-#intltool-#' configure \
- || die "patching configure failed"
-}
-
-src_test() {
- # xml files don't follow dtd, see bug #235849
- # prevent tests to fail
- if use gnome; then
- sed -i -e "/,check-doc/d" help/Makefile \
- || die "patching help/Makefile for tests failed"
- sed -i -e "/^check:/d" help/Makefile \
- || die "patching help/Makefile for tests failed"
- fi
-
- emake -j1 check || die "emake check failed"
-}
-
-src_install() {
- if use gnome; then
- gnome2_src_install
- else
- emake DESTDIR="${D}" install || die "make install failed"
-
- dodoc ${DOCS}
- fi
-}
-
-pkg_postinst() {
- if use gnome; then
- gnome2_pkg_postinst
-
- # we need to fix the GConf permissions, see bug #59764
- einfo "Fixing GConf permissions for ekiga"
- ekiga-config-tool --fix-permissions
- fi
-}