public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/kvantum/
Date: Sat, 20 Jan 2024 12:51:03 +0000 (UTC)	[thread overview]
Message-ID: <1705754426.d2cfc8a6e4904941e59c7949815be57744c72adb.sam@gentoo> (raw)

commit:     d2cfc8a6e4904941e59c7949815be57744c72adb
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sun Dec 31 14:02:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 20 12:40:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2cfc8a6

x11-themes/kvantum: add 1.0.10

Closes: https://bugs.gentoo.org/892878
Closes: https://bugs.gentoo.org/914386
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34580
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/x11-themes/kvantum/Manifest b/x11-themes/kvantum/Manifest
index ca645e962b05..7bd309f193b6 100644
--- a/x11-themes/kvantum/Manifest
+++ b/x11-themes/kvantum/Manifest
@@ -1 +1,2 @@
+DIST kvantum-1.0.10.tar.gz 2969117 BLAKE2B f2e9cc954a3a6cf4cac77d1e0b5a455faf95927cb78101113d99bf9a8e3d1875dff248909c1d95af028d5a369b517ad501e298e2c54fbd785d254afd7e30e465 SHA512 fb31f424a16c37eafaaa0a1cdddde165bcaa58ed6ea3ef76e77d689c2b8b47e516a651d066712eaf14b1344e4b30955ce6c955367caf25d51f2aaa2c8970b0fd
 DIST kvantum-1.0.7.tar.gz 2975088 BLAKE2B 0c2408cc56b40dca5659d39a67bce521ddf72477d855fea10268e44bb40a2498a4f5c09f399626002d79e850962ccd45877cd99fe9cdbb10fb98d19d27b389de SHA512 327a9dfec5725230a59f2ead811c7e7223c3c1ca442caec500ad7b031877d2f323adeffbad034047728bd94570bd03a37eeb650622cce149b84bd6a219e6d1e0

diff --git a/x11-themes/kvantum/kvantum-1.0.10.ebuild b/x11-themes/kvantum/kvantum-1.0.10.ebuild
new file mode 100644
index 000000000000..9c13749cad81
--- /dev/null
+++ b/x11-themes/kvantum/kvantum-1.0.10.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QT5MIN="5.15.0"
+QT6MIN="6.2.0"
+KF5MIN="5.82.0"
+
+inherit cmake xdg
+
+DESCRIPTION="SVG-based theme engine for Qt5, 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="qt6"
+
+RESTRICT="test" # no tests
+
+CDEPEND="
+	>=dev-qt/qtcore-${QT5MIN}:5
+	>=dev-qt/qtgui-${QT5MIN}:5
+	>=dev-qt/qtsvg-${QT5MIN}:5
+	>=dev-qt/qtwidgets-${QT5MIN}:5
+	>=dev-qt/qtx11extras-${QT5MIN}:5
+	>=kde-frameworks/kwindowsystem-${KF5MIN}:5
+	x11-libs/libX11
+	qt6? (
+		>=dev-qt/qtbase-${QT6MIN}:6[gui,widgets]
+		>=dev-qt/qtsvg-${QT6MIN}:6
+	)
+"
+DEPEND="
+	${CDEPEND}
+	x11-base/xorg-proto
+"
+RDEPEND="
+	${CDEPEND}
+"
+BDEPEND="
+	dev-qt/linguist-tools:5
+	qt6? ( dev-qt/qttools:6[linguist] )
+"
+
+BUILD_DIR_QT6="${S}_qt6"
+
+src_configure() {
+	local mycmakeargs=(
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=ON
+		-DWITHOUT_KF=OFF
+	)
+	cmake_src_configure
+
+	local mycmakeargs=(
+		-DENABLE_QT4=OFF
+		-DENABLE_QT5=OFF
+		-DWITHOUT_KF=ON
+	)
+	use qt6 && BUILD_DIR="${BUILD_DIR_QT6}" cmake_src_configure
+}
+
+src_compile() {
+	cmake_src_compile
+	use qt6 && BUILD_DIR="${BUILD_DIR_QT6}" cmake_src_compile
+}
+
+src_install() {
+	cmake_src_install
+	use qt6 && BUILD_DIR="${BUILD_DIR_QT6}" cmake_src_install
+
+	einstalldocs
+}


             reply	other threads:[~2024-01-20 12:51 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-20 12:51 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-25 21:21 [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-07-13 15:25 Arthur Zamarin
2024-06-13 15:50 Arthur Zamarin
2024-03-07 23:24 Andreas Sturmlechner
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=1705754426.d2cfc8a6e4904941e59c7949815be57744c72adb.sam@gentoo \
    --to=sam@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