dev-cpp/gstreamermm: Fix building with latest glibmm/libsigc++ (#568254)

Package-Manager: portage-2.2.26
This commit is contained in:
Pacho Ramos
2015-12-15 20:53:07 +01:00
parent f4e1396ee7
commit f5aafc4338
2 changed files with 9 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
EAPI="5"
GNOME2_LA_PUNT="yes"
inherit gnome2
inherit flag-o-matic gnome2
DESCRIPTION="C++ interface for GStreamer"
HOMEPAGE="http://gstreamer.freedesktop.org/bindings/cplusplus.html"
@@ -30,6 +30,10 @@ DEPEND="${RDEPEND}
media-plugins/gst-plugins-x:0.10 )
"
DOCS="AUTHORS ChangeLog NEWS README"
# Installs reference docs into /usr/share/doc/gstreamermm-0.10/
# but that's okay, because the rest of dev-cpp/*mm stuff does the same
src_prepare() {
gnome2_src_prepare
append-cxxflags -std=c++11 #568254
}

View File

@@ -3,8 +3,7 @@
# $Id$
EAPI="5"
inherit gnome2
inherit flag-o-matic gnome2
DESCRIPTION="C++ interface for GStreamer"
HOMEPAGE="http://gstreamer.freedesktop.org/bindings/cplusplus.html"
@@ -47,6 +46,7 @@ src_prepare() {
fi
gnome2_src_prepare
append-cxxflags -std=c++11 #568254 , fixed in master
}
src_configure() {
@@ -55,5 +55,5 @@ src_configure() {
src_test() {
# running tests in parallel fails
emake -j1 check || die
emake -j1 check
}