Files
guru/x11-misc/caffeine-ng/caffeine-ng-3.5.1.ebuild
Anna (cybertailor) Vyalkova 12088906c5 */*: drop dead py3.9 impl
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
2023-05-02 00:45:35 +05:00

54 lines
1.2 KiB
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_10 )
inherit distutils-r1 gnome2-utils xdg
DESCRIPTION="Aplication able to temporarily inhibit the screensaver"
HOMEPAGE="https://codeberg.org/WhyNotHugo/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
}