public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/kvantum/
Date: Thu, 22 May 2025 15:36:54 +0000 (UTC)	[thread overview]
Message-ID: <1747928196.4e8d3e904ab35656d10b0a389f2d2885b3ed8b35.asturm@gentoo> (raw)

commit:     4e8d3e904ab35656d10b0a389f2d2885b3ed8b35
Author:     Johannes Huber <johu <AT> gmx <DOT> de>
AuthorDate: Wed May 21 18:53:06 2025 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu May 22 15:36:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8d3e90

x11-themes/kvantum: add 1.1.5

Closes: https://bugs.gentoo.org/949317
Closes: https://bugs.gentoo.org/743052
Signed-off-by: Johannes Huber <johu <AT> gmx.de>
Part-of: https://github.com/gentoo/gentoo/pull/42191
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 x11-themes/kvantum/Manifest             |  1 +
 x11-themes/kvantum/kvantum-1.1.5.ebuild | 76 +++++++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/x11-themes/kvantum/Manifest b/x11-themes/kvantum/Manifest
index 8422b5b76c51..79ed6ec32c91 100644
--- a/x11-themes/kvantum/Manifest
+++ b/x11-themes/kvantum/Manifest
@@ -1 +1,2 @@
 DIST kvantum-1.1.2.tar.gz 3041246 BLAKE2B 7587adb7858fad2e4e3cf953fd4419d8a518d0e4b641afc426bc0c5417b91ff2d174af9c1e6d198d8eb979130f4704fb475bc0a84766957500e8913b6738706d SHA512 71c714df902ac4d7ac707e26842e2227eb7eeddad03af0bbd1ab1fcfa132204a9dd0453eafac3000cd3187dcb4ff03d64f01674c442f5a225e0c9b3652277f0e
+DIST kvantum-1.1.5.tar.gz 3246160 BLAKE2B 9f044587810f5d369ea5f88e22f2a9e0a4ce60e163d11848762a5eff62561f3d5cfc490b2f21cccd8deb82572367a5d062f9b11c30d25c5cb131d73de4dcea5c SHA512 14552236c05af0d7a075d58d4ba5e7f81bd89e7f7b06dee81aed2814e7c34ec359c63fadf562735b4fce30a07ce1d9d55398f694fb3327b60fa1386381e2243c

diff --git a/x11-themes/kvantum/kvantum-1.1.5.ebuild b/x11-themes/kvantum/kvantum-1.1.5.ebuild
new file mode 100644
index 000000000000..cee92e390bfe
--- /dev/null
+++ b/x11-themes/kvantum/kvantum-1.1.5.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# minimum taken from Kvantum/style/CMakeLists.txt
+# increased downstream to ensure sane upgrades
+QTMIN="6.8.2"
+KFMIN="6.13.0"
+inherit cmake multibuild xdg
+
+DESCRIPTION="SVG-based theme engine for Qt, KDE Plasma and LXQt"
+HOMEPAGE="https://github.com/tsujan/Kvantum"
+SRC_URI="https://github.com/tsujan/${PN^}/archive/V${PV}.tar.gz -> ${P}.tar.gz"
+S=${WORKDIR}/${PN^}-${PV}/${PN^}
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+IUSE="kde qt5"
+
+RESTRICT="test" # no tests
+
+RDEPEND="
+	>=dev-qt/qtbase-${QTMIN}:6[gui,widgets,X]
+	>=dev-qt/qtsvg-${QTMIN}:6
+	x11-libs/libX11
+	kde? ( >=kde-frameworks/kwindowsystem-${KFMIN}:6 )
+	qt5? (
+		dev-qt/qtcore:5
+		dev-qt/qtgui:5
+		dev-qt/qtsvg:5
+		dev-qt/qtwidgets:5
+		dev-qt/qtx11extras:5
+	)
+"
+DEPEND="${RDEPEND}
+	x11-base/xorg-proto
+"
+BDEPEND="
+	dev-qt/qttools:6[linguist]
+	qt5? ( dev-qt/linguist-tools:5 )
+"
+
+pkg_setup() {
+	MULTIBUILD_VARIANTS=( $(usev qt5) qt6 )
+}
+
+src_configure() {
+	my_src_configure() {
+		local mycmakeargs=(
+			-DENABLE_QT4=OFF
+		)
+		if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
+			mycmakeargs+=(
+				-DENABLE_QT5=ON
+			)
+		elif [[ ${MULTIBUILD_VARIANT} = qt6 ]]; then
+			mycmakeargs+=(
+				-DENABLE_QT5=OFF
+				-DWITHOUT_KF=$(usex !kde)
+			)
+		fi
+		cmake_src_configure
+	}
+
+	multibuild_foreach_variant my_src_configure
+}
+
+src_compile() {
+	multibuild_foreach_variant cmake_src_compile
+}
+
+src_install() {
+	multibuild_foreach_variant cmake_src_install
+}


             reply	other threads:[~2025-05-22 15:36 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-22 15:36 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-22 15:36 [gentoo-commits] repo/gentoo:master commit in: x11-themes/kvantum/ Andreas Sturmlechner
2024-09-25 21:21 Andreas Sturmlechner
2024-09-25 21:21 Andreas Sturmlechner
2024-09-25 21:21 Andreas Sturmlechner
2024-07-13 15:25 Arthur Zamarin
2024-06-13 15:50 Arthur Zamarin
2024-03-07 23:24 Andreas Sturmlechner
2024-01-20 12:51 Sam James
2023-02-22 19:56 Sam James
2023-01-12 20:42 Andreas Sturmlechner
2022-12-27 13:55 Andreas Sturmlechner
2022-02-21  9:48 Andreas Sturmlechner
2022-02-21  9:48 Andreas Sturmlechner
2022-02-16 13:49 Andreas Sturmlechner
2022-01-13  2:00 Georgy Yakovlev
2022-01-09 19:36 Andreas Sturmlechner
2021-12-17 13:28 Andreas Sturmlechner
2021-12-17 13:28 Andreas Sturmlechner
2021-12-17 12:45 Andreas Sturmlechner
2021-03-14 10:16 Ian Whyman
2021-02-27  9:46 Ian Whyman
2020-10-31 21:17 Georgy Yakovlev
2020-09-19  9:37 Ian Whyman
2020-06-27 10:14 Ian Whyman
2020-04-10  8:25 Ian Whyman
2020-01-12 21:16 Ian Whyman
2020-01-09 19:39 Ian Whyman
2019-12-29 22:00 Ian Whyman
2019-12-08 20:34 Ian Whyman
2019-12-08 19:50 Ian Whyman
2019-12-08 19:15 Ian Whyman
2019-10-28 16:33 Ian Whyman
2019-05-16  8:11 Michael Palimaka
2019-05-16  8:11 Michael Palimaka
2019-04-07 10:33 Ian Whyman
2019-03-24 17:38 Ian Whyman
2018-12-26 21:44 Georgy Yakovlev
2018-04-11 18:04 Ian Whyman
2017-11-11 11:31 Ian Whyman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1747928196.4e8d3e904ab35656d10b0a389f2d2885b3ed8b35.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox