summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2021-04-20 09:07:55 -0400
committerJoe Marcus Clarke <marcus@FreeBSD.org>2021-04-20 09:07:55 -0400
commitf1ccdf22f1172bae140828431b74f8148adfcb1c (patch)
tree41ba1123f50c2268fad0d10d186a08e80e2ef3e3 /net-im
parentdevel/cargo-generate: Update to 0.6.1 (diff)
net-im/libpurple: Make SASL default enabled.
The 2.14.2 (un-ported) release made SASL enable by default, so respect that here. While here, add a LICENSE. Reported by: olgeni
Diffstat (limited to 'net-im')
-rw-r--r--net-im/libpurple/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/net-im/libpurple/Makefile b/net-im/libpurple/Makefile
index 2cc3b82faede..96c4b1e89153 100644
--- a/net-im/libpurple/Makefile
+++ b/net-im/libpurple/Makefile
@@ -2,6 +2,7 @@
PORTNAME?= libpurple
PORTVERSION= 2.14.3
+PORTREVISION?= 1
CATEGORIES?= net-im
MASTER_SITES= SF/pidgin/Pidgin/${PORTVERSION}
DISTNAME= pidgin-${PORTVERSION}
@@ -9,6 +10,8 @@ DISTNAME= pidgin-${PORTVERSION}
MAINTAINER?= marcus@FreeBSD.org
COMMENT?= Backend library for the Pidgin multi-protocol messaging client
+LICENSE= GPL3
+
USES+= cpe gettext gmake gnome libtool localbase pathfix pkgconfig \
tar:bzip2
USE_GNOME?= gnomeprefix intltool glib20 libxml2
@@ -45,7 +48,7 @@ OPTIONS_RADIO_TLS= NSS GNUTLS
OPTIONS_GROUP_PROTOCOLS=BONJOUR GG SAMETIME SILC IRC JABBER \
NOVELL QQ SIMPLE ZEPHYR
OPTIONS_DEFAULT= BONJOUR DBUS NSS GSTREAMER VV IDN GG IRC JABBER \
- NOVELL QQ SIMPLE ZEPHYR
+ NOVELL QQ SASL SIMPLE ZEPHYR
BONJOUR_DESC= mDNS support and Bonjour protocol
GNUTLS_DESC= Use GNUTLS for encryption support
NSS_DESC= Use Mozilla NSS for encryption support
@@ -179,6 +182,8 @@ PLIST_SUB+= NSS="@comment "
.if ${PORT_OPTIONS:MSASL}
LIB_DEPENDS+= libsasl2.so:security/cyrus-sasl2
CONFIGURE_ARGS+= --enable-cyrus-sasl
+.else
+CONFIGURE_ARGS+= --disable-cyrus-sasl
.endif
.if ${PORT_OPTIONS:MBONJOUR}