diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2009-02-04 11:56:39 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2009-02-04 11:56:39 +0000 |
commit | 06222f997b8363c4af97fce8f0e7063d99d7ea46 (patch) | |
tree | 1eec3493ae8b8bc7f88c7441a3f71ae6104142fd /games-board | |
parent | Add ~mips keywords to qt-4.4.2 (diff) | |
download | gentoo-2-06222f997b8363c4af97fce8f0e7063d99d7ea46.tar.gz gentoo-2-06222f997b8363c4af97fce8f0e7063d99d7ea46.tar.bz2 gentoo-2-06222f997b8363c4af97fce8f0e7063d99d7ea46.zip |
Fix --as-needed bug #247340
(Portage version: 2.1.6.4/cvs/Linux 2.6.27-gentoo-r8 x86_64)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/gnubg/ChangeLog | 6 | ||||
-rw-r--r-- | games-board/gnubg/files/gnubg-0.14.3-as-needed.patch | 11 |
2 files changed, 16 insertions, 1 deletions
diff --git a/games-board/gnubg/ChangeLog b/games-board/gnubg/ChangeLog index ed0e6a32aeee..251934a54acf 100644 --- a/games-board/gnubg/ChangeLog +++ b/games-board/gnubg/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-board/gnubg # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/gnubg/ChangeLog,v 1.39 2009/02/04 09:54:57 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/gnubg/ChangeLog,v 1.40 2009/02/04 11:56:38 tupone Exp $ + + 04 Feb 2009; Alfredo Tupone <tupone@gentoo.org> + files/gnubg-0.14.3-as-needed.patch: + Fix --as-needed bug #247340 by flameeyes@gentoo.org 04 Feb 2009; Alfredo Tupone <tupone@gentoo.org> gnubg-0.14.3-r1.ebuild: Does not work with dev-scheme/guile-1.8 diff --git a/games-board/gnubg/files/gnubg-0.14.3-as-needed.patch b/games-board/gnubg/files/gnubg-0.14.3-as-needed.patch index ad2855603876..ff1be799a4c9 100644 --- a/games-board/gnubg/files/gnubg-0.14.3-as-needed.patch +++ b/games-board/gnubg/files/gnubg-0.14.3-as-needed.patch @@ -9,3 +9,14 @@ @USE_GTK_FALSE@gnubg_LDADD = $(COMMON_LIBS) $(SOUND_LIBS) $(PNG_LIBS) @THREAD_LIBS@ +--- gnubg-0.14.3/configure +--- gnubg-0.14.3/configure +@@ -12216,7 +12216,7 @@ + + echo "$as_me:$LINENO: checking for python libraries" >&5 + echo $ECHO_N "checking for python libraries... $ECHO_C" >&6 +- PYTHON_LIBS=`$PYTHON -c "import distutils.sysconfig; print distutils.sysconfig.get_config_var('LIBS'), distutils.sysconfig.get_config_var('LIBPL')+'/'+distutils.sysconfig.get_config_var('LIBRARY')"` ++ PYTHON_LIBS=`$PYTHON -c "import distutils.sysconfig; print distutils.sysconfig.get_config_var('LIBPL')+'/'+distutils.sysconfig.get_config_var('LIBRARY'), distutils.sysconfig.get_config_var('LIBS')"` + echo "$as_me:$LINENO: result: $PYTHON_LIBS" >&5 + echo "${ECHO_T}$PYTHON_LIBS" >&6 + |