blob: 5ea5efd07636715f304eb98b6e41e45b380b788f (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 )
DISTUTILS_IN_SOURCE_BUILD=1
inherit bzr distutils-r1
DESCRIPTION="Terminal emulator with split-screen support"
HOMEPAGE="https://launchpad.net/terra"
EBZR_REPO_URI="lp:terra"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="<dev-python/python-distutils-extra-2.34"
RDEPEND="dev-libs/gobject-introspection
dev-python/pygobject:3[${PYTHON_USEDEP}]
dev-python/python-xlib
x11-libs/gdk-pixbuf
x11-libs/gtk+:3[introspection]
x11-libs/vte:2.90[introspection]"
src_install() {
distutils-r1_src_install
rm -f "${D}"/usr/share/doc/terra/README.md
}
|