blob: 84475ef3bf46763a6643b7bcf1a249c93c8754a5 (
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
|
# Copyright 1999-2013XXX Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python{2_6,2_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_parallel_foreach_impl python_doscript ${PN}
}
|