diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-22 13:16:10 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-22 13:16:10 +0000 |
commit | 426ae35aa9390014ef5d2e2dff285c4033eff94f (patch) | |
tree | 7d35258faa58839588882a7092c4f56d23721127 /net-im/centericq/centericq-4.20.0-r3.ebuild | |
parent | Stable on sparc wrt #99865 (diff) | |
download | gentoo-2-426ae35aa9390014ef5d2e2dff285c4033eff94f.tar.gz gentoo-2-426ae35aa9390014ef5d2e2dff285c4033eff94f.tar.bz2 gentoo-2-426ae35aa9390014ef5d2e2dff285c4033eff94f.zip |
Forced centericq to use external gg lib, bug #99890
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-im/centericq/centericq-4.20.0-r3.ebuild')
-rw-r--r-- | net-im/centericq/centericq-4.20.0-r3.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/net-im/centericq/centericq-4.20.0-r3.ebuild b/net-im/centericq/centericq-4.20.0-r3.ebuild new file mode 100644 index 000000000000..e4192060d0cf --- /dev/null +++ b/net-im/centericq/centericq-4.20.0-r3.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/centericq/centericq-4.20.0-r3.ebuild,v 1.1 2005/07/22 13:16:10 sekretarz Exp $ + +inherit eutils + +IUSE="bidi nls ssl crypt icq jabber aim msn yahoo gg irc rss lj" + +DESCRIPTION="A ncurses ICQ/Yahoo!/AIM/IRC/MSN/Jabber/GaduGadu/RSS/LiveJournal Client" +SRC_URI="http://thekonst.net/download/${P}.tar.bz2" +HOMEPAGE="http://thekonst.net/en/centericq" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~amd64 ~ppc ~hppa" + +DEPEND="virtual/libc + >=net-libs/libgadu-20050719 + >=sys-libs/ncurses-5.2 + bidi? ( dev-libs/fribidi ) + jabber? ( crypt? ( >=app-crypt/gpgme-1.0.2 ) ) + ssl? ( >=dev-libs/openssl-0.9.6g ) + msn? ( net-misc/curl )" + +RDEPEND="${DEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + cd ${S} + + # security fix, see CAN-2005-1914 -- from CenterICQ CVS, 20050718 + epatch ${FILESDIR}/${P}.CAN-2005-1914.patch.bz2 + + epatch ${FILESDIR}/${P}-libgadu.patch + use amd64 && epatch ${FILESDIR}/${PN}-amd64.patch +} + +src_compile() { + local myopts="--with-gnu-ld --disable-konst" + use nls >&/dev/null && myopts="${myopts} --enable-locales-fix" || myopts="${myopts} --disable-nls" + use bidi >&/dev/null && myopts="${myopts} --with-fribidi" + use ssl >&/dev/null && myopts="${myopts} --with-ssl" + use ssl >&/dev/null && myopts="${myopts} --with-ssl" + + use icq >&/dev/null || myopts="${myopts} --disable-icq" + use jabber >&/dev/null && { + use crypt >&/dev/null || myopts="${myopts} --without-gpgme" + } || myopts="${myopts} --disable-jabber" + use aim >&/dev/null || myopts="${myopts} --disable-aim" + use msn >&/dev/null || myopts="${myopts} --disable-msn" + if use msn >&/dev/null && ! use ssl >&/dev/null; then + eerror "" + eerror "USE flag problem" + eerror "================" + eerror "'msn' USE flag detected, but 'ssl' USE flag missing:" + eerror "MSN support needs libcurl with SSL support." + eerror "" + die "Please either activate the 'ssl' USE flag or deactivate the 'msn' USE flag for net-im/centericq" + fi + use yahoo >&/dev/null || myopts="${myopts} --disable-yahoo" + use gg >&/dev/null || myopts="${myopts} --disable-gg" + use irc >&/dev/null || myopts="${myopts} --disable-irc" + use rss >&/dev/null || myopts="${myopts} --disable-rss" + use lj >&/dev/null || myopts="${myopts} --disable-lj" + + econf ${myopts} || die "Configure failed" + emake || die "Compilation failed" +} + +src_install () { + einstall || die "Installation failed" + + dodoc ABOUT-NLS AUTHORS ChangeLog COPYING FAQ README THANKS TODO +} |