blob: 8b84a8861720a888b95e7c4b128fa5ec4b1f59e8 (
plain) (
blame)
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="A screencast tool to display your keys inspired by Screenflick"
HOMEPAGE="https://github.com/wavexx/screenkey"
SRC_URI="https://github.com/wavexx/screenkey/archive/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/python-distutils-extra[${PYTHON_USEDEP}]
"
RDEPEND="${DEPEND}
dev-python/pygtk[${PYTHON_USEDEP}]
dev-python/pycairo[${PYTHON_USEDEP}]
x11-misc/slop
media-fonts/fontawesome
"
BDEPEND=""
S="${WORKDIR}/${PN}-${P}"
|