diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-10-18 10:07:11 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-10-18 10:07:33 +0300 |
commit | ca3bac80d6fb1c43179c32605d9574170631382e (patch) | |
tree | 9aea992eaf07d31b445e9949b7b64f84c68a2ada /x11-themes | |
parent | sys-process/evisum: bump to 0.5.7 (diff) | |
download | gentoo-ca3bac80d6fb1c43179c32605d9574170631382e.tar.gz gentoo-ca3bac80d6fb1c43179c32605d9574170631382e.tar.bz2 gentoo-ca3bac80d6fb1c43179c32605d9574170631382e.zip |
x11-themes/e-flat-theme: bump to 2020-10-18 snapshot
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/e-flat-theme/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild | 43 |
2 files changed, 44 insertions, 0 deletions
diff --git a/x11-themes/e-flat-theme/Manifest b/x11-themes/e-flat-theme/Manifest index 7859fc4a6fba..c8526a0b3755 100644 --- a/x11-themes/e-flat-theme/Manifest +++ b/x11-themes/e-flat-theme/Manifest @@ -1 +1,2 @@ DIST e-flat-theme-0_pre20200824.edj 45979784 BLAKE2B 8b9d2ddba3c6cb213ded3768625ca900ed10292c918918afa9b29f2de83696fa83dc8c93865a9b5cb916875371d573012df4d5e734dc579b28f9e9cbceb475e0 SHA512 90774cd48e0f3de9fe1609836272de692339bd935ec1379a943f2bfa04f56a9b2cd091f5860eb570606ad517e3f01b6ae41c99caeb86b5f2755114e608736c15 +DIST e-flat-theme-0_pre20201018.edj 45600078 BLAKE2B 28f1949aa1bb316726d81fbc3fc056b29d101528be55bf26ea7e4dd8e1f96410b6d5d2c6c7d4e7742d124709a9c968cf86507dd0392aa4a1ed8142a6c0dd0c69 SHA512 def07d7d92c8dd05d0cefe6205c3af2b67ab81ba9472b070dc5acd3cce60e9f6aa1e374086efcad787aedfc4d755818f7d170e1139c104804e0154921d03ca8b diff --git a/x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild b/x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild new file mode 100644 index 000000000000..1ce5c3e1babc --- /dev/null +++ b/x11-themes/e-flat-theme/e-flat-theme-0_pre20201018.ebuild @@ -0,0 +1,43 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A modern, flat theme for Enlightenment WM" +HOMEPAGE="https://www.enlightenment.org/ https://phab.enlightenment.org/T6726" +SRC_URI="https://dev.gentoo.org/~juippis/distfiles/${P}.edj" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="amd64 ~arm ~ppc x86" + +RDEPEND="x11-wm/enlightenment" + +S="${WORKDIR}" + +src_prepare() { + default + + # doins doesn't allow installing straight from DISTDIR. + cp "${DISTDIR}"/${P}.edj . || die "Failed to prepare theme file." +} + +src_configure() { :; } +src_compile() { :; } + +src_install() { + insinto /usr/share/elementary/themes/ + newins ${P}.edj flat-0.edj +} + +pkg_postinst() { + elog "You'll find e-flat-theme under System themes in theme selector." + + if [[ -n ${REPLACING_VERSIONS} ]]; then + ewarn "" + ewarn "You're updating flat-0 theme. Please reload Enlightenment" + ewarn "through Menu -> Enlightenment -> Restart, or by issuing" + ewarn " enlightenment -restart" + ewarn "" + fi +} |