diff options
author | Travis Tilley <lv@gentoo.org> | 2004-06-11 00:47:48 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-06-11 00:47:48 +0000 |
commit | 09c671cc457cc23eb754c04c82bb7b926c21d77a (patch) | |
tree | 9a905ad2e0645eb7558f449ac36d4dd751c16351 /sys-libs | |
parent | Added libtermcap-compat as a DEPEND. Closes bug #53573 by Martin Hajduch <ma... (diff) | |
download | gentoo-2-09c671cc457cc23eb754c04c82bb7b926c21d77a.tar.gz gentoo-2-09c671cc457cc23eb754c04c82bb7b926c21d77a.tar.bz2 gentoo-2-09c671cc457cc23eb754c04c82bb7b926c21d77a.zip |
fixed the bug where some apps would fail to link if libstdc++-v3 is installed. stable on amd64
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libstdc++-v3/ChangeLog | 9 | ||||
-rw-r--r-- | sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild | 7 |
2 files changed, 13 insertions, 3 deletions
diff --git a/sys-libs/libstdc++-v3/ChangeLog b/sys-libs/libstdc++-v3/ChangeLog index 1516c44b8b7b..f09ddbf36eb7 100644 --- a/sys-libs/libstdc++-v3/ChangeLog +++ b/sys-libs/libstdc++-v3/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-libs/libstdc++-v3 # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.5 2004/06/01 00:11:51 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/ChangeLog,v 1.6 2004/06/11 00:47:48 lv Exp $ + + 10 Jun 2004; Travis Tilley <lv@gentoo.org> libstdc++-v3-3.3.3-r1.ebuild: + stable on amd64 + + 10 Jun 2004; Travis Tilley <lv@gentoo.org> libstdc++-v3-3.3.3-r1.ebuild: + fixed the bug where some apps would fail to link if libstdc++-v3 is installed. + I didnt have previous ebuilds remove the .so symlink... this one does. 31 May 2004; Joshua Kinard <kumba@gentoo.org> libstdc++-v3-3.3.3-r1.ebuild: Added ~mips to KEYWORDS. diff --git a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild index 40cae5128659..bb65de4f7fc1 100644 --- a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild +++ b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild,v 1.4 2004/06/01 00:11:51 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.3-r1.ebuild,v 1.5 2004/06/11 00:47:48 lv Exp $ IUSE="nls" @@ -66,7 +66,7 @@ HOMEPAGE="http://gcc.gnu.org/libstdc++/" LICENSE="GPL-2 LGPL-2.1" -KEYWORDS="-* ~amd64 ~mips" +KEYWORDS="-* amd64 ~mips" if [ "${CHOST}" == "${CCHOST}" ] then @@ -212,6 +212,9 @@ src_install() { rm -rf ${D}/${LOC}/share # or anything other than the .so files, really. find ${D} | grep -e c++.la$ -e c++.a$ | xargs rm -f + # we dont even want the un-versioned .so symlink, as it confuses some + # apps and also causes others to link against the old libstdc++... + rm ${D}/${LOC}/lib/libstdc++-v3/libstdc++.so mkdir -p ${D}/etc/env.d/ echo "LDPATH=\"${LOC}/lib/libstdc++-v3/\"" >> ${D}/etc/env.d/99libstdc++ |