diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-06-26 16:18:19 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-06-26 16:18:19 +0000 |
commit | 140f6343f918c039ad358e6eca50d3c408292791 (patch) | |
tree | 98ed1499a015eec71544d18128fa9c1ddd06847f /net-im/mcabber | |
parent | Stable on ppc; bug #178345. (diff) | |
download | gentoo-2-140f6343f918c039ad358e6eca50d3c408292791.tar.gz gentoo-2-140f6343f918c039ad358e6eca50d3c408292791.tar.bz2 gentoo-2-140f6343f918c039ad358e6eca50d3c408292791.zip |
added aspell support wrt bug #182760
(Portage version: 2.1.3_rc3)
Diffstat (limited to 'net-im/mcabber')
-rw-r--r-- | net-im/mcabber/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/mcabber/mcabber-0.9.3.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/net-im/mcabber/ChangeLog b/net-im/mcabber/ChangeLog index 135048f55fbe..6f1e1d4a1002 100644 --- a/net-im/mcabber/ChangeLog +++ b/net-im/mcabber/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/mcabber # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.16 2007/06/21 06:10:52 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/ChangeLog,v 1.17 2007/06/26 16:18:19 wschlich Exp $ + + 26 Jun 2007; Wolfram Schlich <wschlich@gentoo.org> mcabber-0.9.3.ebuild: + added aspell support wrt bug #182760 *mcabber-0.9.3 (20 Jun 2007) diff --git a/net-im/mcabber/mcabber-0.9.3.ebuild b/net-im/mcabber/mcabber-0.9.3.ebuild index 70468e0bb69c..82b7cf40ad83 100644 --- a/net-im/mcabber/mcabber-0.9.3.ebuild +++ b/net-im/mcabber/mcabber-0.9.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/mcabber-0.9.3.ebuild,v 1.1 2007/06/21 06:10:52 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/mcabber/mcabber-0.9.3.ebuild,v 1.2 2007/06/26 16:18:19 wschlich Exp $ DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP" HOMEPAGE="http://www.lilotux.net/~mikael/mcabber/" @@ -10,7 +10,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="ssl crypt" +IUSE="crypt spell ssl" LANGS="de en fr nl pl uk ru" # localized help versions are installed only, when LINGUAS var is set @@ -20,12 +20,14 @@ done; DEPEND="ssl? ( >=dev-libs/openssl-0.9.7-r1 ) crypt? ( >=app-crypt/gpgme-1.0.0 ) + spell? ( app-text/aspell ) >=dev-libs/glib-2.0.0 sys-libs/ncurses" src_compile() { econf \ $(use_enable crypt gpgme) \ + $(use_enable spell aspell) \ $(use_with ssl) \ || die "econf failed" |