svn commit: r423202 - head/net/guacamole-server

Thomas Zander riggs at FreeBSD.org
Mon Oct 3 15:50:31 UTC 2016


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 at gmail.com (maintainer)
  Reviewed by:	riggs
  Approved by:	Ultima1252 at 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 at 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 <bsd.port.pre.mk>
 


More information about the svn-ports-head mailing list