blob: 1d3c029cc79d27c07e48178cbce49754e49859a6 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/qtile/qtile-0.5.ebuild,v 1.1 2012/11/13 05:03:09 radhermit Exp $
EAPI="5"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
PYTHON_MODNAME="libqtile"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils vcs-snapshot virtualx
DESCRIPTION="A full-featured, hackable tiling window manager written in Python"
HOMEPAGE="http://qtile.org/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RDEPEND=">=dev-python/pycairo-1.10.0-r3[xcb]
dev-python/pygtk:2
>=x11-libs/xpyb-1.3.1"
DEPEND="doc? ( dev-python/sphinx )
test? (
${RDEPEND}
dev-python/python-xlib
x11-base/xorg-server[kdrive]
)"
# tests fail due to xauth errors from python-xlib
RESTRICT="test"
DOCS="TODO.rst"
src_compile() {
distutils_src_compile
use doc && emake -C docs html
}
src_test() {
testing() {
VIRTUALX_COMMAND="nosetests"
PYTHONPATH="build-${PYTHON_ABI}/lib" virtualmake
}
python_execute_function testing
}
src_install() {
distutils_src_install
use doc && dohtml -r docs/_build/html/*
insinto /usr/share/xsessions
doins resources/qtile.desktop
exeinto /etc/X11/Sessions
newexe "${FILESDIR}"/${PN}-session ${PN}
}
|