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-common/
Date: Fri, 28 Oct 2016 19:07:50
Message-Id: 1477681650.435fe696449f4e83dc845a0e8b24a94affecb3d2.mrueg@gentoo
1 commit: 435fe696449f4e83dc845a0e8b24a94affecb3d2
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 28 19:07:30 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 28 19:07:30 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=435fe696
7
8 lxqt-base/lxqt-common: Version bump to 0.11.0
9
10 Package-Manager: portage-2.3.2
11
12 lxqt-base/lxqt-common/Manifest | 1 +
13 lxqt-base/lxqt-common/lxqt-common-0.11.0.ebuild | 35 +++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/lxqt-base/lxqt-common/Manifest b/lxqt-base/lxqt-common/Manifest
17 index 2dec945..df76ffd 100644
18 --- a/lxqt-base/lxqt-common/Manifest
19 +++ b/lxqt-base/lxqt-common/Manifest
20 @@ -1 +1,2 @@
21 DIST lxqt-common-0.10.0.tar.xz 3986324 SHA256 7b12f2fe7a42f5ea0c9f596eeb87ca3c97cc0b706121ceede64480e8480ec9d1 SHA512 bdfc93844724bc906c000b310063a815da15b0e34774da35f0536009fe63f45d1bf7f7b767b20fead013c10bead271a964a2826cf700f14a2a40717614f3b57e WHIRLPOOL 3c09d35845e41d74630ca05c5aff17dad909758044764a208c0a73c9e5cca901cbd7ed89ef3806c32e34f0c95c87df06a03457db1b47403f4a08521e0f6f43fb
22 +DIST lxqt-common-0.11.0.tar.xz 3216520 SHA256 3a34a2105a49545d2695cccaf6310d261a7e760455e583efa2d80b3ab54d6053 SHA512 5eeaa6ead263a93b58ab9ec536c287fe383b5abade722dd3c7232840bc12c56e2208904bfbbc5ee9092c340d14d939a2ac0dcd37cf2175a0f601bbe050f00a2c WHIRLPOOL 7c889291741a729ea642eeb14cdf0aa7fb4bb78aa2a0d6ede64ff8bae9ca6091649ab39642d3477fbc498e35ec021b4bf255db536e5c88a8da21681b039639e3
23
24 diff --git a/lxqt-base/lxqt-common/lxqt-common-0.11.0.ebuild b/lxqt-base/lxqt-common/lxqt-common-0.11.0.ebuild
25 new file mode 100644
26 index 00000000..ff7f405
27 --- /dev/null
28 +++ b/lxqt-base/lxqt-common/lxqt-common-0.11.0.ebuild
29 @@ -0,0 +1,35 @@
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 common resources"
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 +DEPEND=">=lxqt-base/liblxqt-0.11.0"
52 +RDEPEND="${DEPEND}"
53 +PDEPEND=">=lxqt-base/lxqt-session-0.11.0"
54 +
55 +src_configure() {
56 + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
57 + cmake-utils_src_configure
58 +}
59 +
60 +src_install() {
61 + cmake-utils_src_install
62 + dodir "/etc/X11/Sessions"
63 + dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt"
64 +}