diff options
author | Kathryn Kulick <gothgirl@gentoo.org> | 2006-06-30 15:51:09 +0000 |
---|---|---|
committer | Kathryn Kulick <gothgirl@gentoo.org> | 2006-06-30 15:51:09 +0000 |
commit | 584566326a65019d3a4312b7fc9de93ec75321cf (patch) | |
tree | 03dc78617f64b9705dbdc55f31ae8a1d1f8b7ae2 /net-im/gaim | |
parent | Stable on amd64. (diff) | |
download | gentoo-2-584566326a65019d3a4312b7fc9de93ec75321cf.tar.gz gentoo-2-584566326a65019d3a4312b7fc9de93ec75321cf.tar.bz2 gentoo-2-584566326a65019d3a4312b7fc9de93ec75321cf.zip |
Added gadu gadu protocol support
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gaim/gaim-2.0.0_beta3-r1.ebuild | 19 |
2 files changed, 21 insertions, 3 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index 3f6795581fb2..0f40cf24e4de 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/gaim # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.393 2006/06/30 12:19:35 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.394 2006/06/30 15:51:09 gothgirl Exp $ + + 30 Jun 2006; gothgirl <gothgirl@gentoo.org> gaim-2.0.0_beta3-r1.ebuild: + added gadu gadu protocol support 30 Jun 2006; gothgirl <gothgirl@gentoo.org> gaim-1.5.0.ebuild, gaim-2.0.0_beta3-r1.ebuild: diff --git a/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild b/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild index 9773e43e4cb9..52e129244a54 100644 --- a/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild +++ b/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild,v 1.2 2006/06/30 12:19:35 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta3-r1.ebuild,v 1.3 2006/06/30 15:51:09 gothgirl Exp $ inherit flag-o-matic eutils toolchain-funcs debug multilib mono autotools perl-module @@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/gaim/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="audiofile bonjour cjk dbus debug eds gnutls krb4 mono nas nls perl silc spell startup-notification tcltk xscreensaver custom-flags" +IUSE="audiofile bonjour cjk dbus debug eds gadu gnutls krb4 mono nas nls perl silc spell startup-notification tcltk xscreensaver custom-flags" RDEPEND=" audiofile? ( media-libs/libao @@ -27,6 +27,7 @@ RDEPEND=" nas? ( >=media-libs/nas-1.4.1-r1 ) perl? ( >=dev-lang/perl-5.8.2-r1 ) spell? ( >=app-text/gtkspell-2.0.2 ) + gadu? ( net-libs/libgadu ) gnutls? ( net-libs/gnutls ) !gnutls? ( >=dev-libs/nss-3.11 >=dev-libs/nspr-4.6.1 ) @@ -43,6 +44,7 @@ DEPEND="$RDEPEND dev-util/pkgconfig nls? ( sys-devel/gettext )" + S="${WORKDIR}/${MY_P}" # List of plugins @@ -119,6 +121,14 @@ pkg_setup() { eerror die "Configure failed" fi + + if use gadu && built_with_use net-libs/libgadu ssl ; then + eerror + eerror You need to rebuild net-libs/libgadu with USE=-ssl in order + eerror enable gadu gadu support in gaim. + eerror + die "Configure failed" + fi } src_unpack() { @@ -153,6 +163,11 @@ src_compile() { myconf="${myconf} --with-silc-libs=." fi + if ! use gadu ; then + myconf="${myconf} --with-gadu-includes=." + myconf="${myconf} --with-gadu-libs=." + fi + if use gnutls ; then einfo "Disabling NSS, using GnuTLS" myconf="${myconf} --enable-nss=no" |