blob: c75e130158846d86f33707d4f1b62f92b9bb6dd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2009 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.6.0.ebuild,v 1.4 2009/12/31 16:31:15 fauli Exp $
EAPI="2"
NEED_PYTHON="2.5"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
DESCRIPTION="Basic Framework for all Kaa Python Modules."
HOMEPAGE="http://freevo.sourceforge.net/kaa/"
SRC_URI="mirror://sourceforge/freevo/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="avahi ssl sqlite tls lirc"
DEPEND="dev-lang/python[threads]
>=dev-libs/glib-2.4.0
>=dev-libs/libxml2-2.6.0[python]
sqlite? ( dev-python/dbus-python >=dev-python/pysqlite-2.3.0 )
avahi? ( net-dns/avahi[python] )"
RDEPEND="${DEPEND}
dev-python/pynotifier
lirc? ( dev-python/pylirc )
tls? ( dev-python/tlslite )"
RESTRICT_PYTHON_ABIS="2.4 3*"
PYTHON_MODNAME="kaa"
src_prepare() {
distutils_src_prepare
rm -fr src/pynotifier
}
|