diff options
author | Robert Buchholz <rbu@gentoo.org> | 2008-08-23 11:49:55 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2008-08-23 11:49:55 +0000 |
commit | e72f405d1ac5518fba48f96b9980a6ba9f06017f (patch) | |
tree | 4a7464e4649cfcedc4824fa7a6f6a794e6d84b18 /dev-python/kaa-base | |
parent | Marked ppc and ppc64 (diff) | |
download | gentoo-2-e72f405d1ac5518fba48f96b9980a6ba9f06017f.tar.gz gentoo-2-e72f405d1ac5518fba48f96b9980a6ba9f06017f.tar.bz2 gentoo-2-e72f405d1ac5518fba48f96b9980a6ba9f06017f.zip |
+ 23 Aug 2008; Robert Buchholz <rbu@gentoo.org> kaa-base-0.4.0.ebuild:+ Pull avahi and others into DEPEND, and check for avahi before checking for+ use flags (bug #235123 by Anton Romanov)
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'dev-python/kaa-base')
-rw-r--r-- | dev-python/kaa-base/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/kaa-base/kaa-base-0.4.0.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/dev-python/kaa-base/ChangeLog b/dev-python/kaa-base/ChangeLog index 7b035a98d810..fed5a49f2a49 100644 --- a/dev-python/kaa-base/ChangeLog +++ b/dev-python/kaa-base/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/kaa-base # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.14 2008/08/16 15:36:49 rbu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/ChangeLog,v 1.15 2008/08/23 11:49:55 rbu Exp $ + + 23 Aug 2008; Robert Buchholz <rbu@gentoo.org> kaa-base-0.4.0.ebuild: + Pull avahi and others into DEPEND, and check for avahi before checking for + use flags (bug #235123 by Anton Romanov) 16 Aug 2008; Robert Buchholz <rbu@gentoo.org> metadata.xml, kaa-base-0.4.0.ebuild: diff --git a/dev-python/kaa-base/kaa-base-0.4.0.ebuild b/dev-python/kaa-base/kaa-base-0.4.0.ebuild index 298fb91904f0..e634eb1c6b14 100644 --- a/dev-python/kaa-base/kaa-base-0.4.0.ebuild +++ b/dev-python/kaa-base/kaa-base-0.4.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild,v 1.4 2008/08/16 15:38:17 rbu Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-base/kaa-base-0.4.0.ebuild,v 1.5 2008/08/23 11:49:55 rbu Exp $ inherit python eutils distutils @@ -13,11 +13,12 @@ SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="avahi ssl sqlite tls lirc" -RDEPEND="dev-libs/libxml2 +DEPEND="dev-libs/libxml2 + sqlite? ( dev-python/dbus-python >=dev-python/pysqlite-2.2 ) + avahi? ( net-dns/avahi )" +RDEPEND="${DEPEND} dev-python/pynotifier - avahi? ( net-dns/avahi ) lirc? ( dev-python/pylirc ) - sqlite? ( >=dev-libs/glib-2.4.0 >=dev-python/pysqlite-2.2 ) tls? ( dev-python/tlslite )" PYTHON_MODNAME="kaa" @@ -34,7 +35,7 @@ pkg_setup() { eerror "dev-libs/libxml2 must be built with the 'python' USE flag" die "Recompile dev-libs/libxml2 with the 'python' USE flag enabled" fi - if ! built_with_use net-dns/avahi python; then + if use avahi && ! built_with_use net-dns/avahi python; then eerror "net-dns/avahi must be built with the 'python' USE flag" die "Recompile net-dns/avahi with the 'python' USE flag enabled" fi |