blob: d8e7c2de1937c54157a50db31ec2e38a8d6bead5 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic gnome2-utils meson xdg-utils
DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
HOMEPAGE="
https://docs.xfce.org/apps/mousepad/start
https://gitlab.xfce.org/apps/mousepad/
"
SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86"
IUSE="policykit spell +shortcuts X"
DEPEND="
>=dev-libs/glib-2.56.2
>=x11-libs/gtk+-3.22.0:3[X?]
>=x11-libs/gtksourceview-4.0.0:4
policykit? ( >=sys-auth/polkit-0.102 )
spell? ( >=app-text/gspell-1.6.0:= )
shortcuts? ( >=xfce-base/libxfce4ui-4.17.5:= )
"
RDEPEND="
${DEPEND}
"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
"
src_configure() {
# defang automagic dependencies
use X || append-flags -DGENTOO_GTK_HIDE_X11
local emesonargs=(
-Dgtksourceview4=enabled
$(meson_feature policykit polkit)
$(meson_feature spell gspell-plugin)
$(meson_feature shortcuts shortcuts-plugin)
)
meson_src_configure
}
pkg_postinst() {
gnome2_schemas_update
xdg_desktop_database_update
xdg_icon_cache_update
}
pkg_postrm() {
gnome2_schemas_update
xdg_desktop_database_update
xdg_icon_cache_update
}
|