diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-06-05 10:21:35 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-06-05 10:21:35 +0000 |
commit | 85f40c63a3c7631f2055972c4e0578b0b374593f (patch) | |
tree | 92a23cb9c908e41a17cf190a970a05cf7939d3f4 /eclass | |
parent | Version bump. Remove old (diff) | |
download | gentoo-2-85f40c63a3c7631f2055972c4e0578b0b374593f.tar.gz gentoo-2-85f40c63a3c7631f2055972c4e0578b0b374593f.tar.bz2 gentoo-2-85f40c63a3c7631f2055972c4e0578b0b374593f.zip |
Allow more providers for stardict, bug #413093 by tot-to and qt team.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/stardict.eclass | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 5ca9ade65f62..be4242ae55b0 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.287 2012/06/05 02:16:40 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.288 2012/06/05 10:21:35 pacho Exp $ + + 05 Jun 2012; Pacho Ramos <pacho@gentoo.org> stardict.eclass: + Allow more providers for stardict, bug #413093 by tot-to and qt team. 05 Jun 2012; Ryan Hill <dirtyepic@gentoo.org> flag-o-matic.eclass: Update Intel/AMD instruction sets for 4.7. diff --git a/eclass/stardict.eclass b/eclass/stardict.eclass index 8f61238103db..714920894cba 100644 --- a/eclass/stardict.eclass +++ b/eclass/stardict.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/stardict.eclass,v 1.17 2011/12/27 17:55:12 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/stardict.eclass,v 1.18 2012/06/05 10:21:35 pacho Exp $ # Author : Alastair Tse <liquidx@gentoo.org> # @@ -31,9 +31,11 @@ IUSE="gzip" SLOT="0" LICENSE="GPL-2" -DEPEND=">=app-text/stardict-2.4.2 - gzip? ( app-arch/gzip - app-text/dictd )" +DEPEND="|| ( >=app-text/stardict-2.4.2 + app-text/sdcv + app-text/goldendict ) + gzip? ( app-arch/gzip + app-text/dictd )" S=${WORKDIR}/${DICT_P} |