mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-22 21:43:03 -04:00
54 lines
1.2 KiB
Bash
54 lines
1.2 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
|
|
|
inherit distutils-r1 gnome2-utils xdg
|
|
|
|
DESCRIPTION="Aplication able to temporarily inhibit the screensaver"
|
|
HOMEPAGE="https://github.com/caffeine-ng/caffeine-ng"
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
>=dev-python/ewmh-0.1.4[${PYTHON_USEDEP}]
|
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
|
>=dev-python/pyxdg-0.25[${PYTHON_USEDEP}]
|
|
dev-python/dbus-python[${PYTHON_USEDEP}]
|
|
>=dev-python/docopt-0.6.2[${PYTHON_USEDEP}]
|
|
dev-python/pulsectl[${PYTHON_USEDEP}]
|
|
>=dev-python/setproctitle-1.1.10[${PYTHON_USEDEP}]
|
|
dev-libs/libappindicator:3
|
|
"
|
|
|
|
src_prepare() {
|
|
sed "/wheel/d" -i setup.py || die
|
|
sed "s/;TrayIcon;DesktopUtility//" -i share/applications/caffeine.desktop || die
|
|
gunzip share/man/man1/caffeine.1.gz || die
|
|
|
|
distutils-r1_src_prepare
|
|
}
|
|
|
|
pkg_postinst() {
|
|
gnome2_gconf_install
|
|
gnome2_schemas_update
|
|
xdg_pkg_postinst
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gnome2_gconf_uninstall
|
|
gnome2_schemas_update
|
|
xdg_pkg_postrm
|
|
}
|