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: dev-libs/libqtxdg/
Date: Mon, 26 Sep 2016 20:15:57
Message-Id: 1474920876.cabcc5d31f08db5c83b9f5ab5a1bc1f7b5c67d8a.mrueg@gentoo
1 commit: cabcc5d31f08db5c83b9f5ab5a1bc1f7b5c67d8a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 20:14:36 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 20:14:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabcc5d3
7
8 dev-libs/libqtxdg: Version bump to 2.0.0
9
10 Gentoo-Bug: 594592
11
12 Package-Manager: portage-2.3.1
13
14 dev-libs/libqtxdg/Manifest | 1 +
15 dev-libs/libqtxdg/libqtxdg-2.0.0.ebuild | 48 +++++++++++++++++++++++++++++++++
16 2 files changed, 49 insertions(+)
17
18 diff --git a/dev-libs/libqtxdg/Manifest b/dev-libs/libqtxdg/Manifest
19 index 9a973ea..743cea9 100644
20 --- a/dev-libs/libqtxdg/Manifest
21 +++ b/dev-libs/libqtxdg/Manifest
22 @@ -1 +1,2 @@
23 DIST libqtxdg-1.3.0.tar.xz 52472 SHA256 850cad7c25412f70ccc997d1f3013a788d35deae42d9c1376556dc779ea92a89 SHA512 2cc70c4d779c83afdfd83e6e36f1b9362aa5b2bd8f5d9839880e31c30e317da812e97dfd8d7188816ef60e7e27471b02bf9248b5781b2b81f299040a4a7a5b65 WHIRLPOOL 317a017b5dcfc64f0fbb2f483478dab116881ca717513e9e0ce27d302dcf099cbab01289f140ab02682679a09290e711e139a901a324dc4a7adc581fce425a85
24 +DIST libqtxdg-2.0.0.tar.xz 62404 SHA256 8c89ebaa3c0ee946f9048828e064c1c510c5639779a7688ed0b240307645dbcb SHA512 f4e32346eddedd31195093214a45e9831742ee886a14b5d7ba1d640a91e05473b9b8adc7bca9970090f1fa8187597cd10796c32ecea4ac02229e9869cd4f1db3 WHIRLPOOL d7b7a729e30774ccfb0cc0b6fed42b7a92cb16fa9e3c5d108bafe7385b1c141d31d843754be959e8a8c4e4432ffb475b23d8cdb15ff9f1f5d920fa55c6f0d1d0
25
26 diff --git a/dev-libs/libqtxdg/libqtxdg-2.0.0.ebuild b/dev-libs/libqtxdg/libqtxdg-2.0.0.ebuild
27 new file mode 100644
28 index 00000000..c6fadea
29 --- /dev/null
30 +++ b/dev-libs/libqtxdg/libqtxdg-2.0.0.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +inherit cmake-utils virtualx
38 +
39 +DESCRIPTION="A Qt implementation of XDG standards"
40 +HOMEPAGE="http://lxqt.org/"
41 +
42 +if [[ ${PV} == *9999 ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git"
45 +else
46 + SRC_URI="http://downloads.lxqt.org/${PN}/${PV}/${P}.tar.xz"
47 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
48 +fi
49 +
50 +LICENSE="LGPL-2.1"
51 +SLOT="0"
52 +IUSE="test"
53 +
54 +CDEPEND="
55 + dev-qt/qtcore:5
56 + dev-qt/qtdbus:5
57 + dev-qt/qtgui:5
58 + dev-qt/qtsvg:5
59 + dev-qt/qtwidgets:5
60 + dev-qt/qtxml:5
61 +"
62 +DEPEND="${CDEPEND}
63 + virtual/pkgconfig
64 + test? ( dev-qt/qttest:5 )
65 +"
66 +RDEPEND="${CDEPEND}
67 + x11-misc/xdg-utils
68 +"
69 +
70 +src_configure() {
71 + local mycmakeargs=(
72 + -DBUILD_TESTS=$(usex test)
73 + )
74 + cmake-utils_src_configure
75 +}
76 +
77 +src_test() {
78 + VIRTUALX_COMMAND="cmake-utils_src_test" virtualmake
79 +}