Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/snorenotify/
Date: Thu, 28 Jan 2016 17:09:50
Message-Id: 1454000973.af3fb6e5c4b6a26bc87f05ef27e16a8966671b84.kensington@gentoo
1 commit: af3fb6e5c4b6a26bc87f05ef27e16a8966671b84
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 28 17:09:17 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 28 17:09:33 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3fb6e5
7
8 x11-libs/snorenotify: version bump
9
10 Package-Manager: portage-2.2.27
11
12 x11-libs/snorenotify/Manifest | 1 +
13 x11-libs/snorenotify/snorenotify-0.7.0.ebuild | 57 +++++++++++++++++++++++++++
14 2 files changed, 58 insertions(+)
15
16 diff --git a/x11-libs/snorenotify/Manifest b/x11-libs/snorenotify/Manifest
17 index 4a71a24..7cc5f8a 100644
18 --- a/x11-libs/snorenotify/Manifest
19 +++ b/x11-libs/snorenotify/Manifest
20 @@ -1 +1,2 @@
21 DIST snorenotify-0.6.0.tar.xz 198376 SHA256 d221bed77abec2d0e7c6120e63ca5f3f4b0193d84fdec497d61ab1159c85269e SHA512 0fa082dcfc8586a75df171918cde8ea86d4ea40646791a1e6f2818181d1318c3c53a281aa25bba16cae62ea2e39b2f718e0f752eac5d8f6ea71bbb9cee961dac WHIRLPOOL c33c9c12a885b3f2967665d09a8fc7e8ad8b6511c60f47845b5cfc2e4c24ff32e541ef18463fd707e4aae8d5d84958102aaf65e286ce3be9cdf965e52c32f7f0
22 +DIST snorenotify-0.7.0.tar.xz 200032 SHA256 6d411ba6e31a73db56d298195f8336f66f8fe4fffd64d5fde3f14090e68ee64b SHA512 2030a7b6bc69d3803e83e1a6d26efa5bfdd3facf53dcaade6059b85cea3db879ea49b9e02dbce3b043b4ddded21509a6d5859a4002cfd57a870a0e39cd11011a WHIRLPOOL f9be5e7d22724e31d82b633bfc5943a0f767e567d68c4c98edcfb8dadd1797c7c3e8942ac88282d0bb40612e886d70d5874a1c5407631001aa26fcb03c8da5e7
23
24 diff --git a/x11-libs/snorenotify/snorenotify-0.7.0.ebuild b/x11-libs/snorenotify/snorenotify-0.7.0.ebuild
25 new file mode 100644
26 index 0000000..9980b28
27 --- /dev/null
28 +++ b/x11-libs/snorenotify/snorenotify-0.7.0.ebuild
29 @@ -0,0 +1,57 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +inherit cmake-utils gnome2-utils virtualx
37 +
38 +DESCRIPTION="Multi platform Qt notification framework"
39 +HOMEPAGE="https://techbase.kde.org/Projects/Snorenotify"
40 +SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
41 +
42 +LICENSE="LGPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="sound test"
46 +
47 +RDEPEND="
48 + dev-qt/qtcore:5
49 + dev-qt/qtdbus:5
50 + dev-qt/qtdeclarative:5
51 + dev-qt/qtgui:5
52 + dev-qt/qtnetwork:5
53 + dev-qt/qtwebsockets:5
54 + dev-qt/qtwidgets:5
55 + sound? ( dev-qt/qtmultimedia:5 )
56 +"
57 +DEPEND="${RDEPEND}
58 + dev-qt/linguist-tools:5
59 + kde-frameworks/extra-cmake-modules
60 + test? ( dev-qt/qttest:5 )
61 +"
62 +
63 +src_configure() {
64 + local mycmakeargs=(
65 + $(cmake-utils_use_find_package sound Qt5Multimedia)
66 + $(cmake-utils_use_find_package test Qt5Test)
67 + )
68 +
69 + cmake-utils_src_configure
70 +}
71 +
72 +src_test() {
73 + virtx cmake-utils_src_test
74 +}
75 +
76 +pkg_preinst() {
77 + gnome2_icon_savelist
78 +}
79 +
80 +pkg_postinst() {
81 + gnome2_icon_cache_update
82 +}
83 +
84 +pkg_postrm() {
85 + gnome2_icon_cache_update
86 +}