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-notificationd/
Date: Wed, 29 Oct 2014 12:33:37
Message-Id: 1414586002.675b14bf0603ec88787d42bdee8af82398afa012.jauhien@gentoo
1 commit: 675b14bf0603ec88787d42bdee8af82398afa012
2 Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 29 12:33:22 2014 +0000
4 Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 29 12:33:22 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=675b14bf
7
8 [lxqt-base/lxqt-notificationd] 0.8.0 release
9
10 ---
11 lxqt-base/lxqt-notificationd/Manifest | 1 +
12 .../lxqt-notificationd-0.8.0.ebuild | 41 ++++++++++++++++++++++
13 2 files changed, 42 insertions(+)
14
15 diff --git a/lxqt-base/lxqt-notificationd/Manifest b/lxqt-base/lxqt-notificationd/Manifest
16 new file mode 100644
17 index 0000000..fc91a74
18 --- /dev/null
19 +++ b/lxqt-base/lxqt-notificationd/Manifest
20 @@ -0,0 +1 @@
21 +DIST lxqt-notificationd-0.8.0.tar.xz 38336 SHA256 720b6cca74ff5c0433b39feb3040cc25cd6fdcbdfe51186cefac7a42e157999b SHA512 83c32ea51fada6a0d9dadf8474942ad3896063e7b30ba68a663b5f568039bbd0c7ab6e4feaacc1dfa883cc4af431546003e00e6e632fefe34ac6b359e3bc2efd WHIRLPOOL eb4b38e6f7f5af652e612a78388dd37afedb569cc00b00279689642b3ebb888c174a244cf7fecf24afe0be35dadecf0755496006030cc4dbe690ae39db76f306
22
23 diff --git a/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.8.0.ebuild b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.8.0.ebuild
24 new file mode 100644
25 index 0000000..2ea7528
26 --- /dev/null
27 +++ b/lxqt-base/lxqt-notificationd/lxqt-notificationd-0.8.0.ebuild
28 @@ -0,0 +1,41 @@
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 notification daemon and library"
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="GPL-2 LGPL-2.1+"
48 +SLOT="0"
49 +
50 +DEPEND="
51 + dev-qt/linguist-tools:5
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 + >=razorqt-base/libqtxdg-1.0.0
60 + x11-libs/libX11
61 +"
62 +RDEPEND="${DEPEND}"
63 +
64 +src_configure() {
65 + local mycmakeargs=(
66 + -DUSE_QT5=ON
67 + )
68 + cmake-utils_src_configure
69 +}