diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-21 19:09:03 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-05-21 19:09:03 +0000 |
commit | ee95e965adab26530f9867eb42ccee9378eba827 (patch) | |
tree | 996c94666f3677ebad91f178b1410530d047fd6d /app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild | |
parent | version bump and ebuild cleanup irt #48464 (Manifest recommit) (diff) | |
download | gentoo-2-ee95e965adab26530f9867eb42ccee9378eba827.tar.gz gentoo-2-ee95e965adab26530f9867eb42ccee9378eba827.tar.bz2 gentoo-2-ee95e965adab26530f9867eb42ccee9378eba827.zip |
Adding 3.0.0-7592 version to portage and closing bug #47815.
Diffstat (limited to 'app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild')
-rw-r--r-- | app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild b/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild new file mode 100644 index 000000000000..c7c9e229e675 --- /dev/null +++ b/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild @@ -0,0 +1,43 @@ +# 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-console/vmware-console-3.0.0.7592.ebuild,v 1.1 2004/05/21 19:09:03 wolf31o2 Exp $ + +MY_PN="VMware-console-3.0.0-7592.tar.gz" +S="${WORKDIR}/vmware-console-distrib" + +DESCRIPTION="VMware Remote Console for Linux" +HOMEPAGE="http://www.vmware.com/" +SRC_URI="${MY_PN}" + +LICENSE="vmware-console" +SLOT="0" +KEYWORDS="~x86" +RESTRICT="fetch nostrip" +IUSE="" + +DEPEND="virtual/glibc + virtual/x11" + +pkg_nofetch() { + einfo "Please place ${FN} in ${DISTDIR}" +} + +src_install () { + dodir /opt/vmware/bin + cp -a bin/* ${D}/opt/vmware/bin/ + + dodir /opt/vmware/lib + cp -dr lib/* ${D}/opt/vmware/lib/ + + dodir /opt/vmware/doc + cp -a doc/* ${D}/opt/vmware/doc/ + + dodir /opt/vmware/man/ + cp -a man/* ${D}/opt/vmware/man/ + + dodir /usr/bin + dosym /opt/vmware/bin/vmware-console /usr/bin/vmware-console + + dodir /usr/lib + dosym /opt/vmware/lib /usr/lib/vmware +} |