From c4a13fc6797e9e67d5d1736e49a40acc29b07e88 Mon Sep 17 00:00:00 2001 From: geos_one Date: Sat, 30 May 2009 16:11:37 +0000 Subject: [PATCH] correct restrict for workstation git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@1273 6952d904-891a-0410-993b-d76249ca496b --- eclass/vmware-1.eclass | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/eclass/vmware-1.eclass b/eclass/vmware-1.eclass index a3b0e270..9326284d 100644 --- a/eclass/vmware-1.eclass +++ b/eclass/vmware-1.eclass @@ -40,9 +40,9 @@ vmware-1_determine_product() { case "${shortname}" in workstation) FULL_NAME="Workstation" - SRC_URI="mirror://vmware/software/wkst/${VM_SRC}" - RESTRICT="${RESTRICT} fetch mirror" + SRC_URI="mirror://vmware/software/ws/${VM_SRC}" HOMEPAGE="http://www.vmware.com/download/ws/" + RESTRICT="fetch strip" ;; player) FULL_NAME="Player" @@ -377,9 +377,12 @@ vmware-1_pkg_postrm() { vmware-1_pkg_nofetch() { einfo "This files require you to register at www.vmware.com" - einfo "Please download following file:" - einfo " - ${VM_SRC}" - einfo "from ${HOMEPAGE}" - einfo "and place it in ${DISTDIR}" + einfo "Please download following files:" + einfo " - ${VM_SRC} from ${HOMEPAGE}" + for a in ${VM_SRC_EXTRA} + do + einfo " - http://ftp.mars.arge.at/vmware/${P/_p/-}-${a}.tar.bz2" + done + einfo "and place them in ${DISTDIR}" }