d85a26d15d
Vino 2.32.2 =========== Fixes: - Avoid out-of-bounds memory accesses. - Exit immediately when the server is disabled. - Bind both an IPv4 and an IPv6 socket. Translations: + Daniel Korostil (uk) + Fran Diéguez (gl) + Gheyret T.Kenji (ug) + Wei-Lun Chao (zh_HK, zh_TW) ============== Version 2.32.1 ============== Fixes: + Be compatible with old (< 0.7.0) and new (>= 0.7.0) libnotify Translations: + Joan Duran (ca@valencia) + Thanos Lefteris (el) + Priit Laes (et) + Takayuki KUSANO (ja) + Changwoo Ryu (ko) + Sahran (ug) Vino 2.32.0 =========== Translations: + Baurzhan Muftakhidinov (kk) + Takayuki KUSANO (ja) Vino 2.31.91 ============ Translations: + Fran Diéguez (gl) + krishnababu k (te) + Kristjan Schmidt (eo) + Petr Kovar (cs) Vino 2.31.4 =========== Features: + Improvements on Telepathy tubes stuff + Various internal work on replacing deprecated stuff Translations: + Andika Triwidada (id) + Carles Ferrando (ca@valencia) + Leonid Kanter (ru) + Luca Ferretti (it) + Matej Urbančič (sl) + Priit Laes (et) + Sira Nokyoongtong (th) + Theppitak Karoonboonyanan (th) + Thomas Thurman (en@shaw)
28 lines
701 B
Makefile
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
|