46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{7..9} )
|
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
|
|
|
inherit distutils-r1 xdg
|
|
|
|
DESCRIPTION="A screencast tool to display your keys inspired by Screenflick"
|
|
HOMEPAGE="https://www.thregr.org/~wavexx/software/screenkey/"
|
|
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://gitlab.com/screenkey/${PN}.git"
|
|
else
|
|
SRC_URI="https://gitlab.com/screenkey/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
fi
|
|
|
|
RESTRICT="test"
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
IUSE="appindicator"
|
|
|
|
BDEPEND="
|
|
dev-python/Babel[${PYTHON_USEDEP}]
|
|
dev-python/wheel[${PYTHON_USEDEP}]
|
|
"
|
|
RDEPEND="
|
|
dev-python/pycairo[${PYTHON_USEDEP}]
|
|
dev-python/pygobject[${PYTHON_USEDEP}]
|
|
media-fonts/fontawesome
|
|
x11-libs/gtk+:3[X,introspection]
|
|
x11-misc/slop
|
|
appindicator? ( dev-libs/libappindicator:3[introspection] )
|
|
"
|
|
|
|
src_prepare() {
|
|
# Change the doc install path
|
|
sed -i "s|share/doc/screenkey|share/doc/${PF}|g" setup.py || die
|
|
|
|
default
|
|
}
|