Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/coretoppings/
Date: Sat, 03 Apr 2021 19:00:49
Message-Id: 1617476442.d8d5d3805c7c0474a6aa94203ad6e9454b80313f.xgqt@gentoo
1 commit: d8d5d3805c7c0474a6aa94203ad6e9454b80313f
2 Author: Maciej Barć <xgqt <AT> riseup <DOT> net>
3 AuthorDate: Sat Apr 3 19:00:42 2021 +0000
4 Commit: Maciej Barć <xgqt <AT> riseup <DOT> net>
5 CommitDate: Sat Apr 3 19:00:42 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8d5d380
7
8 gui-apps/coretoppings: add live
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Maciej Barć <xgqt <AT> riseup.net>
12
13 gui-apps/coretoppings/coretoppings-9999.ebuild | 41 ++++++++++++++++++++++++++
14 1 file changed, 41 insertions(+)
15
16 diff --git a/gui-apps/coretoppings/coretoppings-9999.ebuild b/gui-apps/coretoppings/coretoppings-9999.ebuild
17 new file mode 100644
18 index 000000000..db62619b7
19 --- /dev/null
20 +++ b/gui-apps/coretoppings/coretoppings-9999.ebuild
21 @@ -0,0 +1,41 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit cmake xdg
28 +
29 +DESCRIPTION="Additional features, plugins, widgets etc for C Suite"
30 +HOMEPAGE="https://gitlab.com/cubocore/coreapps/coretoppings"
31 +
32 +if [[ "${PV}" == *9999* ]]; then
33 + inherit git-r3
34 + EGIT_REPO_URI="https://gitlab.com/cubocore/coreapps/${PN}.git"
35 +else
36 + SRC_URI="https://gitlab.com/cubocore/coreapps/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
37 + KEYWORDS="~amd64"
38 + S="${WORKDIR}/${PN}-v${PV}"
39 +fi
40 +
41 +RESTRICT="test"
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +IUSE="location pulseaudio"
45 +
46 +DEPEND="
47 + dev-qt/qtbluetooth:5
48 + dev-qt/qtwidgets:5
49 + dev-qt/qtx11extras:5
50 + gui-libs/libcprime
51 +"
52 +RDEPEND="
53 + ${DEPEND}
54 + location? ( dev-qt/qtlocation:5 )
55 + pulseaudio? ( media-sound/pulseaudio )
56 +"
57 +
58 +src_prepare() {
59 + cmake_src_prepare
60 +
61 + sed -i 's/C Suite/X-CSuite/' shareit/shareit.desktop || die
62 +}