diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-04-15 19:08:49 +0000 |
---|---|---|
committer | Jimi Huotari <chiitoo@gentoo.org> | 2023-04-18 01:06:00 +0300 |
commit | 06bfe9699d41a6cf811af12cb56721314ff36fe7 (patch) | |
tree | aae38a61d2c0ab2d60370bee3c33649e652091cb /x11-themes | |
parent | lxqt-base/lxqt-sudo: add 1.3.0 (diff) | |
download | gentoo-06bfe9699d41a6cf811af12cb56721314ff36fe7.tar.gz gentoo-06bfe9699d41a6cf811af12cb56721314ff36fe7.tar.bz2 gentoo-06bfe9699d41a6cf811af12cb56721314ff36fe7.zip |
x11-themes/lxqt-themes: add 1.3.0
Signed-off-by: Michael Vetter <jubalh@iodoru.org>
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/lxqt-themes/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/lxqt-themes/lxqt-themes-1.3.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/x11-themes/lxqt-themes/Manifest b/x11-themes/lxqt-themes/Manifest index 05fa9f5675bc..fbfb6635e231 100644 --- a/x11-themes/lxqt-themes/Manifest +++ b/x11-themes/lxqt-themes/Manifest @@ -1 +1,2 @@ DIST lxqt-themes-1.2.0.tar.xz 26646616 BLAKE2B fdb5e0879af6a2e68fb95e58599f0d9eadc3e935e20ed46a4c9da66859b28219896222d7102bddc2c7f600aff3dd72e37971b4143b286e87875296b499c35e31 SHA512 d43ff614a2b91436539b7cd7891d6ad5e968b49dfc44a7c1d9196f47827365b9a8377dd6d7d76c0e43ea09cee0b99e274b2663eaac0c4742559e70f9cbe6ebba +DIST lxqt-themes-1.3.0.tar.xz 26647512 BLAKE2B 7c00d77c17b34c420aaf2dc835fa540173dd69d137793d8304600b21ac0860d144f845d8f2f18079e37cb90c708a9b62ddb0cf7ee323e541ea9eb10b5a2cd68d SHA512 b07bd6223b5d39bc728722bfe88698692d283b8fb5af302c0c74f1aca32fc8d53d904fe3ad60e3e0d8d81d33fc1404856e2d6d360a71f3ec3d1f6e602a2941e8 diff --git a/x11-themes/lxqt-themes/lxqt-themes-1.3.0.ebuild b/x11-themes/lxqt-themes/lxqt-themes-1.3.0.ebuild new file mode 100644 index 000000000000..00ab08fb1657 --- /dev/null +++ b/x11-themes/lxqt-themes/lxqt-themes-1.3.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg-utils + +DESCRIPTION="LXQt Themes" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.13.0" + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |