summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-03-05 16:35:36 +0000
committerPacho Ramos <pacho@gentoo.org>2010-03-05 16:35:36 +0000
commit3e4c760d0299d109934f437da9c1aebfc164df89 (patch)
treed10aaa9adf46b7e9ff985197895531cb3fc42810
parentMove mcvs to dev-vcs, bug 56967. (diff)
downloadgentoo-2-3e4c760d0299d109934f437da9c1aebfc164df89.tar.gz
gentoo-2-3e4c760d0299d109934f437da9c1aebfc164df89.tar.bz2
gentoo-2-3e4c760d0299d109934f437da9c1aebfc164df89.zip
Workaround bug 295726 until upstream fixes it
(Portage version: 2.1.7.17/cvs/Linux x86_64)
-rw-r--r--dev-cpp/glibmm/ChangeLog8
-rw-r--r--dev-cpp/glibmm/glibmm-2.22.1.ebuild10
2 files changed, 13 insertions, 5 deletions
diff --git a/dev-cpp/glibmm/ChangeLog b/dev-cpp/glibmm/ChangeLog
index 74b0b00de0cf..62908093bd33 100644
--- a/dev-cpp/glibmm/ChangeLog
+++ b/dev-cpp/glibmm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-cpp/glibmm
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glibmm/ChangeLog,v 1.137 2009/10/29 22:47:23 eva Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glibmm/ChangeLog,v 1.138 2010/03/05 16:35:36 pacho Exp $
+
+ 05 Mar 2010; Pacho Ramos <pacho@gentoo.org> glibmm-2.22.1.ebuild:
+ Workaround bug 295726 until upstream fixes it. Thanks a lot to Samuli
+ Suominen for his investigation and work on this.
*glibmm-2.22.1 (29 Oct 2009)
diff --git a/dev-cpp/glibmm/glibmm-2.22.1.ebuild b/dev-cpp/glibmm/glibmm-2.22.1.ebuild
index 87e68ab3bba2..059ad1db3dbf 100644
--- a/dev-cpp/glibmm/glibmm-2.22.1.ebuild
+++ b/dev-cpp/glibmm/glibmm-2.22.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glibmm/glibmm-2.22.1.ebuild,v 1.1 2009/10/29 22:47:23 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glibmm/glibmm-2.22.1.ebuild,v 1.2 2010/03/05 16:35:36 pacho Exp $
inherit gnome2
@@ -40,7 +40,11 @@ src_test() {
cd "${S}/tests/"
emake check || die "emake check failed"
- for i in */test; do
+ # Workaround bug 295726 until upstream fixes it
+ # for i in */test; do
+ export \
+ LD_LIBRARY_PATH="${S}/glib/glibmm/.libs:${S}/gio/giomm/.libs:${LD_LIBRARY_PATH}"
+ for i in */.libs/test; do
${i} || die "Running tests failed at ${i}"
done
}