Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/xdx/files/, media-radio/xdx/
Date: Sat, 24 Jun 2017 10:49:34
Message-Id: 1498301311.1758daad820618dae14fa6f90d148ad061e27815.tomjbe@gentoo
1 commit: 1758daad820618dae14fa6f90d148ad061e27815
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 24 10:48:31 2017 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 24 10:48:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1758daad
7
8 Drop old
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 media-radio/xdx/Manifest | 2 --
13 media-radio/xdx/files/xdx-gtk-2.20.patch | 34 ----------------------
14 media-radio/xdx/xdx-2.4.2.ebuild | 48 --------------------------------
15 media-radio/xdx/xdx-2.4.3.ebuild | 34 ----------------------
16 4 files changed, 118 deletions(-)
17
18 diff --git a/media-radio/xdx/Manifest b/media-radio/xdx/Manifest
19 index c5d3c71e559..7efa39bc430 100644
20 --- a/media-radio/xdx/Manifest
21 +++ b/media-radio/xdx/Manifest
22 @@ -1,3 +1 @@
23 -DIST xdx-2.4.2.tar.gz 284792 SHA256 ba6e66a248c61a52349881e2c2ea3324840b0acc0419a85f12a49f00ca9d121a SHA512 59ddf00b607f392229481c7e63ff94b01950e69827a64da15c063cb83a8a0f567aadd908db97ad879fbd5cb62b5844e9806f960f5972be94bd5436cfe7ed23f9 WHIRLPOOL 0f6cd1159c76a69d7d582cb9ca84d06cd37474e00a397e7f25f7c3303dc86ac313aadee8595aa15a8a5f762f41f1d4ae4c0b48bbcca759548e5d57221c7be473
24 -DIST xdx-2.4.3.tar.gz 324178 SHA256 fc6e49a2c2a9d7c729acf68e659bf8f5ebd402dc3be0f781bd50b8b76b01427c SHA512 b121e1ae45edc08d4c9331f877120fab8c0ed80fab9b90516e0ea29fc1055715b9f27d492dcebd8a20288dc785a2341a15a8052e89d5f75f6609b03c827709cb WHIRLPOOL 45712dd0da1faf546b7f45f9fea8c6f29b22e5cfd09ee47d870f30d24d53936818d963cb4ed0816b98041b3f44e4e728be018bcbad55e802fef9f3fdb13e07b9
25 DIST xdx-2.5.0.tar.gz 342548 SHA256 bf689015e6604c462333bde3383027c01bdfcf9f764f6ea2f1a77bff8eb98fdb SHA512 e03ac1fde04f921d33a7075a0f9ddc632336c2c4506e69c3e51386c25080c527eb7195729a89edb895308beff05e7544c93831ad03df6db376b9624063a2972a WHIRLPOOL df65bfe5b26657f5a4b665eb4101e5a2461669bc5785b8effbd94ee48285291d032195abb62d5dabb6f7d4a47f292f59e63305d627cdf372638d8bdddb0b985e
26
27 diff --git a/media-radio/xdx/files/xdx-gtk-2.20.patch b/media-radio/xdx/files/xdx-gtk-2.20.patch
28 deleted file mode 100644
29 index 2b3c7655e15..00000000000
30 --- a/media-radio/xdx/files/xdx-gtk-2.20.patch
31 +++ /dev/null
32 @@ -1,34 +0,0 @@
33 -# fix for bug #326627 deprecated macro from gtk+-2.20 on
34 -diff -Nur xdx-2.4.2.orig//src/gui.c xdx-2.4.2//src/gui.c
35 ---- xdx-2.4.2.orig//src/gui.c 2010-07-03 11:09:59.000000000 +0000
36 -+++ xdx-2.4.2//src/gui.c 2010-07-03 11:10:45.000000000 +0000
37 -@@ -841,7 +841,7 @@
38 - GtkWidget *mainentry;
39 -
40 - mainentry = g_object_get_data (G_OBJECT (gui->window), "mainentry");
41 -- if (GTK_WIDGET_HAS_FOCUS(mainentry))
42 -+ if (gtk_widget_has_focus(mainentry))
43 - {
44 - switch (event->keyval)
45 - {
46 -diff -Nur xdx-2.4.2.orig//src/text.c xdx-2.4.2//src/text.c
47 ---- xdx-2.4.2.orig//src/text.c 2010-07-03 11:09:59.000000000 +0000
48 -+++ xdx-2.4.2//src/text.c 2010-07-03 11:11:16.000000000 +0000
49 -@@ -528,7 +528,7 @@
50 -
51 -
52 - /* focusing the treeview will stop scrolling */
53 -- if (!GTK_WIDGET_HAS_FOCUS(treeview))
54 -+ if (!gtk_widget_has_focus(treeview))
55 - {
56 - path = gtk_tree_model_get_path (GTK_TREE_MODEL (model), &iter);
57 - gtk_tree_view_set_cursor (GTK_TREE_VIEW (treeview), path, NULL, FALSE);
58 -@@ -797,7 +797,7 @@
59 - }
60 - }
61 - /* focusing (clicking) the textview will stop scrolling */
62 -- if (!GTK_WIDGET_HAS_FOCUS(maintext))
63 -+ if (!gtk_widget_has_focus(maintext))
64 - {
65 - gtk_text_buffer_get_bounds (buffer, &start, &end);
66 - gtk_text_buffer_place_cursor(buffer, &end);
67
68 diff --git a/media-radio/xdx/xdx-2.4.2.ebuild b/media-radio/xdx/xdx-2.4.2.ebuild
69 deleted file mode 100644
70 index e61047cb12b..00000000000
71 --- a/media-radio/xdx/xdx-2.4.2.ebuild
72 +++ /dev/null
73 @@ -1,48 +0,0 @@
74 -# Copyright 1999-2014 Gentoo Foundation
75 -# Distributed under the terms of the GNU General Public License v2
76 -
77 -EAPI="5"
78 -
79 -inherit eutils
80 -
81 -DESCRIPTION="a GTK+ TCP/IP DX-cluster and ON4KST chat client"
82 -HOMEPAGE="http://www.ibiblio.org/pub/linux/apps/ham"
83 -SRC_URI="http://www.ibiblio.org/pub/linux/apps/ham/${P}.tar.gz"
84 -
85 -LICENSE="GPL-2"
86 -SLOT="0"
87 -KEYWORDS="amd64 x86"
88 -IUSE="nls"
89 -
90 -RDEPEND=">=x11-libs/gtk+-2.12:2"
91 -DEPEND="${RDEPEND}
92 - virtual/pkgconfig
93 - nls? ( sys-devel/gettext )"
94 -
95 -src_prepare() {
96 - # fix for bug #326627 - deprecated macro in gtk+ from 2.20 on
97 - if has_version ">=x11-libs/gtk+-2.20" ; then
98 - epatch "${FILESDIR}"/${PN}-gtk-2.20.patch
99 - fi
100 -
101 - # Drop DEPRECATED flags, bug #391091
102 - sed -i -e 's:-D[A-Z_]*DISABLE_DEPRECATED:$(NULL):g' \
103 - src/Makefile.am src/Makefile.in || die
104 -
105 - # Fix desktop file
106 - sed -i -e "s/Network;HamRadio/Network;HamRadio;/" Xdx.desktop || die
107 -}
108 -
109 -src_configure() {
110 - econf $(use_enable nls)
111 -}
112 -
113 -src_install() {
114 - emake DESTDIR="${D}" install
115 - dodoc AUTHORS ChangeLog NEWS README TODO
116 -}
117 -
118 -pkg_postinst() {
119 - elog "To use the rig control feature, install media-libs/hamlib"
120 - elog "and enable hamlib in the Preferences dialog. (no need for recompile)"
121 -}
122
123 diff --git a/media-radio/xdx/xdx-2.4.3.ebuild b/media-radio/xdx/xdx-2.4.3.ebuild
124 deleted file mode 100644
125 index 581a44fe31c..00000000000
126 --- a/media-radio/xdx/xdx-2.4.3.ebuild
127 +++ /dev/null
128 @@ -1,34 +0,0 @@
129 -# Copyright 1999-2014 Gentoo Foundation
130 -# Distributed under the terms of the GNU General Public License v2
131 -
132 -EAPI="5"
133 -
134 -inherit eutils
135 -
136 -DESCRIPTION="a GTK+ TCP/IP DX-cluster and ON4KST chat client"
137 -HOMEPAGE="https://sourceforge.net/projects/xdxclusterclient"
138 -SRC_URI="mirror://sourceforge/xdxclusterclient/${P}.tar.gz"
139 -
140 -LICENSE="GPL-2"
141 -SLOT="0"
142 -KEYWORDS="amd64 x86"
143 -IUSE="nls"
144 -
145 -RDEPEND=">=x11-libs/gtk+-2.12:2"
146 -DEPEND="${RDEPEND}
147 - virtual/pkgconfig
148 - nls? ( sys-devel/gettext )"
149 -
150 -src_configure() {
151 - econf $(use_enable nls)
152 -}
153 -
154 -src_install() {
155 - emake DESTDIR="${D}" install
156 - dodoc AUTHORS ChangeLog NEWS README TODO
157 -}
158 -
159 -pkg_postinst() {
160 - elog "To use the rig control feature, install media-libs/hamlib"
161 - elog "and enable hamlib in the Preferences dialog. (no need for recompile)"
162 -}