diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-11-10 17:38:32 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-11-10 17:39:00 +0100 |
commit | 55bd3be5fcacad3e535015abc9a11db2987691d6 (patch) | |
tree | a626d9e6c51b32b5ba75bad0c9c3938bb72a7ac9 /x11-themes/QGnomePlatform | |
parent | x11-themes/adwaita-qt: Support qt6 (diff) | |
download | gentoo-55bd3be5fcacad3e535015abc9a11db2987691d6.tar.gz gentoo-55bd3be5fcacad3e535015abc9a11db2987691d6.tar.bz2 gentoo-55bd3be5fcacad3e535015abc9a11db2987691d6.zip |
x11-themes/QGnomePlatform: Support qt6
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'x11-themes/QGnomePlatform')
-rw-r--r-- | x11-themes/QGnomePlatform/QGnomePlatform-0.9.2-r4.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2-r4.ebuild b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2-r4.ebuild new file mode 100644 index 000000000000..2b400f2259e0 --- /dev/null +++ b/x11-themes/QGnomePlatform/QGnomePlatform-0.9.2-r4.ebuild @@ -0,0 +1,71 @@ +# 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="+qt5 qt6 minimal wayland" + +RDEPEND=" + qt5? ( + 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= ) + ) + qt6? ( + dev-qt/qtbase:6=[dbus,gui,widgets] + wayland? ( dev-qt/qtwayland:6= ) + ) + 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() { + if use qt5; then + BUILD_DIR="${WORKDIR}/${PN}_qt5" + local mycmakeargs=( + -DUSE_QT6=OFF + -DDISABLE_DECORATION_SUPPORT="$(usex wayland false true)" + ) + cmake_src_configure + fi + if use qt6; then + BUILD_DIR="${WORKDIR}/${PN}_qt6" + local mycmakeargs=( + -DUSE_QT6=ON + -DDISABLE_DECORATION_SUPPORT="$(usex wayland false true)" + ) + cmake_src_configure + fi +} + +src_compile() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake_src_compile -C "${_d}" + done +} + +src_install() { + local _d + for _d in "${WORKDIR}"/${PN}_qt*; do + cmake_src_install -C "${_d}" + done + + # https://github.com/FedoraQt/QGnomePlatform/pull/150#issuecomment-1689693729 + exeinto /etc/X11/xinit/xinitrc.d/ + doexe "${FILESDIR}/90-qgnomeplatform" +} |