Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-globalkeys/
Date: Mon, 26 Sep 2016 22:45:43
Message-Id: 1474929920.9db4347a6b28a67154a02f6d0010da6ed711077f.mrueg@gentoo
1 commit: 9db4347a6b28a67154a02f6d0010da6ed711077f
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 22:45:20 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 22:45:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db4347a
7
8 lxqt-base/lxqt-globalkeys: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-globalkeys/Manifest | 1 +
13 .../lxqt-globalkeys/lxqt-globalkeys-0.11.0.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-globalkeys/Manifest b/lxqt-base/lxqt-globalkeys/Manifest
17 index 4bc17fb..fa80a9e 100644
18 --- a/lxqt-base/lxqt-globalkeys/Manifest
19 +++ b/lxqt-base/lxqt-globalkeys/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-globalkeys-0.10.0.tar.xz 51576 SHA256 9a9d6a0299a26f91d391a601123e78e18cbe56ee6086cc27ccf800920e146e1a SHA512 2ff76629f956edaf2196435c618d095f8af2c736709406d4fff350ed3e78ae94fb30960d5f218cb5ec8de665b292e8c506830da20ae9752788196ea6ffa69265 WHIRLPOOL 7ff13d5075b9f4a2322b7a5ec2ae12c38615d505f32924535cdd6026ab34c54c8a965dd794f6bbb77c38342ea84f06afc990a58b966fbfc5f27b10c61677e000
22 +DIST lxqt-globalkeys-0.11.0.tar.xz 50480 SHA256 454ba7dd58180576032c1cfa21c576237b0aa0ea509cb47aadc21d1fbadc1354 SHA512 165c22d60a0d21cf25e36429be5ef0daab86329b0c10a1be67cf90cda817ebc409c0ac7c383ff10c51e4dd8194e799af8af9b3affd74dea49dcc93d05fb6cb33 WHIRLPOOL 97ecc7e0fc76f555e17c59f92a985b255fa1a2ce2692ef3d8eba63e7fab1c8c736858922dfe47637769a4e1ab06114549ddb2166a1f7068c9bca7e7eef70271a
23
24 diff --git a/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.11.0.ebuild b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..19fef0d
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-globalkeys/lxqt-globalkeys-0.11.0.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit cmake-utils
36 +
37 +DESCRIPTION="Daemon and library for global keyboard shortcuts registration"
38 +HOMEPAGE="http://lxqt.org/"
39 +
40 +if [[ ${PV} = *9999* ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
43 +else
44 + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz"
45 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
46 +fi
47 +
48 +LICENSE="GPL-2 LGPL-2.1+"
49 +SLOT="0"
50 +
51 +RDEPEND="
52 + dev-qt/qtcore:5
53 + dev-qt/qtdbus:5
54 + dev-qt/qtgui:5
55 + dev-qt/qtwidgets:5
56 + dev-qt/qtx11extras:5
57 + dev-qt/qtxml:5
58 + ~lxqt-base/liblxqt-${PV}
59 + >=dev-libs/libqtxdg-1.0.0
60 + x11-libs/libICE
61 + x11-libs/libSM
62 + x11-libs/libX11
63 + x11-libs/libXext
64 +"
65 +DEPEND="${RDEPEND}
66 + dev-qt/linguist-tools:5
67 +"
68 +
69 +src_configure() {
70 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
71 + cmake-utils_src_configure
72 +}