Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/qtox/
Date: Sun, 19 Jan 2020 23:53:39
Message-Id: 1579477890.c44fa0ab74ef9c859465a18ed7ab2332604dd553.asturm@gentoo
1 commit: c44fa0ab74ef9c859465a18ed7ab2332604dd553
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 15 20:33:37 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 19 23:51:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c44fa0ab
7
8 net-im/qtox: Drop 1.16.3 (r0)
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-im/qtox/qtox-1.16.3.ebuild | 73 ------------------------------------------
14 1 file changed, 73 deletions(-)
15
16 diff --git a/net-im/qtox/qtox-1.16.3.ebuild b/net-im/qtox/qtox-1.16.3.ebuild
17 deleted file mode 100644
18 index 57aabd1c8f0..00000000000
19 --- a/net-im/qtox/qtox-1.16.3.ebuild
20 +++ /dev/null
21 @@ -1,73 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -MY_P="qTox-${PV}"
28 -inherit cmake xdg
29 -
30 -DESCRIPTION="Most feature-rich GUI for net-libs/tox using Qt5"
31 -HOMEPAGE="https://github.com/qTox/qTox"
32 -SRC_URI="https://github.com/qTox/qTox/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
33 -
34 -LICENSE="GPL-3+"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE="notification test X"
38 -
39 -RESTRICT="!test? ( test )"
40 -
41 -S="${WORKDIR}/${MY_P}"
42 -
43 -BDEPEND="
44 - dev-qt/linguist-tools:5
45 - virtual/pkgconfig
46 -"
47 -RDEPEND="
48 - dev-db/sqlcipher
49 - dev-libs/libsodium:=
50 - dev-qt/qtconcurrent:5
51 - dev-qt/qtcore:5
52 - dev-qt/qtgui:5[gif,jpeg,png,xcb]
53 - dev-qt/qtnetwork:5
54 - dev-qt/qtopengl:5
55 - dev-qt/qtsql:5
56 - dev-qt/qtsvg:5
57 - dev-qt/qtwidgets:5
58 - dev-qt/qtxml:5
59 - media-gfx/qrencode:=
60 - media-libs/libexif:=
61 - media-libs/openal
62 - >=media-video/ffmpeg-2.6.3:=[webp,v4l]
63 - net-libs/tox:0/0.2[av]
64 - notification? ( x11-libs/gtk+:2 )
65 - X? ( x11-libs/libX11
66 - x11-libs/libXScrnSaver )
67 -"
68 -DEPEND="${RDEPEND}
69 - test? ( dev-qt/qttest:5 )
70 -"
71 -
72 -PATCHES=( "${FILESDIR}/${P}-qt-5.13.patch" ) # bug #699152
73 -
74 -src_prepare() {
75 - cmake_src_prepare
76 -
77 - # bug 628574
78 - if ! use test; then
79 - sed -i CMakeLists.txt -e "/include(Testing)/d" || die
80 - sed -i cmake/Dependencies.cmake -e "/find_package(Qt5Test/d" || die
81 - fi
82 -}
83 -
84 -src_configure() {
85 - local mycmakeargs=(
86 - -DENABLE_STATUSNOTIFIER=$(usex notification)
87 - -DENABLE_GTK_SYSTRAY=$(usex notification)
88 - -DPLATFORM_EXTENSIONS=$(usex X)
89 - -DUSE_FILTERAUDIO=OFF
90 - -DGIT_DESCRIBE="${PV}"
91 - )
92 -
93 - cmake_src_configure
94 -}