mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
06d92dd8f8
On this page, you'll find command line programs which can replace and/or supplement the VMware's official VMwareTools. These programs use VMware's undocumented and therefore not officially supported feature to communicate with VMware (see VMware Backdoor I/O Port). Information on these functions have come entirely from my personal research and quite a few contributions by fellow VMware users. These programs are intended partly as illustrative examples of how to use the VMware backdoor function and I have cut many corners writing them. * vmw: generic backdoor access program * vmshrink: virtual disk shrink program * vmftp: host-guest file transfer program WWW: http://chitchat.at.infoseek.co.jp/vmware/vmtools.html
41 lines
859 B
Makefile
41 lines
859 B
Makefile
# New ports collection makefile for: vmw
|
|
# Date created: 18 Nov 2006
|
|
# Whom: dirk.meyer@dinoex.sub.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vmw
|
|
PORTVERSION= 060510
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://chitchat.at.infoseek.co.jp/vmware/
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= VM Back Command Line Tools for VMware
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}/src
|
|
USE_ICONV= yes
|
|
|
|
SBINS= vmw vmshrink vmftp
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= README-eucj.TXT README-sjis.TXT README.TXT
|
|
.for i in ${SBINS}
|
|
PORTDOCS+= ${i}-eucj.txt ${i}-sjis.txt ${i}.txt
|
|
.endfor
|
|
.endif
|
|
.for i in ${SBINS}
|
|
PLIST_FILES+= sbin/${i}
|
|
.endfor
|
|
|
|
do-install:
|
|
.for i in ${SBINS}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/sbin/
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
@cd ${WRKSRC}/.. && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|