summaryrefslogtreecommitdiff
path: root/emulators/vmware-guestd3
diff options
context:
space:
mode:
authorMakoto Matsushita <matusita@FreeBSD.org>2001-11-11 06:59:28 +0000
committerMakoto Matsushita <matusita@FreeBSD.org>2001-11-11 06:59:28 +0000
commite122c60d144cfc2ab841639ae72790a7e6261772 (patch)
tree24517684f3cca52b13e16af3ef14bc12625d525b /emulators/vmware-guestd3
parentUpdate to 1.4 Build 138 (diff)
Add vmware-guestd, a daemon for VMware 3.x FreeBSD guest OS.
Notes
Notes: svn path=/head/; revision=49935
Diffstat (limited to 'emulators/vmware-guestd3')
-rw-r--r--emulators/vmware-guestd3/Makefile81
-rw-r--r--emulators/vmware-guestd3/files/vmware-guestd.sh28
-rw-r--r--emulators/vmware-guestd3/pkg-comment1
-rw-r--r--emulators/vmware-guestd3/pkg-descr8
-rw-r--r--emulators/vmware-guestd3/pkg-plist3
5 files changed, 121 insertions, 0 deletions
diff --git a/emulators/vmware-guestd3/Makefile b/emulators/vmware-guestd3/Makefile
new file mode 100644
index 000000000000..063ac0cbd3e0
--- /dev/null
+++ b/emulators/vmware-guestd3/Makefile
@@ -0,0 +1,81 @@
+# New ports collection makefile for: VMware tools for FreeBSD
+# Date created: 10 Aug 2000
+# Whom: matusita@jp.FreeBSD.org
+#
+# $FreeBSD$
+#
+
+PORTNAME= vmware-guestd
+PORTVERSION= ${VMWARE_VER}.${BUILD_VER}
+CATEGORIES= emulators
+MASTER_SITES= # none
+DISTNAME= vmware-freebsd-tools
+
+MAINTAINER= matusita@jp.FreeBSD.org
+
+LIB_DEPENDS= c.3:${PORTSDIR}/misc/compat3x
+
+DISTDIR= ${MOUNT_PT}
+IGNOREFILES= ${DISTFILES}
+WRKSRC= ${WRKDIR}/vmware-freebsd-tools
+
+ONLY_FOR_ARCHS= i386
+NO_BUILD= yes
+
+RESTRICTED= "Not sure if we can redistribute this."
+
+VMWARE_VER= 3.0.0
+BUILD_VER= 1455
+
+MOUNT_DEV?= /dev/acd0c
+MOUNT_PT?= /mnt
+MOUNT= /sbin/mount
+UMOUNT= /sbin/umount
+
+do-fetch:
+ @${DO_NADA}
+fetch-list:
+ @${DO_NADA}
+
+pre-extract:
+ @${ECHO} ""
+ @${ECHO} "========================================================================"
+ @${ECHO} "Choose \"Settings\" -> \"VMware Tools Install...\" from the Wrokstation menu"
+ @${ECHO} "to connect the VM's CD-ROM drive temporarily to installation CD image."
+ @${ECHO} "========================================================================"
+ @${ECHO} ""
+.if !defined(BATCH)
+ @${ECHO} "This port mounts ${MOUNT_DEV} to ${MOUNT_PT}."
+ @${ECHO} ""
+ @${ECHO} -n "Are you ready? [Y/n]: "
+ @(read line; \
+ case "$${line}" in \
+ [Nn]*) \
+ ${FALSE} ;; \
+ *) \
+ ${TRUE} ;; \
+ esac)
+.endif
+ ${MKDIR} ${MOUNT_PT}
+ -${UMOUNT} ${MOUNT_PT} 2>&1 >/dev/null
+ -${UMOUNT} ${MOUNT_DEV} 2>&1 >/dev/null
+ ${MOUNT} -t cd9660 ${MOUNT_DEV} ${MOUNT_PT}
+
+post-extract:
+ ${UMOUNT} ${MOUNT_PT}
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/vmware-guestd ${PREFIX}/sbin
+ ${INSTALL_PROGRAM} ${WRKSRC}/checkvm ${PREFIX}/sbin
+ @if [ ! -f ${PREFIX}/etc/rc.d/vmware-guestd.sh ]; then \
+ ${ECHO} "Installing ${PREFIX}/etc/rc.d/vmware-guestd.sh startup file."; \
+ ${INSTALL_SCRIPT} -m 755 ${FILESDIR}/vmware-guestd.sh ${PREFIX}/etc/rc.d; \
+ fi
+ @${ECHO} ""
+ @${ECHO} "========================================================================"
+ @${ECHO} "Don't forget to choose \"Settings\" -> \"Cancel VMware Tools Install\","
+ @${ECHO} "to restore your CD-ROM setup.
+ @${ECHO} "========================================================================"
+ @${ECHO} ""
+
+.include <bsd.port.mk>
diff --git a/emulators/vmware-guestd3/files/vmware-guestd.sh b/emulators/vmware-guestd3/files/vmware-guestd.sh
new file mode 100644
index 000000000000..c8759cb4ace3
--- /dev/null
+++ b/emulators/vmware-guestd3/files/vmware-guestd.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
+ echo "$0: Cannot determine the PREFIX" >&2
+ exit 1
+fi
+
+case "$1" in
+start)
+ exec 2>/dev/null
+ ulimit -c 0
+ if ${PREFIX}/sbin/checkvm >/dev/null; then
+ ${PREFIX}/sbin/vmware-guestd & && echo -n ' vmware-guestd'
+ fi
+ ;;
+stop)
+ exec 2>/dev/null
+ ulimit -c 0
+ if ${PREFIX}/sbin/checkvm >/dev/null; then
+ killall vmware-guestd && echo -n ' vmware-guestd'
+ fi
+ ;;
+*)
+ echo "Usage: `basename $0` {start|stop}" >&2
+ ;;
+esac
+
+exit 0
diff --git a/emulators/vmware-guestd3/pkg-comment b/emulators/vmware-guestd3/pkg-comment
new file mode 100644
index 000000000000..27686c35a6d6
--- /dev/null
+++ b/emulators/vmware-guestd3/pkg-comment
@@ -0,0 +1 @@
+VMware time synchronization daemon for FreeBSD guest OS
diff --git a/emulators/vmware-guestd3/pkg-descr b/emulators/vmware-guestd3/pkg-descr
new file mode 100644
index 000000000000..8a599279a757
--- /dev/null
+++ b/emulators/vmware-guestd3/pkg-descr
@@ -0,0 +1,8 @@
+vmware-guestd daemon is for time synchronization with host OS and others.
+Beware, this port is for FreeBSD _guest_ OS. You don't need to install
+this ports to FreeBSD _host_ OS.
+
+If you want to run FreeBSD as a VMware guest OS, install this port
+would help you. If you want to run X, install vmware-tools too.
+
+WWW: http://www.vmware.com/products/desktop/ws_features.html
diff --git a/emulators/vmware-guestd3/pkg-plist b/emulators/vmware-guestd3/pkg-plist
new file mode 100644
index 000000000000..0748d2977ee2
--- /dev/null
+++ b/emulators/vmware-guestd3/pkg-plist
@@ -0,0 +1,3 @@
+sbin/checkvm
+sbin/vmware-guestd
+etc/rc.d/vmware-guestd.sh