Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/ekiga/, net-voip/ekiga/files/
Date: Fri, 26 Jan 2018 22:52:07
Message-Id: 1517007105.fa35f774736c63cea717842e35bb08ba45cc2021.zlogene@gentoo
1 commit: fa35f774736c63cea717842e35bb08ba45cc2021
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 26 22:51:45 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 26 22:51:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa35f774
7
8 net-voip/ekiga: remove last rited package
9
10 net-voip/ekiga/Manifest | 1 -
11 net-voip/ekiga/ekiga-4.0.1-r1.ebuild | 119 ---------------------
12 net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch | 36 -------
13 net-voip/ekiga/metadata.xml | 9 --
14 4 files changed, 165 deletions(-)
15
16 diff --git a/net-voip/ekiga/Manifest b/net-voip/ekiga/Manifest
17 deleted file mode 100644
18 index 2b5988ffce8..00000000000
19 --- a/net-voip/ekiga/Manifest
20 +++ /dev/null
21 @@ -1 +0,0 @@
22 -DIST ekiga-4.0.1.tar.xz 8339364 BLAKE2B baa6ba4f30e48cf4ec6e11abce06fa369b60b69105bb724cf7acfc29177c6adbbea3ae708ccc927f26fe9860b78a2c7852b58eab119e046dc3e1483179b68afa SHA512 3c4dd5eab6e91434da4bbfe5728ac5943ed5ae89b8b2241fb59abb3e41bcd08ba187b5d60c9d839b1010edd7fc97b53cc6db57a6eec40ba81757a772febd2217
23
24 diff --git a/net-voip/ekiga/ekiga-4.0.1-r1.ebuild b/net-voip/ekiga/ekiga-4.0.1-r1.ebuild
25 deleted file mode 100644
26 index 5cc07966a14..00000000000
27 --- a/net-voip/ekiga/ekiga-4.0.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,119 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -GNOME2_LA_PUNT="yes"
35 -
36 -inherit gnome2
37 -
38 -DESCRIPTION="H.323 and SIP VoIP softphone"
39 -HOMEPAGE="http://www.ekiga.org/"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
44 -IUSE="dbus debug doc eds h323 ldap libnotify cpu_flags_x86_mmx pulseaudio +shm v4l xv zeroconf"
45 -
46 -# gconf is a hard requirement until this bug is fixed:
47 -# https://bugzilla.gnome.org/show_bug.cgi?id=721198
48 -#
49 -# x11-themes/gnome-icon-theme needed, bug #600398, https://bugzilla.gnome.org/show_bug.cgi?id=775652
50 -# changing configure check is not enough and icons will be missing.
51 -RDEPEND="
52 - >=dev-libs/glib-2.24.0:2
53 - >=dev-libs/boost-1.49:0=
54 - dev-libs/libxml2:2
55 - >=gnome-base/gconf-2.6.0:2
56 -
57 - >=net-libs/opal-3.10.9:0=[sip,sound,video,debug=,h323?,xml]
58 - <net-libs/opal-3.12
59 - >=net-libs/ptlib-2.10.9:0=[ldap?,stun,v4l?,video,wav,debug=,dtmf,pulseaudio?,xml]
60 - <net-libs/ptlib-2.12
61 -
62 - >=x11-libs/gtk+-2.20.0:2
63 - x11-themes/gnome-icon-theme
64 - dbus? ( >=sys-apps/dbus-0.36
65 - >=dev-libs/dbus-glib-0.36 )
66 - eds? ( >=gnome-extra/evolution-data-server-1.2:= )
67 - ldap? ( dev-libs/cyrus-sasl:2
68 - net-nds/openldap )
69 - libnotify? ( x11-libs/libnotify )
70 - shm? ( x11-libs/libXext )
71 - xv? ( x11-libs/libXv )
72 - zeroconf? ( >=net-dns/avahi-0.6[dbus] )
73 -"
74 -DEPEND="${RDEPEND}
75 - >=dev-util/intltool-0.35
76 - virtual/pkgconfig
77 - sys-devel/gettext
78 - doc? (
79 - app-text/rarian
80 - app-text/gnome-doc-utils
81 - app-doc/doxygen )
82 - v4l? ( sys-kernel/linux-headers )
83 -"
84 -
85 -# NOTES:
86 -# ptlib/opal needed features are not checked by ekiga, upstream bug 577249
87 -# +doc is not installing dev doc (doxygen)
88 -# UPSTREAM:
89 -# contact ekiga team to be sure intltool and gettext are not nls deps
90 -
91 -PATCHES=(
92 - # https://bugs.gentoo.org/show_bug.cgi?id=499208
93 - "${FILESDIR}"/${P}-crash-clear.patch
94 -)
95 -
96 -src_prepare() {
97 - # remove call to gconftool-2 --shutdown, upstream bug 555976
98 - # gnome-2 eclass is reloading schemas with SIGHUP
99 - sed -i -e '/gconftool-2 --shutdown/d' Makefile.in || die "sed failed"
100 -
101 - # V4L support is auto-enabled, want it to be a user choice
102 - # do not contact upstream because that's a hack
103 - # TODO: check if upstream has removed this hack
104 - if ! use v4l; then
105 - sed -i -e "s/V4L=\"enabled\"/V4L=\"disabled\"/" configure || die "sed failed"
106 - fi
107 -
108 - gnome2_src_prepare
109 -}
110 -
111 -src_configure() {
112 - # dbus-service: always enable if dbus is enabled, no reason to disable it
113 - # Upstream doesn't support experimental stuff:
114 - # https://bugzilla.gnome.org/show_bug.cgi?id=689301
115 - # Hence, we disable gstreamer, kde, kab (kontact)
116 - gnome2_src_configure \
117 - --disable-gstreamer \
118 - --disable-kde \
119 - --enable-libtool-lock \
120 - --disable-kab \
121 - --disable-xcap \
122 - --enable-gconf \
123 - --enable-schemas-install \
124 - --enable-nls \
125 - --disable-static-libs \
126 - $(use_enable dbus) \
127 - $(use_enable dbus dbus_service) \
128 - $(use_enable debug gtk-debug) \
129 - $(use_enable debug opal-debug) \
130 - $(use_enable doc gdu) \
131 - $(use_enable eds) \
132 - $(use_enable h323) \
133 - $(use_enable ldap) \
134 - $(use_enable libnotify notify) \
135 - $(use_enable cpu_flags_x86_mmx mmx) \
136 - $(use_enable shm) \
137 - $(use_enable xv) \
138 - $(use_enable zeroconf avahi)
139 -}
140 -
141 -src_install() {
142 - gnome2_src_install
143 -
144 - if use doc && use dbus; then
145 - insinto "/usr/share/doc/${PF}/"
146 - doins doc/using_dbus.html
147 - fi
148 -}
149
150 diff --git a/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch b/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch
151 deleted file mode 100644
152 index 9b9ca657895..00000000000
153 --- a/net-voip/ekiga/files/ekiga-4.0.1-crash-clear.patch
154 +++ /dev/null
155 @@ -1,36 +0,0 @@
156 -From ebfdaa0690c2f65dfe90714b02ff4f9bc9a3fa6d Mon Sep 17 00:00:00 2001
157 -From: Julien Puydt <jpuydt@××××.fr>
158 -Date: Mon, 21 Jan 2013 15:54:38 +0100
159 -Subject: Made the call-history signal the changes first, then do some cleaning
160 - later -- fixes a crash on clear
161 -
162 ----
163 - lib/engine/components/call-history/history-book.cpp | 5 ++++-
164 - 1 file changed, 4 insertions(+), 1 deletion(-)
165 -
166 -diff --git a/lib/engine/components/call-history/history-book.cpp b/lib/engine/components/call-history/history-book.cpp
167 -index b110d4d..4db92fa 100644
168 ---- a/lib/engine/components/call-history/history-book.cpp
169 -+++ b/lib/engine/components/call-history/history-book.cpp
170 -@@ -177,6 +177,10 @@ History::Book::clear ()
171 -
172 - std::list<ContactPtr> old_contacts = ordered_contacts;
173 - ordered_contacts.clear ();
174 -+
175 -+ cleared ();
176 -+ updated ();
177 -+
178 - for (std::list<ContactPtr>::iterator iter = old_contacts.begin ();
179 - iter != old_contacts.end();
180 - ++iter)
181 -@@ -187,7 +191,6 @@ History::Book::clear ()
182 - xmlDocSetRootElement (doc.get (), root);
183 -
184 - save ();
185 -- cleared ();
186 - }
187 -
188 - void
189 ---
190 -cgit v0.12
191 -
192
193 diff --git a/net-voip/ekiga/metadata.xml b/net-voip/ekiga/metadata.xml
194 deleted file mode 100644
195 index 3a28e4d695d..00000000000
196 --- a/net-voip/ekiga/metadata.xml
197 +++ /dev/null
198 @@ -1,9 +0,0 @@
199 -<?xml version="1.0" encoding="UTF-8"?>
200 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
201 -<pkgmetadata>
202 - <!-- maintainer-needed -->
203 - <use>
204 - <flag name="h323">Enable H.323 protocol</flag>
205 - <flag name="shm">Enable the Shared Memory Extension from libXext</flag>
206 - </use>
207 -</pkgmetadata>