Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/libgtop/
Date: Thu, 02 Aug 2018 05:51:03
Message-Id: 1533189014.045f590323ac919311642667ec531d89d9a8d77e.leio@gentoo
1 commit: 045f590323ac919311642667ec531d89d9a8d77e
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 2 05:21:22 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 2 05:50:14 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=045f5903
7
8 gnome-base/libgtop: bump to 2.38.0
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 gnome-base/libgtop/Manifest | 1 +
13 gnome-base/libgtop/libgtop-2.38.0.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/gnome-base/libgtop/Manifest b/gnome-base/libgtop/Manifest
17 index bb1da6b6f6c..5a283d2317a 100644
18 --- a/gnome-base/libgtop/Manifest
19 +++ b/gnome-base/libgtop/Manifest
20 @@ -1 +1,2 @@
21 DIST libgtop-2.36.0.tar.xz 727072 BLAKE2B 46f24573bde0bcfeb2210ea08446f6e6590fadc5697745178133ce5f3aec2e464cbce8446d2dbddb9f05d4a16eb7daf110c4554778a28573116b2b59edcf556f SHA512 2768c628fa3e872a940246042b2c78ad4618612ecb2cf2b95fb70343a4f1a01bb558d0ce9e5b3468f395349f338ca33d460e1d91f2c123ad39243cd0ff20d5e5
22 +DIST libgtop-2.38.0.tar.xz 729700 BLAKE2B 2296741d6c6bd1c9eb17be10e480dabd732e956826c859c176cbc6f8f03259a3b2f2f04d6c55d1c562b082f7e880bb4b7a3f07a66d7f24660085387dce078879 SHA512 96586b7f12a2b63c5ec7f69c51b6e28361a7458f24f20270fc589213bfae43ae99d1e39efb6101d189741bba084c887554f745131e99d8ed90b7db6d53c36e1d
23
24 diff --git a/gnome-base/libgtop/libgtop-2.38.0.ebuild b/gnome-base/libgtop/libgtop-2.38.0.ebuild
25 new file mode 100644
26 index 00000000000..5a13f2cabe7
27 --- /dev/null
28 +++ b/gnome-base/libgtop/libgtop-2.38.0.ebuild
29 @@ -0,0 +1,32 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +inherit flag-o-matic gnome2
35 +
36 +DESCRIPTION="A library that provides top functionality to applications"
37 +HOMEPAGE="https://git.gnome.org/browse/libgtop"
38 +
39 +LICENSE="GPL-2"
40 +SLOT="2/11" # libgtop soname version
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
42 +IUSE="+introspection"
43 +
44 +RDEPEND="
45 + >=dev-libs/glib-2.26:2
46 + introspection? ( >=dev-libs/gobject-introspection-0.6.7:= )
47 +"
48 +DEPEND="${RDEPEND}
49 + >=dev-util/gtk-doc-am-1.4
50 + >=sys-devel/gettext-0.19.4
51 + virtual/pkgconfig
52 +"
53 +
54 +src_configure() {
55 + # Add explicit stdc, bug #628256
56 + append-cflags "-std=c99"
57 +
58 + gnome2_src_configure \
59 + --disable-static \
60 + $(use_enable introspection)
61 +}