mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
fa97831477
* SeamlessRDP - seamless windows support * Keyboard handling improvements and fixes * Support for clipboard INCR protocol * Session Directory support * Support for long filenames on redirected drives * Clipboard unicode support * Fix display issues with exotic color depths (30bpp, 32bpp, etc) * Large file support * The default color depth is now the depth of the root window And wait for it... wait... wait... * Basic support for Windows Vista Beta 2 !
36 lines
868 B
Makefile
36 lines
868 B
Makefile
# New ports collection makefile for: rdesktop
|
|
# Date created: 13 December 2000
|
|
# Whom: mwest@uct.ac.za
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rdesktop
|
|
PORTVERSION= 1.5.0
|
|
PORTREVISION?= 0
|
|
CATEGORIES= net comms
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
COMMENT= RDP client for Windows NT/2000/2003 Terminal Server
|
|
|
|
USE_XLIB= yes
|
|
USE_GMAKE= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
DOCS= doc/AUTHORS doc/TODO doc/*.txt
|
|
MAN1= rdesktop.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rdesktop ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/rdesktop.1 ${MAN1PREFIX}/man/man1
|
|
@${MKDIR} ${DATADIR}/keymaps
|
|
${INSTALL_DATA} ${WRKSRC}/keymaps/* ${DATADIR}/keymaps
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|