blob: 93f9631cc1ff1b154872cc0730113318e5c7e696 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
VALA_MIN_API_VERSION="0.22"
inherit gnome2-utils meson vala xdg
DESCRIPTION="Simple animated Gif screen recorder"
HOMEPAGE="https://github.com/phw/peek"
SRC_URI="https://github.com/phw/peek/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="keybinder test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-libs/glib-2.38:2
media-video/ffmpeg[X,encode,x264,vpx,xcb(+)]
virtual/imagemagick-tools
>=x11-libs/gtk+-3.20:3
keybinder? ( dev-libs/keybinder:3 )"
DEPEND="${RDEPEND}
$(vala_depend)
app-text/txt2man
>=sys-devel/gettext-0.19
virtual/pkgconfig"
PATCHES=( "${FILESDIR}"/${P}-meson.patch )
src_prepare() {
vala_src_prepare
default
}
src_configure() {
local emesonargs=(
$(meson_feature keybinder enable-keybinder)
$(meson_use test build-tests)
)
meson_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}
|