diff options
author | Jason Wever <weeve@gentoo.org> | 2004-09-27 23:48:43 +0000 |
---|---|---|
committer | Jason Wever <weeve@gentoo.org> | 2004-09-27 23:48:43 +0000 |
commit | 8556176fc8edf11362ddf4fb6e7808f5324f4f9c (patch) | |
tree | 1fb15d0a56cdddc8fe91a7f220a1ea8cbe9c08b9 /net-im | |
parent | depend on mozilla-launcher-1.19 to fix [Tt]hunderbird problems #65128 (diff) | |
download | gentoo-2-8556176fc8edf11362ddf4fb6e7808f5324f4f9c.tar.gz gentoo-2-8556176fc8edf11362ddf4fb6e7808f5324f4f9c.tar.bz2 gentoo-2-8556176fc8edf11362ddf4fb6e7808f5324f4f9c.zip |
Added fix to enable ssl for jabber, thanks to Thomas Matthijs <axxo@gentoo.org> for the patch. Resolves bug #65556.
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/bitlbee/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/bitlbee/bitlbee-0.91.ebuild | 15 |
2 files changed, 16 insertions, 5 deletions
diff --git a/net-im/bitlbee/ChangeLog b/net-im/bitlbee/ChangeLog index 76765d5b798d..2b02373b82b8 100644 --- a/net-im/bitlbee/ChangeLog +++ b/net-im/bitlbee/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/bitlbee # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/ChangeLog,v 1.42 2004/09/26 18:36:35 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/ChangeLog,v 1.43 2004/09/27 23:48:43 weeve Exp $ + + 27 Sep 2004; Jason Wever <weeve@gentoo.org> bitlbee-0.91.ebuild: + Added fix to enable ssl for jabber, thanks to Thomas Matthijs + <axxo@gentoo.org> for the patch. Resolves bug #65556. *bitlbee-0.91 (26 Sep 2004) diff --git a/net-im/bitlbee/bitlbee-0.91.ebuild b/net-im/bitlbee/bitlbee-0.91.ebuild index fc2a63cbabe7..0aa51870aa70 100644 --- a/net-im/bitlbee/bitlbee-0.91.ebuild +++ b/net-im/bitlbee/bitlbee-0.91.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/bitlbee-0.91.ebuild,v 1.1 2004/09/26 18:36:35 weeve Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/bitlbee/bitlbee-0.91.ebuild,v 1.2 2004/09/27 23:48:43 weeve Exp $ inherit eutils gcc @@ -11,11 +11,12 @@ SRC_URI="http://get.bitlbee.org/src/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~ia64" -IUSE="debug jabber msn oscar yahoo flood" +IUSE="debug jabber msn oscar yahoo flood ssl" DEPEND="virtual/libc >=dev-libs/glib-2.0 - msn? ( net-libs/gnutls )" + msn? ( net-libs/gnutls ) + jabber? ( ssl? ( net-libs/gnutls ) )" no_flags_die() { eerror "" @@ -46,12 +47,18 @@ src_compile() { # setup useflags local myconf use debug && myconf="${myconf} --debug=1" - use msn || myconf="${myconf} --msn=0 --ssl=gnutls" + use msn || myconf="${myconf} --msn=0 " use jabber || myconf="${myconf} --jabber=0" use oscar || myconf="${myconf} --oscar=0" use yahoo || myconf="${myconf} --yahoo=0" use flood && myconf="${myconf} --flood=1" + if ( ( use jabber && use ssl ) || use msn ); then + myconf="--ssl=gnutls" + else + myconf="--ssl=bogus" + fi + econf --datadir=/usr/share/bitlbee --etcdir=/etc/bitlbee ${myconf} \ || die "econf failed" |