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-qtplugin/
Date: Mon, 26 Sep 2016 23:29:55
Message-Id: 1474932578.8001cc41a3f91f2d4229dcf597525cf79c46be60.mrueg@gentoo
1 commit: 8001cc41a3f91f2d4229dcf597525cf79c46be60
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 23:29:38 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 23:29:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8001cc41
7
8 lxqt-base/lxqt-qtplugin: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.1
11
12 lxqt-base/lxqt-qtplugin/Manifest | 1 +
13 .../lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild | 36 ++++++++++++++++++++++
14 2 files changed, 37 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest
17 index 6d3bc85..6bbfddc 100644
18 --- a/lxqt-base/lxqt-qtplugin/Manifest
19 +++ b/lxqt-base/lxqt-qtplugin/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-qtplugin-0.10.0.tar.xz 20984 SHA256 9de45e4463169ec294df62a56a9e10568fe035ad0a7c98901e72b03463690ad4 SHA512 4559bf8c3db4a0df2c7c85a8242aaf29dbd6f3bb430b9f74ef60475f0dab94c24a4b1c53b07f8ce05e0309763e1eacc1c656af6e2d79000fafc7f462e3c375cf WHIRLPOOL 3586165a1697192cbbb8c0b613ba3c31c7748304bd9eea6f139c30f06e173d3485cf7472e7b9dd803cea2fd456ef2ee3055cc7a22567f4f002303f0828bd1435
22 +DIST lxqt-qtplugin-0.11.0.tar.xz 20764 SHA256 c1fdaba78d139e3cfdfb783c60e4f84632ce296a7cf8d5444d60ca1d1e5dbf59 SHA512 2e8d1e26b1b2d28bb874d1eb61a2e6a678e8b3477957016bc8e9783a13c821450746cbfe59954a09142d94e67203ef8a28eab8ff8d3d0798f87b5a920ec80b09 WHIRLPOOL eafec7dbdc6c3f7e8436b684548fe9c311328eefd784c7669b9fa7a9598c2144e163298e1194b45dc98aef26cfeee4070a725d717c182933a3f39e2b24718001
23
24 diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..9da4436
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild
29 @@ -0,0 +1,36 @@
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="LXQt system integration plugin for Qt"
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="LGPL-2.1+"
49 +SLOT="0"
50 +
51 +RDEPEND="
52 + dev-libs/libdbusmenu-qt[qt5]
53 + >=dev-libs/libqtxdg-2.0.0
54 + dev-qt/qtcore:5
55 + dev-qt/qtgui:5
56 + dev-qt/qtwidgets:5
57 + ~lxqt-base/liblxqt-${PV}
58 + x11-libs/libX11"
59 +DEPEND="${RDEPEND}
60 + dev-qt/linguist-tools:5"
61 +
62 +src_configure() {
63 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
64 + cmake-utils_src_configure
65 +}