diff options
author | knu <knu@FreeBSD.org> | 2000-04-17 04:23:24 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2000-04-17 04:23:24 +0000 |
commit | 306cb27130d6523bd4fce0e7f53e8eac35b3f7d5 (patch) | |
tree | e99a49dcaa509a34f5e1e077b4ce4d760881c393 /emulators/vmware2/files | |
parent | 1f5477ae460b1c2195b1d937c7864c20b3bab1bd (diff) | |
download | FreeBSD-ports-306cb27130d6523bd4fce0e7f53e8eac35b3f7d5.zip FreeBSD-ports-306cb27130d6523bd4fce0e7f53e8eac35b3f7d5.tar.gz |
Install ${PREFIX}/bin/vmware as a shell script which sets some
environment variables properly to run VMware, instead of installing it
as a symbolic link to ${PREFIX}/lib/vmware/bin/vmware.
Suggested by: Frank Mayhar <frank@exit.com>
Add $FreeBSD$ on the top of the Hints.FreeBSD file.
Add a link to the official VMware Product FAQ page.
Diffstat (limited to 'emulators/vmware2/files')
-rw-r--r-- | emulators/vmware2/files/Hints.FreeBSD | 6 | ||||
-rw-r--r-- | emulators/vmware2/files/vmware | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/emulators/vmware2/files/Hints.FreeBSD b/emulators/vmware2/files/Hints.FreeBSD index fabfa02..63617d56 100644 --- a/emulators/vmware2/files/Hints.FreeBSD +++ b/emulators/vmware2/files/Hints.FreeBSD @@ -1,3 +1,5 @@ +$FreeBSD$ + Here is a list of some useful hints on using VMware on FreeBSD. - Full screen text mode does not work. Don't ever do it! @@ -87,6 +89,8 @@ MFS can lead to deadlocks. - Don't miss the VMware FAQ available on the official site. + http://www.vmware.com/products/productfaq.html + -- Akinori -Aki- MUSHA <knu@idaemons.org> -Nick Sayer <nsayer@freebsd.org> +Nick Sayer <nsayer@FreeBSD.org> diff --git a/emulators/vmware2/files/vmware b/emulators/vmware2/files/vmware new file mode 100644 index 0000000..3316e44 --- /dev/null +++ b/emulators/vmware2/files/vmware @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Run vmware +# +# $FreeBSD$ + +LANG=C +PATH=/bin:$PATH + +@@PREFIX@@/lib/vmware/bin/vmware |