blob: 8ceb12041903443b2c4ea04e8e3570dd2f52b9f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Modern QStyle for desktop Qt6 applications."
HOMEPAGE="https://github.com/oclero/qlementine"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/oclero/qlementine.git"
else
SRC_URI="
https://github.com/oclero/qlementine/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://deps.gentoo.zip/dev-qt/qlementine/${P}-build-as-shared-lib.patch
"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="
dev-qt/qtbase:6[widgets]
dev-qt/qtsvg:6
"
DEPEND="${RDEPEND}"
PATCHES=(
"${DISTDIR}/${P}-build-as-shared-lib.patch"
)
|