diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-10-03 13:10:57 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-10-03 13:10:57 +0000 |
commit | dcdd2fd58e9da2b997d846e366a7ddf52d7f8d34 (patch) | |
tree | fb888f3d6d71c692afd3339f6b6c90dad7555bab | |
parent | remove unused (diff) | |
download | historical-dcdd2fd58e9da2b997d846e366a7ddf52d7f8d34.tar.gz historical-dcdd2fd58e9da2b997d846e366a7ddf52d7f8d34.tar.bz2 historical-dcdd2fd58e9da2b997d846e366a7ddf52d7f8d34.zip |
Added libcrypto code to vmware.eclass for bug #148682.
-rw-r--r-- | eclass/vmware.eclass | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/eclass/vmware.eclass b/eclass/vmware.eclass index 4ef685409787..46b380e87f3a 100644 --- a/eclass/vmware.eclass +++ b/eclass/vmware.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.11 2006/10/02 22:08:21 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.12 2006/10/03 13:10:57 wolf31o2 Exp $ # This eclass is for all vmware-* ebuilds in the tree and should contain all # of the common components across the multiple packages. @@ -153,6 +153,7 @@ vmware_src_unpack() { fi # Unpack our new libs. unpack vmware-libssl.so.0.9.7l.tar.bz2 + unpack vmware-libcrypto.so.0.9.7l.tar.bz2 fi } @@ -198,6 +199,13 @@ vmware_src_install() { # Now, we move in our own cp -pPR "${S}"/libssl.so.0.9.7 "${S}"/lib/lib fi + # We remove the shipped libcrypto for bug #148682 + if [ -d "${S}"/lib/lib/libcrypto.so.0.9.7 ] + then + rm -rf "${S}"/lib/lib/libcrypto.so.0.9.7 + # Now, we move in our own + cp -pPR "${S}"/libcrypto.so.0.9.7 "${S}"/lib/lib + fi # We loop through our directories and copy everything to our system. for x in bin lib sbin |