From owner-svn-ports-head@freebsd.org Wed May 22 20:51:59 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39FE215B6F24; Wed, 22 May 2019 20:51:59 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDEBD6859B; Wed, 22 May 2019 20:51:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8EBBB22D2C; Wed, 22 May 2019 20:51:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x4MKpweA078496; Wed, 22 May 2019 20:51:58 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x4MKpw0O078494; Wed, 22 May 2019 20:51:58 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201905222051.x4MKpw0O078494@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 22 May 2019 20:51:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r502287 - head/net/rdesktop X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net/rdesktop X-SVN-Commit-Revision: 502287 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CDEBD6859B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 May 2019 20:51:59 -0000 Author: swills Date: Wed May 22 20:51:57 2019 New Revision: 502287 URL: https://svnweb.freebsd.org/changeset/ports/502287 Log: net/rdesktop: update to 1.8.6 While here, improve formatting. PR: 238048 Submitted by: Greg Fitzgerald Modified: head/net/rdesktop/Makefile (contents, props changed) head/net/rdesktop/distinfo (contents, props changed) Modified: head/net/rdesktop/Makefile ============================================================================== --- head/net/rdesktop/Makefile Wed May 22 20:51:41 2019 (r502286) +++ head/net/rdesktop/Makefile Wed May 22 20:51:57 2019 (r502287) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= rdesktop -PORTVERSION= 1.8.5 -DISTVERSIONPREFIX=v +PORTVERSION= 1.8.6 +DISTVERSIONPREFIX= v CATEGORIES= net comms ipv6 MAINTAINER= gregf@hugops.pw @@ -15,9 +15,10 @@ USES= autoreconf gmake iconv pkgconfig ssl USE_XORG= x11 xrandr USE_GITHUB= yes -CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG} --disable-credssp -GNU_CONFIGURE= yes -DOCS= doc/AUTHORS doc/TODO doc/*.txt +CONFIGURE_ARGS+= ${ICONV_CONFIGURE_ARG} \ + --disable-credssp +GNU_CONFIGURE= yes +DOCS= doc/*.txt doc/AUTHORS doc/TODO OPTIONS_DEFINE= AO DEBUG DOCS IPV6 SAMPLERATE SMARTCARD SMARTCARD_DESC= Enable SmartCard login via PCSC-lite @@ -25,7 +26,7 @@ SMARTCARD_DESC= Enable SmartCard login via PCSC-lite .include .if ${PORT_OPTIONS:MAO} -LIB_DEPENDS+= libao.so:audio/libao +LIB_DEPENDS+= libao.so:audio/libao CONFIGURE_ARGS+= --with-sound=libao .else CONFIGURE_ARGS+= --with-sound=oss @@ -46,13 +47,13 @@ CONFIGURE_ARGS+= --disable-smartcard .endif .if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= --with-debug\ - --with-debug-kbd\ - --with-debug-rdp5\ - --with-debug-clipboard\ - --with-debug-sound\ - --with-debug-channel\ - --with-debug-seamless +CONFIGURE_ARGS+= --with-debug \ + --with-debug-channel \ + --with-debug-clipboard \ + --with-debug-kbd \ + --with-debug-rdp5 \ + --with-debug-seamless \ + --with-debug-sound .if ${PORT_OPTIONS:MSMARTCARD} CONFIGURE_ARGS+= --with-debug-smartcard .endif Modified: head/net/rdesktop/distinfo ============================================================================== --- head/net/rdesktop/distinfo Wed May 22 20:51:41 2019 (r502286) +++ head/net/rdesktop/distinfo Wed May 22 20:51:57 2019 (r502287) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557391651 -SHA256 (rdesktop-rdesktop-v1.8.5_GH0.tar.gz) = 94dab068070802d872e38717fad451e5db2bd6a49428bbb1ccf6bf47e2ffaca0 -SIZE (rdesktop-rdesktop-v1.8.5_GH0.tar.gz) = 393680 +TIMESTAMP = 1558529787 +SHA256 (rdesktop-rdesktop-v1.8.6_GH0.tar.gz) = ffb9f8e2f0b7a06e383e550698bdc9734ae33eb3ec971b0a094078434a4bba6d +SIZE (rdesktop-rdesktop-v1.8.6_GH0.tar.gz) = 393706