2001-06-05 04:07:54 +02:00
|
|
|
# New ports collection makefile for: rdesktop
|
|
|
|
# Date created: 13 December 2000
|
|
|
|
# Whom: mwest@uct.ac.za
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= rdesktop
|
2008-05-21 06:52:03 +02:00
|
|
|
PORTVERSION= 1.6.0
|
2010-09-09 22:00:00 +02:00
|
|
|
PORTREVISION?= 1
|
2008-05-21 06:52:03 +02:00
|
|
|
CATEGORIES= net comms ipv6
|
2009-08-22 02:32:25 +02:00
|
|
|
MASTER_SITES= SF
|
2001-06-05 04:07:54 +02:00
|
|
|
|
2005-05-09 01:43:24 +02:00
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
2003-10-30 12:54:37 +01:00
|
|
|
COMMENT= RDP client for Windows NT/2000/2003 Terminal Server
|
2001-06-05 04:07:54 +02:00
|
|
|
|
2007-09-23 13:24:31 +02:00
|
|
|
USE_XORG= x11
|
2003-01-06 20:48:31 +01:00
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_OPENSSL= yes
|
2005-10-24 05:39:12 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2003-10-30 12:54:37 +01:00
|
|
|
DOCS= doc/AUTHORS doc/TODO doc/*.txt
|
2003-10-31 23:47:24 +01:00
|
|
|
MAN1= rdesktop.1
|
2003-01-06 20:48:31 +01:00
|
|
|
|
2008-05-21 08:44:36 +02:00
|
|
|
.if !defined(WITHOUT_RDESKTOP_IPV6) && !defined(WITHOUT_IPV6)
|
2008-05-21 06:52:03 +02:00
|
|
|
CONFIGURE_ARGS+= --with-ipv6
|
|
|
|
.endif
|
|
|
|
|
2008-12-30 02:44:22 +01:00
|
|
|
.if defined(WITH_ICONV)
|
|
|
|
USE_ICONV= yes
|
|
|
|
CONFIGURE_ARGS+= --with-libiconv-prefix=${LOCALBASE}
|
|
|
|
.endif
|
|
|
|
|
2008-05-21 08:44:36 +02:00
|
|
|
.if defined(WITH_RDESKTOP_DEBUG)
|
|
|
|
CONFIGURE_ARGS+= --with-debug\
|
|
|
|
--with-debug-kbd\
|
|
|
|
--with-debug-rdp5\
|
|
|
|
--with-debug-clipboard\
|
|
|
|
--with-debug-sound\
|
|
|
|
--with-debug-channel\
|
|
|
|
--with-debug-seamless
|
|
|
|
|
|
|
|
post-configure:
|
|
|
|
${ECHO} "#define WITH_DEBUG_SERIAL 1" >> ${WRKSRC}/rdesktop.h
|
|
|
|
.endif
|
|
|
|
|
2003-02-02 11:41:09 +01:00
|
|
|
do-install:
|
2003-10-30 12:54:37 +01:00
|
|
|
${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
|
2001-06-05 04:07:54 +02:00
|
|
|
|
2003-02-02 11:41:09 +01:00
|
|
|
.include <bsd.port.mk>
|