summaryrefslogtreecommitdiff
blob: bcffbe1f7776185a0da401f484e6ebaf4d26826e (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
40
41
42
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3
PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"

inherit bash-completion distutils

DESCRIPTION="Python library for managing XML documents on XCAP server"
HOMEPAGE="http://sipsimpleclient.com/wiki/xcapclient"
SRC_URI="http://download.ag-projects.com/XCAP/${P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"

DEPEND=""
RDEPEND="dev-python/lxml
	dev-python/python-application"

#src_test() {
#	testing() {
#		PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_client.py
#	}
#	python_execute_function testing
#}


src_install() {
	distutils_src_install

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r examples || die
	fi

	dobashcompletion bash_completion.d/xcapclient
}