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

EAPI="3"

inherit eutils distutils

DESCRIPTION="A Python XMPP (RFC 3920,3921) and Jabber implementation"
HOMEPAGE="http://pyxmpp.jajcus.net/"
SRC_URI="http://pyxmpp.jajcus.net/downloads/${P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

DEPEND=">=dev-lang/python-2.3
	>=dev-libs/libxml2-2.6.23[python]"
RDEPEND="${DEPEND}
	>=dev-python/dnspython-1.3.2
	>=dev-python/m2crypto-0.13.1"

src_install() {
	DOCS="CHANGES"
	distutils_src_install
	if use doc; then
		dohtml -r doc/www/* || die "Dohtml failed"
	fi
}