diff options
author | Conrad Kostecki <ck+gentoo@bl4ckb0x.de> | 2018-03-29 14:56:00 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-03-29 17:04:27 +0200 |
commit | 133aec6aa2e6b4226479d63e41231ec96f0b315a (patch) | |
tree | 5fc87497a824ef2ab3d5b391e234fabd43d3d8f5 /x11-misc/xflux-gui | |
parent | app-metrics/prometheus-mysqld_exporter: Rev bump (diff) | |
download | gentoo-133aec6aa2e6b4226479d63e41231ec96f0b315a.tar.gz gentoo-133aec6aa2e6b4226479d63e41231ec96f0b315a.tar.bz2 gentoo-133aec6aa2e6b4226479d63e41231ec96f0b315a.zip |
x11-misc/xflux-gui: New package
Closes: https://bugs.gentoo.org/606130
Closes: https://github.com/gentoo/gentoo/pull/731
Diffstat (limited to 'x11-misc/xflux-gui')
-rw-r--r-- | x11-misc/xflux-gui/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xflux-gui/metadata.xml | 12 | ||||
-rw-r--r-- | x11-misc/xflux-gui/xflux-gui-1.1.10.ebuild | 37 |
3 files changed, 50 insertions, 0 deletions
diff --git a/x11-misc/xflux-gui/Manifest b/x11-misc/xflux-gui/Manifest new file mode 100644 index 000000000000..71d161c441f2 --- /dev/null +++ b/x11-misc/xflux-gui/Manifest @@ -0,0 +1 @@ +DIST xflux-gui-1.1.10.tar.gz 18828 BLAKE2B a249533ace4ff6293ff9b99a455943c1f099628bec97c2730473f8a9550ba38e78e775a10a0f77c160180f5f5d354ac8c8ac924c1a2eb9f48861491583c93285 SHA512 5e8057e47fe2cc8a59758e9ab6b3adc6a8281b42f6b517e3e1327e5470c82a326c853d5d389fd62f6d6c439be4ab70a6c8771ece87e5b8c90a33775f8b7cd54d diff --git a/x11-misc/xflux-gui/metadata.xml b/x11-misc/xflux-gui/metadata.xml new file mode 100644 index 000000000000..54d5423c4060 --- /dev/null +++ b/x11-misc/xflux-gui/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>ck+gentoo@bl4ckb0x.de</email> + <name>Conrad Kostecki</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/xflux-gui/xflux-gui-1.1.10.ebuild b/x11-misc/xflux-gui/xflux-gui-1.1.10.ebuild new file mode 100644 index 000000000000..b83597ea10c3 --- /dev/null +++ b/x11-misc/xflux-gui/xflux-gui-1.1.10.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 gnome2-utils + +DESCRIPTION="A GUI for f.lux" +HOMEPAGE="https://justgetflux.com/" +SRC_URI="https://github.com/xflux-gui/fluxgui/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="-* ~amd64 ~x86" +LICENSE="MIT" +SLOT="0" + +RDEPEND="dev-libs/libappindicator:2[python,${PYTHON_USEDEP}] + dev-python/gconf-python[${PYTHON_USEDEP}] + dev-python/pexpect[${PYTHON_USEDEP}] + dev-python/pygtk[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + gnome-base/libglade + x11-libs/libXxf86vm + x11-misc/xflux" + +S="${WORKDIR}/fluxgui-${PV}" + +pkg_postinst() { + # Update Gnome icon cache on install + gnome2_icon_cache_update +} + +pkg_postrm() { + # Update Gnome icon cache on uninstall + gnome2_icon_cache_update +} |