diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-08-11 18:36:47 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-08-11 18:36:47 +0200 |
commit | 70e9ca294d7621787188386bf1aa5cdd3617be47 (patch) | |
tree | 59ccadded8093ae7387747a089c8c4380f784e19 /x11-themes | |
parent | app-containers/docker-compose: drop 2.20.2 (diff) | |
download | gentoo-70e9ca294d7621787188386bf1aa5cdd3617be47.tar.gz gentoo-70e9ca294d7621787188386bf1aa5cdd3617be47.tar.bz2 gentoo-70e9ca294d7621787188386bf1aa5cdd3617be47.zip |
x11-themes/QGnomePlatform: add 0.9.2
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/QGnomePlatform/Manifest | 1 | ||||
-rw-r--r-- | x11-themes/QGnomePlatform/QGnomePlatform-0.9.2.ebuild | 36 |
2 files changed, 37 insertions, 0 deletions
diff --git a/x11-themes/QGnomePlatform/Manifest b/x11-themes/QGnomePlatform/Manifest index e82a2aef98bc..f025a2189ea7 100644 --- a/x11-themes/QGnomePlatform/Manifest +++ b/x11-themes/QGnomePlatform/Manifest @@ -1,2 +1,3 @@ DIST QGnomePlatform-0.9.0.tar.gz 43828 BLAKE2B aa4d1d9269c444d95e7d25e0e0206a63adf0a1be8658624b61d5e5fe55d3714e38a66ecbb6ea19ebf0cc9ee1ed4fb5cf4f29a84e7052c1c2475deca395794cd3 SHA512 7671b0659959ede79e47a821481a14ed861418f364d3d0b48789b1edfcf3b84f2aa658e3afce95730a841fdb018ebad38474a83268bd43b1ccfb653ef7e314aa DIST QGnomePlatform-0.9.1.tar.gz 46387 BLAKE2B b62e6c6ca70e7e5a1a611d0a4af022aae0cf4096db51e00b2b45cf6ea655b703cd936336233c71038b82708ec79a202f436f5a29680ada6b4026958604c83670 SHA512 1b8f5d3241bbaa830858dc256285f91023a6e9f664c9920ebfdaf8bdc759e3c958a22bc52eb3559a86d96007118b8ce5efa900167feb491a60232b365c00784c +DIST QGnomePlatform-0.9.2.tar.gz 46346 BLAKE2B a71a2c159d279e08929d2b1e1c5a7026d576d423b0dae40191e5e60d093c56a2cdcb7ade836566679903751435cb1923f5faea51e7c177bcdb0c1eaff30cf9c3 SHA512 a90caf521eca3d3213b10367b49226e594bd81c78be1198e4d590d44b2026e773319f6784cf1eb9528eee3214ed108ab49d1b85d263a26732873c859fa6e7bc6 diff --git a/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2.ebuild b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2.ebuild new file mode 100644 index 000000000000..737aab9f339d --- /dev/null +++ b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit cmake + +DESCRIPTION="A Qt Platform Theme aimed to accommodate GNOME settings" +HOMEPAGE="https://github.com/FedoraQt/QGnomePlatform" +SRC_URI="https://github.com/FedoraQt/QGnomePlatform/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="minimal wayland" + +RDEPEND=" + dev-qt/qtdbus:5= + >=dev-qt/qtquickcontrols2-5.15.2:5= + >=dev-qt/qtwidgets-5.15.2:5= + !minimal? ( kde-frameworks/qqc2-desktop-style:5= ) + wayland? ( dev-qt/qtwayland:5= ) + gnome-base/gsettings-desktop-schemas + sys-apps/xdg-desktop-portal + x11-libs/gtk+:3 + >=x11-themes/adwaita-qt-1.4.2 +" +DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DUSE_QT6=false + -DDISABLE_DECORATION_SUPPORT="$(usex wayland false true)" + ) + cmake_src_configure +} |