diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-02-25 01:36:22 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-02-25 01:36:22 +0000 |
commit | 0e1e7c9ae7bdc4e727ca1a02dcfeaa86f65f5a13 (patch) | |
tree | d77c6c6bd962f14186498c91b58823b31b7da5fd /app-emulation/vmware-workstation | |
parent | Won't work on sparc, no matter how much you prod it and say pretty please. (M... (diff) | |
download | gentoo-2-0e1e7c9ae7bdc4e727ca1a02dcfeaa86f65f5a13.tar.gz gentoo-2-0e1e7c9ae7bdc4e727ca1a02dcfeaa86f65f5a13.tar.bz2 gentoo-2-0e1e7c9ae7bdc4e727ca1a02dcfeaa86f65f5a13.zip |
Moved has_version to src_compile.
Diffstat (limited to 'app-emulation/vmware-workstation')
-rw-r--r-- | app-emulation/vmware-workstation/ChangeLog | 6 | ||||
-rw-r--r-- | app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/app-emulation/vmware-workstation/ChangeLog b/app-emulation/vmware-workstation/ChangeLog index f30cd54d8fae..ef7e136c011a 100644 --- a/app-emulation/vmware-workstation/ChangeLog +++ b/app-emulation/vmware-workstation/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emulation/vmware-workstation # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/ChangeLog,v 1.33 2004/02/21 12:36:23 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/ChangeLog,v 1.34 2004/02/25 01:36:22 wolf31o2 Exp $ + + 24 Feb 2004; Chris Gianelloni <wolf31o2@gentoo.org> + vmware-workstation-3.2.1.2242-r1.ebuild: + Moved has_version to src_compile. 21 Feb 2004; Chris Gianelloni <wolf31o2@gentoo.org> vmware-workstation-4.0.2.5592-r1.ebuild: diff --git a/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild b/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild index 5c23b2857763..4d5ff97de921 100644 --- a/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild +++ b/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-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/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild,v 1.6 2004/02/10 22:42:03 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/vmware-workstation-3.2.1.2242-r1.ebuild,v 1.7 2004/02/25 01:36:22 wolf31o2 Exp $ # Unlike many other binary packages the user doesn't need to agree to a licence # to download VM Ware. The agreeing to a licence is part of the configure step @@ -35,10 +35,6 @@ DEPEND="virtual/glibc >=dev-lang/perl-5 >=dev-lang/tcl-8.3.3" -has_version \<sys-libs/glibc-2.3.2 \ - && GLIBC_232=0 \ - || GLIBC_232=1 - src_unpack() { check_KV unpack ${NP}.tar.gz @@ -49,6 +45,11 @@ src_unpack() { } src_compile() { + +has_version \<sys-libs/glibc-2.3.2 \ + && GLIBC_232=0 \ + || GLIBC_232=1 + if [ ${GLIBC_232} -eq 1 ] ; then $(gcc-getCC) -W -Wall -shared -o vmware-glibc-2.3.2-compat.so \ ${FILESDIR}/${PV}/vmware-glibc-2.3.2-compat.c \ |