blob: 05e77806c2e9f18c9170f58b58f8bda064d00019 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org gnome2-utils meson xdg
DESCRIPTION="A map application for GNOME"
HOMEPAGE="https://wiki.gnome.org/Apps/Maps"
LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
# Pure introspection dependencies found by grepping imports in ${S}
RDEPEND="
>=dev-libs/glib-2.66.0:2
>=dev-libs/gjs-1.69.2
>=dev-libs/gobject-introspection-0.10.1:=
gui-libs/gtk:4[introspection]
>=app-misc/geoclue-0.12.99:2.0[introspection]
>=gui-libs/libadwaita-1.0:1[introspection]
>=dev-libs/libgweather-4.2.0:4=[introspection]
>=sci-geosciences/geocode-glib-3.15.2:2[introspection]
>=media-libs/libshumate-1.0:1.0=[introspection]
dev-libs/libxml2:2
>=net-libs/rest-0.9.1:1.0[introspection]
app-crypt/libsecret[introspection]
media-libs/graphene[introspection]
net-libs/libsoup:3.0[introspection]
x11-libs/pango[introspection]
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-util/glib-utils
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
PATCHES=(
"${FILESDIR}"/43.0-tests-timeTest-Fix-tests-for-time-formats-with-diffe.patch
)
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}
|