blob: 9edb962ea42d33ea59649815b7e1022a06596a01 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="Powerful yet simple to use screenshot software"
HOMEPAGE="https://flameshot.org https://github.com/flameshot-org/flameshot"
SRC_URI="https://github.com/flameshot-org/flameshot/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0 Free-Art-1.3 GPL-3+"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
=dev-qt/qtsingleapplication-2.6*[qt5(+),X]
dev-qt/qtwidgets:5
dev-qt/qtsvg:5
dev-qt/qtnetwork:5
dev-qt/qtdbus:5
sys-apps/dbus
dev-libs/spdlog:=
"
BDEPEND="
dev-qt/linguist-tools:5
"
RDEPEND="${DEPEND}"
src_prepare() {
rm -r external/spdlog || die
rm -r external/singleapplication || die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DUSE_EXTERNAL_SPDLOG=1
-DUSE_EXTERNAL_SINGLEAPPLICATION=1
-DENABLE_CACHE=0
)
cmake_src_configure
}
|