f8255869a7
import vmware-vncpasswd (PERMIT_*=no due to missing license). vmware-vncpasswd is a simple tool to generate the obfuscated password line for VMware's in-built VNC server which can be enabled by setting the following parameters in the .vmx file. RemoteDisplay.vnc.enabled = "true" RemoteDisplay.vnc.port = "5902" RemoteDisplay.vnc.key = "<obfuscated password>"
29 lines
677 B
Makefile
29 lines
677 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/08/21 11:17:00 sthen Exp $
|
|
|
|
COMMENT= obfuscate passwords for VMware RemoteDisplay.vnc.key
|
|
|
|
DISTNAME= vncpassword
|
|
PKGNAME= vmware-vncpasswd-0.0
|
|
|
|
CATEGORIES= misc
|
|
|
|
HOMEPAGE= http://communities.vmware.com/docs/DOC-7535
|
|
|
|
# no license for vmware-vncpasswd.c; other files are ISC/PD
|
|
PERMIT_PACKAGE_CDROM= missing license
|
|
PERMIT_PACKAGE_FTP= missing license
|
|
PERMIT_DISTFILES_CDROM= missing license
|
|
PERMIT_DISTFILES_FTP= missing license
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= http://communities.vmware.com/servlet/JiveServlet/download/7535-4-13355/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-configure:
|
|
cp ${FILESDIR}/Makefile ${WRKSRC}/
|
|
|
|
.include <bsd.port.mk>
|