blob: b96879079df3d517d3c523b4d336aff9ef01be34 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 2023-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Drop in replacement for ueberzug written in C++"
HOMEPAGE="https://github.com/jstkdng/ueberzugpp/"
SRC_URI="
https://github.com/jstkdng/ueberzugpp/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz
"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64"
IUSE="X opencv opengl wayland xcb-errors"
REQUIRED_USE="xcb-errors? ( X )"
RDEPEND="
dev-cpp/tbb:=
dev-libs/glib:2
dev-libs/libfmt:=
dev-libs/openssl:=
dev-libs/spdlog:=
media-gfx/chafa
media-libs/libsixel
media-libs/vips:=
X? (
x11-libs/libxcb:=
x11-libs/xcb-util-image
xcb-errors? ( x11-libs/xcb-util-errors )
)
opencv? ( media-libs/opencv:= )
opengl? ( media-libs/libglvnd )
wayland? ( dev-libs/wayland )
!media-gfx/ueberzug
"
DEPEND="
${RDEPEND}
dev-cpp/cli11
dev-cpp/ms-gsl
dev-cpp/nlohmann_json
X? ( x11-base/xorg-proto )
wayland? ( dev-libs/wayland-protocols )
"
BDEPEND="
wayland? (
dev-util/wayland-scanner
kde-frameworks/extra-cmake-modules
)
"
src_configure() {
# TODO?: wayfire plugin is skipped for now (needs wlroots which is
# likely to be messier), but could be handled if there is a demand
local mycmakeargs=(
-DENABLE_OPENCV=$(usex opencv)
-DENABLE_OPENGL=$(usex opengl)
-DENABLE_TURBOBASE64=no # not packaged
-DENABLE_WAYLAND=$(usex wayland)
-DENABLE_X11=$(usex X)
-DENABLE_XCB_ERRORS=$(usex xcb-errors)
-DFETCHCONTENT_FULLY_DISCONNECTED=yes
)
cmake_src_configure
}
|