diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2005-10-04 02:42:24 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2005-10-04 02:42:24 +0000 |
commit | 7dc3025cf6396ef0ba02af420257044831395d47 (patch) | |
tree | 026fdd67bd4e3c4a74e0abd1197d28d1f6bf655e /net-im | |
parent | Forbid, deprecate and schedule removal mainly due to security bugs (diff) |
- Add an option and appropriate LIB_DEPENDS to enable/disable PGP
encryption of Jabber messages.
PR: 86670
Submitted by: Stefan Walter <sw AT gegenunendlich dot de>
Notes
Notes:
svn path=/head/; revision=144123
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/centericq/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/net-im/centericq/Makefile b/net-im/centericq/Makefile index cf9292455416..b2813d818b36 100644 --- a/net-im/centericq/Makefile +++ b/net-im/centericq/Makefile @@ -34,6 +34,7 @@ OPTIONS= NLS "Native Language Support" on \ AIM "Support for AOL's Instant Messenger Protocol" off \ IRC "Support for IRC Protocol" off \ JABBER "Support for Jabber Protocol" off \ + GPGME "Support for PGP encrypted Jabber messages" on \ RSS "Support for RSS" off \ LJ "Support for LiveJournal" off \ GG "Support for Gadu-Gadu Protocol" off @@ -81,6 +82,13 @@ CONFIGURE_ARGS+= --disable-irc .if !defined(WITH_JABBER) CONFIGURE_ARGS+= --disable-jabber +.else +.if !defined(WITH_GPGME) +CONFIGURE_ARGS+= --without-gpgme +.else +LIB_DEPENDS+= gpgme.14:${PORTSDIR}/security/gpgme +CONFIGURE_ARGS+= --with-gpgme=${LOCALBASE} +.endif .endif .if !defined(WITH_RSS) |