blob: e3e0376c40abc30c90040bc8ababd4a971e0cb2e (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/terminator/terminator-0.97.ebuild,v 1.1 2013/04/30 12:59:49 jlec Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
DISTUTILS_NO_PARALLEL_BUILD=true
inherit gnome2 distutils-r1
DESCRIPTION="Multiple GNOME terminals in one window"
HOMEPAGE="http://www.tenshu.net/p/terminator.html"
SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus gnome +libnotify"
RDEPEND="
dev-libs/keybinder:0[python]
x11-libs/vte:0[python]
dbus? ( sys-apps/dbus )
gnome? (
dev-python/gconf-python
dev-python/libgnome-python
dev-python/pygobject:2[${PYTHON_USEDEP}]
dev-python/pygtk:2[${PYTHON_USEDEP}]
)
libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )"
DEPEND="dev-util/intltool"
S="${WORKDIR}"/trunk
python_prepare_all() {
local PATCHES=(
"${FILESDIR}"/0.90-without-icon-cache.patch
"${FILESDIR}"/0.94-session.patch
)
local i p
if [[ -n "${LINGUAS+x}" ]] ; then
pushd "${S}"/po > /dev/null
strip-linguas -i .
for i in *.po; do
if ! has ${i%.po} ${LINGUAS} ; then
rm ${i} || die
fi
done
popd > /dev/null
fi
distutils-r1_python_prepare_all
}
pkg_postinst() {
gnome2_pkg_postinst
}
pkg_postrm() {
gnome2_pkg_postrm
}
|