Gentoo Archives: gentoo-commits

From: Jauhien Piatlicki <jauhien@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: lxqt-base/lxqt-qtplugin/
Date: Wed, 29 Oct 2014 16:51:02
Message-Id: 1414601440.c3bbc4fdbe3759f45f860e2328b6c07b30f2a343.jauhien@gentoo
1 commit: c3bbc4fdbe3759f45f860e2328b6c07b30f2a343
2 Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 29 16:50:40 2014 +0000
4 Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 29 16:50:40 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=c3bbc4fd
7
8 [lxqt-base/lxqt-qtplugin] 0.8.0 release
9
10 ---
11 lxqt-base/lxqt-qtplugin/Manifest | 1 +
12 lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.8.0.ebuild | 36 ++++++++++++++++++++++
13 2 files changed, 37 insertions(+)
14
15 diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest
16 new file mode 100644
17 index 0000000..01b894d
18 --- /dev/null
19 +++ b/lxqt-base/lxqt-qtplugin/Manifest
20 @@ -0,0 +1 @@
21 +DIST lxqt-qtplugin-0.8.0.tar.xz 16712 SHA256 0708c2a814c95777e93c8f23efc0bf1f0bdd193bae580627ced915a7b1b29b8d SHA512 6e9162e4f7aab07cebe54109a508caa17cfb21ea6354d122e28096f1abf4d3fbda69bfb7c50df32ed3bfa30eb4af9d5ec9c48e0d73173062aa227adbe7c33e66 WHIRLPOOL 3f959dfbbb71a8e04b2765180a14f5735639158a34e980d292d8b0e21bc863be6fbb88abb50ba2931a1ad37c535a5b2b3ca87457523c05344d01a10a6e01467a
22
23 diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.8.0.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.8.0.ebuild
24 new file mode 100644
25 index 0000000..d7b0b9d
26 --- /dev/null
27 +++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.8.0.ebuild
28 @@ -0,0 +1,36 @@
29 +# Copyright 1999-2014 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Header: $
32 +
33 +EAPI=5
34 +inherit cmake-utils
35 +
36 +DESCRIPTION="LXQt system integration plugin for Qt"
37 +HOMEPAGE="http://www.lxqt.org/"
38 +
39 +if [[ ${PV} = *9999* ]]; then
40 + inherit git-r3
41 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
42 +else
43 + SRC_URI="http://lxqt.org/downloads/${PV}/${P}.tar.xz"
44 + KEYWORDS="~amd64 ~x86"
45 +fi
46 +
47 +LICENSE="LGPL-2.1+"
48 +SLOT="0"
49 +
50 +DEPEND="
51 + dev-qt/linguist-tools:5
52 + dev-qt/qtcore:5
53 + dev-qt/qtgui:5
54 + dev-qt/qtwidgets:5
55 + ~lxqt-base/liblxqt-${PV}
56 + x11-libs/libX11"
57 +RDEPEND="${DEPEND}"
58 +
59 +src_configure() {
60 + local mycmakeargs=(
61 + -DUSE_QT5=ON
62 + )
63 + cmake-utils_src_configure
64 +}