summaryrefslogtreecommitdiff
path: root/x11-terms/terminator/terminator-1.92-r1.ebuild
diff options
context:
space:
mode:
authorSimeon Simeonov2020-06-04 19:16:35 +0200
committerSimeon Simeonov2020-06-04 19:16:35 +0200
commit9608dbcd3b9abb051a89570a64702586da58d876 (patch)
treecc999e7530478a1f8d8606a2280388d4229247fd /x11-terms/terminator/terminator-1.92-r1.ebuild
parent1227bee3d2916a208a995430db2e5e0288354f43 (diff)
Release x11-terms/terminator/terminator-1.92-r1.ebuild
Diffstat (limited to 'x11-terms/terminator/terminator-1.92-r1.ebuild')
-rw-r--r--x11-terms/terminator/terminator-1.92-r1.ebuild61
1 files changed, 61 insertions, 0 deletions
diff --git a/x11-terms/terminator/terminator-1.92-r1.ebuild b/x11-terms/terminator/terminator-1.92-r1.ebuild
new file mode 100644
index 0000000..f9e10a2
--- /dev/null
+++ b/x11-terms/terminator/terminator-1.92-r1.ebuild
@@ -0,0 +1,61 @@
1# Copyright 1999-2020 Gentoo Authors
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI=7
5
6PYTHON_COMPAT=( python3_{6,7,8} )
7DISTUTILS_USE_SETUPTOOLS="no"
8inherit distutils-r1 virtualx xdg-utils
9
10DESCRIPTION="Multiple GNOME terminals in one window (patched by sgs)"
11HOMEPAGE="https://github.com/gnome-terminator/terminator"
12SRC_URI="https://github.com/gnome-terminator/terminator/releases/download/v${PV}/${P}.tar.gz"
13
14LICENSE="GPL-2"
15SLOT="0"
16KEYWORDS="amd64 ~ppc x86"
17IUSE="dbus +libnotify"
18
19RDEPEND="
20 >=dev-libs/glib-2.32:2
21 dev-libs/keybinder:3[introspection]
22 dev-python/configobj[${PYTHON_USEDEP}]
23 dev-python/psutil[${PYTHON_USEDEP}]
24 dev-python/pycairo[${PYTHON_USEDEP}]
25 dev-python/pygobject:3[${PYTHON_USEDEP}]
26 >=x11-libs/gtk+-3.16:3
27 x11-libs/vte:2.91[introspection]
28 dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
29 libnotify? ( x11-libs/libnotify[introspection] )
30"
31BDEPEND="
32 dev-util/intltool
33"
34distutils_enable_tests setup.py
35
36PATCHES=(
37 "${FILESDIR}"/terminator-1.91-without-icon-cache.patch
38 "${FILESDIR}"/terminator-1.91-desktop.patch
39 "${FILESDIR}"/terminator-1.92-make-tests-fail.patch
40 "${FILESDIR}"/terminator-1.92-metainfo.patch
41 "${FILESDIR}"/${P}-single-tab.patch
42)
43
44src_prepare() {
45 xdg_environment_reset
46 distutils-r1_src_prepare
47}
48
49src_test() {
50 virtx distutils-r1_src_test
51}
52
53pkg_postinst() {
54 xdg_desktop_database_update
55 xdg_icon_cache_update
56}
57
58pkg_postrm() {
59 xdg_desktop_database_update
60 xdg_icon_cache_update
61}