blob: 7d33929059441030759e4c2dd24f56734101874d (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_7 )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1 git-r3 gnome2-utils xdg-utils
DESCRIPTION="Drop-down terminal for GNOME"
HOMEPAGE="
https://github.com/Guake/guake/
https://pypi.org/project/guake/"
EGIT_REPO_URI="https://github.com/Guake/guake.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="utempter"
RDEPEND="
dev-libs/glib
dev-libs/keybinder:3[introspection]
$(python_gen_cond_dep '
dev-python/dbus-python[${PYTHON_MULTI_USEDEP}]
dev-python/pbr[${PYTHON_MULTI_USEDEP}]
dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
')
x11-libs/libnotify[introspection]
x11-libs/libwnck:3[introspection]
x11-libs/vte:2.91[introspection]
utempter? ( sys-libs/libutempter )
"
DEPEND="
${RDEPEND}
gnome-base/gsettings-desktop-schemas
sys-devel/gettext
sys-devel/make
"
PATCHES=(
"${FILESDIR}"/${PN}-3.3.2-paths.patch
)
python_compile_all() {
emake prepare-install PREFIX=/usr
emake generate-paths PREFIX=/usr DATA_DIR='$(datadir)/guake' DEV_SCHEMA_DIR='$(gsettingsschemadir)'
default
}
python_install_all() {
emake install-schemas install-locale PREFIX=/usr DESTDIR="${D}"
distutils-r1_python_install_all
}
pkg_postinst() {
gnome2_schemas_update
xdg_desktop_database_update
}
pkg_postrm() {
gnome2_schemas_update
xdg_desktop_database_update
}
|