diff options
Diffstat (limited to 'x11-misc/xflux')
-rw-r--r-- | x11-misc/xflux/Manifest | 3 | ||||
-rw-r--r-- | x11-misc/xflux/metadata.xml | 5 | ||||
-rw-r--r-- | x11-misc/xflux/xflux-20130927-r1.ebuild | 32 |
3 files changed, 39 insertions, 1 deletions
diff --git a/x11-misc/xflux/Manifest b/x11-misc/xflux/Manifest index 5c90d5dd1f0e..539eccfe2584 100644 --- a/x11-misc/xflux/Manifest +++ b/x11-misc/xflux/Manifest @@ -1,4 +1,5 @@ DIST xflux-20130927.tar.gz 335911 BLAKE2B 56e683a6969f129c7dcdfd4b13a23523ca5ce3d19feae947a654ca02437e372bd998a71048d00c5b7bf653eb9fa57c696b8d5bb1b3dfd75a0b17e9213368c1bd SHA512 c35003b9cc6bc95f6ce98efc2e69ea94c99ed31671ec5d1f5919294edd7e504d23aa1df29ec0f1d1c68c4ceafbcd386e1207ef4c9957d7a5079ce96c2ac6d924 DIST xflux64-20130927.tar.gz 339845 BLAKE2B 15751b75b7c0603044c4e7e98a9b23ceab7e245b12833ed1b6e8bc1d1734c5838777b7561d035bdf6d6d781105cc48dbda6c262895c310cf9710529a088b0a97 SHA512 6204558b8fa1063ee19fe444f740ab4ddfdbc412459b2f5cea94ddbf11818e0c9bff7e066a4958c1ab5c160b1aedcd18fa7fc4cd800a67c5d51ad1206f203e52 +EBUILD xflux-20130927-r1.ebuild 639 BLAKE2B 0f40bdd0f6c7e6df81a78f6cea1892f4fecb833ab88e4c698f453643d25007536eaf2033382e115b8cb0b2b1360f70ca7e0c88d47c217a22e9f66df05ccd79c1 SHA512 cda72609c5434435b92ce9ca2e9dd0eae002631c13188031aecb5046ef21ebc3b37f348df64be8f990bf4828b1ed793b94f268058c84615c379ad7955473ab29 EBUILD xflux-20130927.ebuild 652 BLAKE2B b0d542127d818f4f99e7f8cdd4dfb8a4dcfa06bb1a5abfd9972c5ed900d4b744cb229246a945fd296a2dc85ac9985be88768226057cb7221e41a5d0e8cb053cf SHA512 25ea901e469797293fcee0db63a415efa6f156c574f2174def009c71e91e9d36cf0560b37c21cc5d814ddf9a71b1a4ee2c124967209e38ad5a25fe4c0dcd73bd -MISC metadata.xml 369 BLAKE2B 99bc89ce5469bce6e867ce73fa66fee3fa41bf2166453c3606b03b1f3879f837c46d41068430e217a7ab4b0d0096650762095ffe5f13382ab055e5815f90ebb1 SHA512 5d49b66d13a6055421fc9e9a180d6d5657e367cfdc6e74a13c16955cc1bfda765605f0ab7c0d7d5f67ce847e09306fef52a2fb621eccdf358e5d21e82129a2b3 +MISC metadata.xml 621 BLAKE2B d4a3d03b35bde34b0b6b1af8518d3b18486876766037a4bebcadeea32f247f2660c970d89638e91315dd7eff42ccf818bb868c92ea94e52db3793cc1285008e2 SHA512 9f2ae158aea2c8d2e0191c5df7825b0b6b802a564637ccfe8f431cd0dda9569a7af0c08925e804b2139de1ba1a8c346db0b305273b0f54fc1a4581bcdb959718 diff --git a/x11-misc/xflux/metadata.xml b/x11-misc/xflux/metadata.xml index 54d5423c4060..4eae2cce3dd6 100644 --- a/x11-misc/xflux/metadata.xml +++ b/x11-misc/xflux/metadata.xml @@ -9,4 +9,9 @@ <email>proxy-maint@gentoo.org</email> <name>Proxy Maintainers</name> </maintainer> + <longdescription> + F.lux makes your computer screen look like the room you're in, all the time. + When the sun sets, it makes your computer look like your indoor lights. + In the morning, it makes things look like sunlight again. + </longdescription> </pkgmetadata> diff --git a/x11-misc/xflux/xflux-20130927-r1.ebuild b/x11-misc/xflux/xflux-20130927-r1.ebuild new file mode 100644 index 000000000000..49418c455247 --- /dev/null +++ b/x11-misc/xflux/xflux-20130927-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Makes the color of your computer's display adapt to the time of the day" +HOMEPAGE="https://justgetflux.com/" +SRC_URI=" + amd64? ( https://justgetflux.com/linux/${PN}64.tgz -> ${PN}64-${PV}.tar.gz ) + x86? ( https://justgetflux.com/linux/${PN}-pre.tgz -> ${P}.tar.gz ) +" + +KEYWORDS="-* ~amd64 ~x86" +LICENSE="f.lux" +SLOT="0" + +RESTRICT="bindist mirror" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXrandr + x11-libs/libXxf86vm +" + +S="${WORKDIR}" + +QA_PREBUILT="usr/bin/xflux" + +src_install() { + dobin xflux +} |