# Copyright 1999-2005 Gentoo Foundation # 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-r3.ebuild,v 1.10 2005/08/29 14:50:54 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 # which the user must run manually. inherit toolchain-funcs eutils S=${WORKDIR}/vmware-distrib ANY_ANY="vmware-any-any-update93" NP="VMware-workstation-3.2.1-2242" DESCRIPTION="Emulate a complete PC on your PC without the usual performance overhead of most emulators" HOMEPAGE="http://www.vmware.com/products/desktop/ws_features.html" SRC_URI="http://vmware-svca.www.conxion.com/software/${NP}.tar.gz http://www.vmware.com/download1/software/${NP}.tar.gz ftp://download1.vmware.com/pub/software/${NP}.tar.gz http://vmware-chil.www.conxion.com/software/${NP}.tar.gz http://vmware-heva.www.conxion.com/software/${NP}.tar.gz http://vmware.wespe.de/software/${NP}.tar.gz ftp://vmware.wespe.de/pub/software/${NP}.tar.gz http://ftp.cvut.cz/vmware/${ANY_ANY}.tar.gz http://ftp.cvut.cz/vmware/obsolete/${ANY_ANY}.tar.gz http://knihovny.cvut.cz/ftp/pub/vmware/${ANY_ANY}.tar.gz http://knihovny.cvut.cz/ftp/pub/vmware/obselete/${ANY_ANY}.tar.gz mirror://gentoo/vmware.png" LICENSE="vmware" SLOT="0" KEYWORDS="-* x86" IUSE="" RESTRICT="nostrip" DEPEND=">=dev-lang/perl-5 virtual/os-headers" RDEPEND="sys-libs/glibc virtual/x11 media-libs/gdk-pixbuf" dir=/opt/vmware Ddir=${D}/${dir} src_unpack() { check_KV unpack ${NP}.tar.gz if [ "${KV:0:3}" == "2.6" ] || [ "${KV:0:3}" == "2.5" ] ; then unpack ${ANY_ANY}.tar.gz mv -f ${ANY_ANY}/*.tar ${S}/lib/modules/source/ fi } src_compile() { has_version '> ${locations} echo "answer LIBDIR /opt/vmware/lib" >> ${locations} echo "answer MANDIR /opt/vmware/man" >> ${locations} echo "answer DOCDIR /opt/vmware/doc" >> ${locations} echo "answer RUN_CONFIGURATOR no" >> ${locations} echo "answer INITDIR /etc/vmware/init.d" >> ${locations} echo "answer INITSCRIPTSDIR /etc/vmware/init.d" >> ${locations} if [ ${GLIBC_232} -eq 1 ] ; then dolib.so vmware-glibc-2.3.2-compat.so cd ${D}/opt/vmware/lib/bin mv vmware-ui{,.bin} mv vmware-mks{,.bin} echo '#!/bin/sh' > vmware-ui echo 'LD_PRELOAD=vmware-glibc-2.3.2-compat.so exec "$0.bin" "$@"' >> vmware-ui chmod a+x vmware-ui cp vmware-{ui,mks} else return 0 fi } pkg_preinst() { # This must be done after the install to get the mtimes on each file # right. This perl snippet gets the /etc/vmware/locations file code: # perl -e "@a = stat('bin/vmware'); print \$a[9]" # The above perl line and the find line below output the same thing. # I would think the find line is faster to execute. # find /opt/vmware/bin/vmware -printf %T@ #Note: it's a bit weird to use ${D} in a preinst script but it should work #(drobbins, 1 Feb 2002) einfo "Generating /etc/vmware/locations file." d=`echo ${D} | wc -c` for x in `find ${D}/opt/vmware ${D}/etc/vmware` ; do x="`echo ${x} | cut -c ${d}-`" if [ -d ${D}/${x} ] ; then echo "directory ${x}" >> ${D}/etc/vmware/locations else echo -n "file ${x}" >> ${D}/etc/vmware/locations if [ "${x}" == "/etc/vmware/locations" ] ; then echo "" >> ${D}/etc/vmware/locations elif [ "${x}" == "/etc/vmware/not_configured" ] ; then echo "" >> ${D}/etc/vmware/locations else echo -n " " >> ${D}/etc/vmware/locations #perl -e "@a = stat('${D}${x}'); print \$a[9]" >> ${D}/etc/vmware/locations find ${D}${x} -printf %T@ >> ${D}/etc/vmware/locations echo "" >> ${D}/etc/vmware/locations fi fi done } pkg_postinst() { # This is to fix the problem where the not_configured file doesn't get # removed when the configuration is run. This doesn't remove the file # It just tells the vmware-config.pl script it can delete it. einfo "Updating /etc/vmware/locations" for x in /etc/vmware/._cfg????_locations ; do if [ -f $x ] ; then cat $x >> /etc/vmware/locations rm $x fi done einfo einfo "You need to run /opt/vmware/bin/vmware-config.pl to complete the install." einfo einfo "For VMware Add-Ons just visit" einfo "http://www.vmware.com/download/downloadaddons.html" einfo einfo "Also note that when you reboot you should run:" einfo "/etc/init.d/vmware start" einfo "before trying to run vmware. Or you could just add" einfo "it to the default run level:" einfo "rc-update add vmware default" } pkg_postrm() { einfo einfo "To remove all traces of vmware you will need to remove the files" einfo "in /etc/vmware/, /etc/init.d/vmware, /lib/modules/*/misc/vm*.o," einfo "and .vmware/ in each users home directory. Don't forget to rmmod the" einfo "vm* modules, either." einfo }