blob: ec6bf11128024cdd613740f0eb088216d8327c77 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/guake/guake-0.4.1.ebuild,v 1.2 2010/04/14 12:28:31 ssuominen Exp $
EAPI=2
GCONF_DEBUG=no
PYTHON_DEPEND="2:2.6"
inherit gnome2 python multilib
DESCRIPTION="A dropdown terminal made for the GNOME desktop"
HOMEPAGE="http://guake.org/"
SRC_URI="http://guake.org/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
RDEPEND=">=x11-libs/gtk+-2.10:2
dev-python/pygtk
x11-libs/vte[python]
dev-python/notify-python
dev-python/gconf-python
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( dev-util/intltool )"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="--disable-static
--disable-dependency-tracking
$(use_enable nls)"
python_set_active_version 2
}
src_install() {
gnome2_src_install
find "${D}" -name '*.la' -delete
}
pkg_postinst() {
gnome2_pkg_postinst
python_mod_optimize /usr/$(get_libdir)/${PN}
}
pkg_postrm() {
gnome2_pkg_postrm
python_mod_cleanup /usr/$(get_libdir)/${PN}
}
|