pkgsrc-wip/vino/options.mk
coypu 31d7a59be4 import vino-3.18.1 as wip/vino
VNC (Virtual Network Computing) software makes it possible to view and
fully-interact with one computer from any other computer or mobile device
anywhere on the Internet.  VNC software is cross-platform, allowing remote
control between different types of computer.

VNC has a wide range of applications including system administration, IT
support and helpdesks.  It can also be used to support the mobile user, both
for hot desking within the enterprise and also to provide remote access at
home, or on the road.  The system allows several connections to the same
desktop, providing an invaluable tool for collaborative or shared working in
the workplace or classroom.  Computer support within the geographically spread
family is an ever popular use.

Vino is an VNC server that integrates cleanly within the GNOME Desktop.
2015-12-01 04:30:06 +00:00

28 lines
701 B
Makefile

# $NetBSD: options.mk,v 1.6 2013/08/12 09:36:41 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.vino
PKG_SUPPORTED_OPTIONS+= avahi inet6 telepathy
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mavahi)
CONFIGURE_ARGS+= --enable-avahi
.include "../../net/avahi/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-avahi
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mtelepathy)
CONFIGURE_ARGS+= --enable-telepathy
BUILDLINK_API_DEPENDS.telepathy-glib+= telepathy-glib>=0.11.6
.include "../../chat/telepathy-glib/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-telepathy
.endif