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 | |
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')
3 files changed, 51 insertions, 1 deletions
diff --git a/app-emulation/vmware-console/ChangeLog b/app-emulation/vmware-console/ChangeLog index fa207b93b806..5443bd97a0de 100644 --- a/app-emulation/vmware-console/ChangeLog +++ b/app-emulation/vmware-console/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/vmware-console # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/ChangeLog,v 1.2 2004/04/19 17:04:15 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/ChangeLog,v 1.3 2004/05/21 19:09:03 wolf31o2 Exp $ + +*vmware-console-3.0.0.7592 (21 May 2004) + + 21 May 2004; Chris Gianelloni <wolf31o2@gentoo.org> + +vmware-console-3.0.0.7592.ebuild: + Adding 3.0.0-7592 version to portage and closing bug #47815. 19 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> metadata.xml: Metadata cleanup. diff --git a/app-emulation/vmware-console/files/digest-vmware-console-3.0.0.7592 b/app-emulation/vmware-console/files/digest-vmware-console-3.0.0.7592 new file mode 100644 index 000000000000..f420ebac316f --- /dev/null +++ b/app-emulation/vmware-console/files/digest-vmware-console-3.0.0.7592 @@ -0,0 +1 @@ +MD5 f2137dc9d0d75f267a82513f19d1542d VMware-console-3.0.0-7592.tar.gz 11360507 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 +} |