diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-25 17:25:13 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-25 17:25:29 +0100 |
commit | d8de85a00afd99a582852fcf7c24105384c15067 (patch) | |
tree | e3ce02b1ae3868970cbff8e616590032660b1cf7 /mate-extra | |
parent | sci-biology/bowtie: x86 stable wrt bug #569706 (diff) | |
download | gentoo-d8de85a00afd99a582852fcf7c24105384c15067.tar.gz gentoo-d8de85a00afd99a582852fcf7c24105384c15067.tar.bz2 gentoo-d8de85a00afd99a582852fcf7c24105384c15067.zip |
mate-extra/mate-system-monitor: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
Diffstat (limited to 'mate-extra')
-rw-r--r-- | mate-extra/mate-system-monitor/mate-system-monitor-1.8.0.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
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 index dfda81c47895..f32ee9993c4e 100644 --- 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 @@ -3,10 +3,9 @@ # $Id$ EAPI="5" - GCONF_DEBUG="no" -inherit gnome2 versionator +inherit flag-o-matic gnome2 versionator MATE_BRANCH="$(get_version_component_range 1-2)" @@ -42,4 +41,10 @@ DEPEND="${RDEPEND} sys-devel/gettext:* virtual/pkgconfig:*" -DOCS="AUTHORS ChangeLog NEWS README" +src_configure() { + # This is needed for this old version, current upstream versions + # finally append it themselves: + # https://github.com/mate-desktop/mate-system-monitor/commit/56594f6f10ba04aa51af976bc8339ea9ae54ea21 + append-cxxflags -std=c++11 + gnome2_src_configure +} |