mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
c945d33d06
to properly build Cyrillic filenames support. Submitted by: Victor Sudakov <sudakov@sibptus.tomsk.ru>
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# New ports collection makefile for: rdesktop
|
|
# Date created: 13 December 2000
|
|
# Whom: mwest@uct.ac.za
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rdesktop
|
|
PORTVERSION= 1.6.0
|
|
PORTREVISION?= 0
|
|
CATEGORIES= net comms ipv6
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
COMMENT= RDP client for Windows NT/2000/2003 Terminal Server
|
|
|
|
USE_XORG= x11
|
|
USE_GMAKE= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
DOCS= doc/AUTHORS doc/TODO doc/*.txt
|
|
MAN1= rdesktop.1
|
|
|
|
.if !defined(WITHOUT_RDESKTOP_IPV6) && !defined(WITHOUT_IPV6)
|
|
CONFIGURE_ARGS+= --with-ipv6
|
|
.endif
|
|
|
|
.if defined(WITH_ICONV)
|
|
USE_ICONV= yes
|
|
CONFIGURE_ARGS+= --with-libiconv-prefix=${LOCALBASE}
|
|
.endif
|
|
|
|
.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
|
|
|
|
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>
|