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

EAPI=4
PYTHON_DEPEND="2"
MY_P="jsb-${PV}"

inherit distutils

DESCRIPTION=""
HOMEPAGE="http://code.google.com/p/jsonbot/"
SRC_URI="http://jsonbot.googlecode.com/files/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# Missing deps (will be bundled) : hapi, sleekxmpp
RDEPEND="dev-python/beautifulsoup
	dev-python/dnspython
	dev-python/feedparser
	dev-python/oauth
	dev-python/pysqlite
	dev-python/requests
	dev-python/simplejson
	>=www-servers/tornado-2.2"
DEPEND="${RDEPEND}
	dev-lang/python[sqlite]
	dev-python/setuptools"

S="${WORKDIR}/${MY_P}"

src_install() {
	distutils_src_install
	rm -rf "${D}"/usr/jsb/
}