Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-system-monitor/
Date: Fri, 25 Dec 2015 16:25:46
Message-Id: 1451060729.d8de85a00afd99a582852fcf7c24105384c15067.pacho@gentoo
1 commit: d8de85a00afd99a582852fcf7c24105384c15067
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 16:25:13 2015 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 16:25:29 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8de85a0
7
8 mate-extra/mate-system-monitor: Fix building with latest glibmm/libsigc++
9
10 Package-Manager: portage-2.2.26
11
12 .../mate-system-monitor/mate-system-monitor-1.8.0.ebuild | 11 ++++++++---
13 1 file changed, 8 insertions(+), 3 deletions(-)
14
15 diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild b/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild
16 index dfda81c..f32ee99 100644
17 --- a/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild
18 +++ b/mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild
19 @@ -3,10 +3,9 @@
20 # $Id$
21
22 EAPI="5"
23 -
24 GCONF_DEBUG="no"
25
26 -inherit gnome2 versionator
27 +inherit flag-o-matic gnome2 versionator
28
29 MATE_BRANCH="$(get_version_component_range 1-2)"
30
31 @@ -42,4 +41,10 @@ DEPEND="${RDEPEND}
32 sys-devel/gettext:*
33 virtual/pkgconfig:*"
34
35 -DOCS="AUTHORS ChangeLog NEWS README"
36 +src_configure() {
37 + # This is needed for this old version, current upstream versions
38 + # finally append it themselves:
39 + # https://github.com/mate-desktop/mate-system-monitor/commit/56594f6f10ba04aa51af976bc8339ea9ae54ea21
40 + append-cxxflags -std=c++11
41 + gnome2_src_configure
42 +}