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

inherit distutils git

DESCRIPTION="The slave client used by the AutotuA devhelp system"
HOMEPAGE="http://soc.gentooexperimental.org/projects/show/autotua"
SRC_URI=""
EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/autotua.git"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="net-misc/connect"
DEPEND="${RDEPEND}
		>=dev-lang/python-2.5"

src_compile() {
	cd "${S}/slave"
	distutils_src_compile
}

src_install() {
	cd "${S}/slave"
	distutils_src_install
}

pkg_preinst() {
	fperms +x /usr/lib/python*/site-packages/autotua/bin/jobuild.sh
}