From owner-svn-ports-all@freebsd.org Mon Oct 3 15:50:31 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 493F3AF3F10; Mon, 3 Oct 2016 15:50:31 +0000 (UTC) (envelope-from riggs@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 mx1.freebsd.org (Postfix) with ESMTPS id F3BC2115; Mon, 3 Oct 2016 15:50:30 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u93FoUGN081761; Mon, 3 Oct 2016 15:50:30 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u93FoUbl081760; Mon, 3 Oct 2016 15:50:30 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201610031550.u93FoUbl081760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 3 Oct 2016 15:50:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423202 - head/net/guacamole-server X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2016 15:50:31 -0000 Author: riggs Date: Mon Oct 3 15:50:29 2016 New Revision: 423202 URL: https://svnweb.freebsd.org/changeset/ports/423202 Log: New OPTIONs, general cleanup Detailed log - New option WEBP - Add WEBP to OPTIONS_DEFAULT - Added ssl to USES - USE_GNOME for dependencies on gnome components - Bump PORTREVISION PR: 213158 Submitted by: Ultima1252@gmail.com (maintainer) Reviewed by: riggs Approved by: Ultima1252@gmail.com (maintainer) Modified: head/net/guacamole-server/Makefile Modified: head/net/guacamole-server/Makefile ============================================================================== --- head/net/guacamole-server/Makefile Mon Oct 3 15:40:32 2016 (r423201) +++ head/net/guacamole-server/Makefile Mon Oct 3 15:50:29 2016 (r423202) @@ -3,7 +3,7 @@ PORTNAME= guacamole-server PORTVERSION= 0.9.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= ultima1252@gmail.com @@ -14,7 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libossp-uuid.so:misc/ossp-uuid \ libpng.so:graphics/png \ - libcairo.so:graphics/cairo \ libjpeg.so:graphics/jpeg-turbo CONFLICTS_BUILD=pulseaudio-*+jack_* ffmpeg-*+jack_* @@ -22,7 +21,8 @@ CONFLICTS_BUILD=pulseaudio-*+jack_* ffmp USE_GITHUB= yes GH_ACCOUNT= glyptodon -USES= autoreconf libtool localbase pkgconfig shebangfix +USES= autoreconf libtool localbase pkgconfig shebangfix ssl +USE_GNOME= cairo SHEBANG_FILES= ${WRKSRC}/src/protocols/rdp/keymaps/generate.pl GNU_CONFIGURE= yes @@ -36,20 +36,23 @@ USE_RC_SUBR= guacd SUB_LIST+= GUACD_USER=${USERS} \ GUACD_GROUP=${GROUPS} -OPTIONS_DEFINE= RDP SSH VNC VORBIS PULSEAUDIO -OPTIONS_DEFAULT= SSH +OPTIONS_DEFINE= RDP SSH VNC VORBIS PULSEAUDIO WEBP +OPTIONS_DEFAULT= RDP SSH VNC VORBIS PULSEAUDIO WEBP OPTIONS_SUB= yes PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_DESC?= VNC audio support (Experimental) RDP_LIB_DEPENDS= libfreerdp.so:net/freerdp RDP_DESC?= RDP Protocal Support -SSH_LIB_DEPENDS= libpango-1.0.so:x11-toolkits/pango \ - libssh2.so:security/libssh2 +SSH_LIB_DEPENDS= libssh2.so:security/libssh2 +SSH_USE= GNOME=pango SSH_DESC?= SSH Support VNC_LIB_DEPENDS= libvncserver.so:net/libvncserver VNC_DESC?= VNC Protocol Support -VORBIS_LIB_DEPENDS= libvorbis.so:audio/libvorbis +VORBIS_LIB_DEPENDS= libvorbis.so:audio/libvorbis \ + libogg.so:audio/libogg VORBIS_DESC?= Ogg Vorbis for compression +WEBP_LIB_DEPENDS= libwebp.so:graphics/webp +WEBP_DESC?= WebP support .include