Diff sysprof-capture-3.36.0-r1 with a sysprof-capture-3.48.0
/usr/portage/dev-util/sysprof-capture/sysprof-capture-3.48.0.ebuild 2025-07-29 16:22:14.256455019 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2025 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 |
GNOME_ORG_MODULE="sysprof" |
6 | 6 | |
7 |
inherit gnome.org meson-multilib systemd |
|
7 |
inherit dot-a gnome.org meson-multilib systemd |
|
8 | 8 | |
9 | 9 |
DESCRIPTION="Static library for sysprof capture data generation" |
10 | 10 |
HOMEPAGE="http://sysprof.com/" |
11 | 11 | |
12 | 12 |
LICENSE="GPL-3+ GPL-2+" |
13 |
SLOT="3" |
|
14 |
KEYWORDS="amd64 ~arm64 ~loong x86" |
|
15 |
IUSE="" |
|
13 |
SLOT="4" |
|
14 |
KEYWORDS="amd64 ~arm64 x86" |
|
16 | 15 | |
17 |
RDEPEND=">=dev-libs/glib-2.61.3:2[${MULTILIB_USEDEP}]" |
|
16 |
RDEPEND="" |
|
18 | 17 |
DEPEND="${RDEPEND}" |
19 | 18 |
BDEPEND=" |
20 | 19 |
dev-util/gdbus-codegen |
... | ... | |
22 | 21 |
virtual/pkgconfig |
23 | 22 |
" |
24 | 23 | |
24 |
src_configure() { |
|
25 |
lto-guarantee-fat |
|
26 |
meson-multilib_src_configure |
|
27 |
} |
|
28 | ||
25 | 29 |
multilib_src_configure() { |
26 | 30 |
local emesonargs=( |
27 |
-Denable_gtk=false |
|
31 |
-Dgtk=false |
|
28 | 32 |
-Dlibsysprof=false |
29 |
-Dwith_sysprofd=none |
|
33 |
-Dinstall-static=true |
|
34 |
-Dsysprofd=none |
|
30 | 35 |
-Dsystemdunitdir=$(systemd_get_systemunitdir) |
31 | 36 |
# -Ddebugdir |
32 | 37 |
-Dhelp=false |
33 | 38 |
-Dlibunwind=false |
39 |
-Dtools=false |
|
40 |
-Dtests=false |
|
41 |
-Dexamples=false |
|
42 |
-Dagent=false |
|
34 | 43 |
) |
35 | 44 |
meson_src_configure |
36 | 45 |
} |
46 | ||
47 |
multilib_src_install_all() { |
|
48 |
einstalldocs |
|
49 |
strip-lto-bytecode |
|
50 |
} |