diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 22:48:12 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:56:53 +0100 |
commit | a4f1882bfe30d44ef1da5b83b81f5339b8355ead (patch) | |
tree | 8f82739dd8f327df16078bcf895a1a1e4807c5f8 /x11-misc/xflux-gui | |
parent | x11-misc/xflux: drop 20130927-r1, 20170103 (diff) | |
download | gentoo-a4f1882bfe30d44ef1da5b83b81f5339b8355ead.tar.gz gentoo-a4f1882bfe30d44ef1da5b83b81f5339b8355ead.tar.bz2 gentoo-a4f1882bfe30d44ef1da5b83b81f5339b8355ead.zip |
x11-misc/xflux-gui: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'x11-misc/xflux-gui')
-rw-r--r-- | x11-misc/xflux-gui/xflux-gui-1.2.0-r3.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/x11-misc/xflux-gui/xflux-gui-1.2.0-r3.ebuild b/x11-misc/xflux-gui/xflux-gui-1.2.0-r3.ebuild new file mode 100644 index 000000000000..dcbcc417a9ac --- /dev/null +++ b/x11-misc/xflux-gui/xflux-gui-1.2.0-r3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_SETUPTOOLS="no" +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 gnome2-utils xdg-utils + +DESCRIPTION="A GUI for f.lux" +HOMEPAGE="https://github.com/xflux-gui/fluxgui/" +SRC_URI="https://github.com/${PN}/fluxgui/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/fluxgui-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="-* amd64 x86" + +PATCHES=( "${FILESDIR}/${P}-disable-gschemas-compiled.patch" ) + +RDEPEND=" + dev-libs/libappindicator:3 + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pygobject[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + x11-libs/libXxf86vm + x11-misc/xflux +" + +python_install() { + # Don't let the package compiling the schemas, + # as this could cause a file collision + export DISABLE_GSCHEMAS_COMPILED="true" + + distutils-r1_python_install +} + +pkg_postinst() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} |