pkgsrc/chat/libpurple/options.mk
nia 198fd6fc16 pidgin: Update to 2.14.1
version 2.14.1 (11/06/2020):
	* Fixed issues with Windows installer that always thought Pidgin was
	  running. (Eion Robb)
	* Fixed an issue where the Windows installer was not using Unicode while
	  doing checksums which made it fail. (Eion Robb)
	* Fixed an issue in the released source code that caused the Mercurial
	  revision in the About box to be "unknown". (Gary Kramlich)

version 2.14.0 (10/06/2020):
	General:
	* Fixed a memory leak in search results. (#17292 PR #320 David Woodhouse)
	* Support SNI with GNUTLS. (#17300 tiagosalem) (PR #659 Mihai Moldovan)
	* Add additional error handling to NSS and GNUTLS. (PR #679 Samuel Thibault)

	libpurple:
	* Add invisible buddy support to support presence/name/photos for non
	  buddies. (#17295 PR 321 David Woodhouse)
	* Make purple-remote compatible with both Python 2 and Python 3. (Jan
	  Synacek of RedHat)
	* Fixed some leaky deprecation warnings.  (PR #586 Gary Kramlich)
	* Fixed HTML logs which were writing invalid HTML. (#17280 stars PR #312
	  Daniel Kamil Kozar)
	* Fixed a use after free in purple_smiley_set_data_impl. (PR #694 Gary
	  Kramlich)
	* Added the chat_send_file ability to protocol plugins. (PR #701 David
	  Woodhouse)

	Pidgin:
	* Treat <p> tags as line breaks when pasting. (PR #678 Colin Xu)
	* Reverted Ticket #17232/PR #695.  It caused more harm than good and a new
	  solution needs to be found.  (PR #695 Gary Kramlich)

	Bonjour:
	* Always use port fallback for IPv4 addresses. (PR #382 Michael Osborne)

	XMPP:
	* Support for XEP-0198 Stream Management (PR #309 defanor)
	* Decrease delay for file transfer using streamhosts (PR #464 #627 Evert
	  Mouw)

	Voice & Video:
	* Improve webcam failure handling. (PR #322 David Woodhouse)
	* Show error when creating media pipeline fails. (#17290 PR 322 David
	  Woodhouse)
	* Clip audio level reporting. (#14426 PR #322 David Woodhouse)
	* Keep track of devices managed by GstDeviceMonitor. (PR #322 David
	  Woodhouse)
	* Ignore PulseAudio monitors.  (PR #322 David Woodhouse)
	* Backport native Voice & Video prefs from 3.0.  (PR #322 David Woodhouse)
	* Fixed building against GStreamer 0.10 (PR #325 David Woodhouse)
	* Fixed initial delay on incoming audio (PR #379 David Woodhouse)
	* Properly cleanup timeouts. (PR #383 Jakub Adam)
	* Added an audio mixer so mixed sources don't cause a pipe failure. (PR #522
	  Fabrice Bellet)
	* Added screen share support for Wayland via XDP Portal. (PR #337 David
	  Woodhouse)
	* Handle unplug and replug events of selected media device. (PR #699 David
	  Woodhouse)
2020-06-12 11:40:18 +00:00

93 lines
2.8 KiB
Makefile

# $NetBSD: options.mk,v 1.31 2020/06/12 11:40:19 nia Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libpurple
PKG_OPTIONS_REQUIRED_GROUPS= ssl
PKG_OPTIONS_GROUP.ssl= gnutls nss
PKG_SUPPORTED_OPTIONS+= avahi dbus debug farstream
PKG_SUPPORTED_OPTIONS+= gstreamer perl sasl tcl
PKG_SUGGESTED_OPTIONS+= dbus farstream gstreamer gnutls
.include "../../mk/bsd.options.mk"
PLIST_VARS+= avahi dbus gnutls nss perl tcl vv
.if !empty(PKG_OPTIONS:Mavahi)
PLIST.avahi= yes
CONFIGURE_ARGS+= --enable-avahi
. include "../../net/avahi/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mgnutls)
PLIST.gnutls= yes
CONFIGURE_ARGS+= --enable-gnutls
CONFIGURE_ARGS+= --with-gnutls-includes=${BUILDLINK_PREFIX.gnutls}/include
CONFIGURE_ARGS+= --with-gnutls-libs=${BUILDLINK_PREFIX.gnutls}/lib
. include "../../security/gnutls/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mnss)
PLIST.nss= yes
CONFIGURE_ARGS+= --enable-nss
CONFIGURE_ARGS+= --with-nspr-includes=${BUILDLINK_PREFIX.nspr}/include/nspr
CONFIGURE_ARGS+= --with-nspr-libs=${BUILDLINK_PREFIX.nspr}/lib/nspr
CONFIGURE_ARGS+= --with-nss-includes=${BUILDLINK_PREFIX.nss}/include/nss/nss
CONFIGURE_ARGS+= --with-nss-libs=${BUILDLINK_PREFIX.nss}/lib/nss
. include "../../devel/nss/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mperl)
PLIST.perl= yes
CONFIGURE_ARGS+= --enable-perl
USE_TOOLS+= perl:run
PERL5_PACKLIST_DIR= ${PREFIX}/lib/purple-2/perl
PERL5_PACKLIST= auto/Purple/.packlist
. include "../../lang/perl5/packlist.mk"
. include "../../lang/perl5/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mtcl)
PLIST.tcl= yes
CONFIGURE_ARGS+= --enable-tcl
CONFIGURE_ARGS+= --with-tclconfig=${BUILDLINK_PREFIX.tcl}/lib
. include "../../lang/tcl/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mdbus)
CONFIGURE_ARGS+= --enable-dbus
CONFIGURE_ARGS+= --with-python=${PYTHONBIN}
PLIST.dbus= yes
REPLACE_SH+= libpurple/purple-send
REPLACE_SH+= libpurple/purple-send-async
REPLACE_PYTHON+= libpurple/purple-remote
REPLACE_PYTHON+= libpurple/purple-url-handler
. include "../../sysutils/py-dbus/buildlink3.mk"
. include "../../sysutils/dbus/buildlink3.mk"
. include "../../sysutils/dbus-glib/buildlink3.mk"
. include "../../lang/python/application.mk"
.endif
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
.if !empty(PKG_OPTIONS:Msasl)
CONFIGURE_ARGS+= --enable-cyrus-sasl
. include "../../security/cyrus-sasl/buildlink3.mk"
.endif
# voice/video support requires both farstream and gstreamer
.if !empty(PKG_OPTIONS:Mfarstream) && !empty(PKG_OPTIONS:Mgstreamer)
CONFIGURE_ARGS+= --enable-vv
PLIST.vv= yes
.endif
.if !empty(PKG_OPTIONS:Mfarstream)
CONFIGURE_ARGS+= --enable-farstream
. include "../../chat/farstream/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mgstreamer)
CONFIGURE_ARGS+= --enable-gstreamer
. include "../../multimedia/gstreamer1/buildlink3.mk"
. include "../../multimedia/gst-plugins1-base/buildlink3.mk"
.endif