blob: a5640d2ecbae2f521fa8462a81ff1bf632ad6c3d (
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
|
# Copyright 1999-2013XXX Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit git-2 python-r1
DESCRIPTION="PDF Slideshow Presentation Software"
HOMEPAGE="http://repo.or.cz/w/accentuate.git"
SRC_URI=""
EGIT_REPO_URI="git://repo.or.cz/accentuate.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="lirc"
DEPEND="
dev-python/pygame[${PYTHON_USEDEP}]
dev-python/imaging[${PYTHON_USEDEP}]
lirc? ( dev-python/pylirc[${PYTHON_USEDEP}] )"
RDEPEND="${DEPEND}"
src_install() {
python_foreach_impl python_doscript ${PN}
}
|