blob: 068590d540d3fa2e79362d04f6edef6e2aabec6f (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit gnome.org gnome2-utils meson readme.gentoo-r1 xdg
DESCRIPTION="Screenshot utility for GNOME"
HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-screenshot"
LICENSE="GPL-2+"
SLOT="0"
IUSE="X"
KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
DEPEND="
X? (
x11-libs/libX11
x11-libs/libXext
)
>=dev-libs/glib-2.35.1:2[dbus]
>=x11-libs/gtk+-3.12.0:3
>=gui-libs/libhandy-1:1=
"
RDEPEND="${DEPEND}
>=gnome-base/gsettings-desktop-schemas-0.1.0
"
BDEPEND="
dev-libs/appstream-glib
dev-libs/libxml2:2
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
x11-base/xorg-proto
"
PATCHES=(
# Fix HiDPI handling in X11 fallback
# https://gitlab.gnome.org/GNOME/gnome-screenshot/-/issues/128
"${FILESDIR}"/${PN}-40.0-fix-hidpi.patch
"${FILESDIR}"/${P}-fix-meson-0.61-build.patch
"${FILESDIR}"/${P}-build-Use-GNOME-module-post_install.patch
)
DOC_CONTENTS="${P} saves screenshots in ~/Pictures/ and defaults to
non-interactive mode when launched from a terminal. If you want to choose
where to save the screenshot, run 'gnome-screenshot --interactive'"
src_configure() {
local emesonargs=(
$(meson_feature X x11)
)
meson_src_configure
}
src_install() {
meson_src_install
readme.gentoo_create_doc
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
readme.gentoo_print_elog
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}
|