blob: bec1c1616a8c797cc537b3b42095a89a8ba1ff8e (
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
66
67
68
69
70
71
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libappindicator/libappindicator-0.4.1-r200.ebuild,v 1.2 2011/11/19 15:57:07 ssuominen Exp $
EAPI=4
PYTHON_DEPEND="2:2.7"
inherit autotools eutils python
__vala_version=0.14
DESCRIPTION="A library to allow applications to export a menu into the Unity Menu bar"
HOMEPAGE="http://launchpad.net/libappindicator"
SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="LGPL-2.1 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+introspection"
# FIXME: Missing dev-lang/mono handling!
RDEPEND="dev-libs/dbus-glib
>=dev-libs/glib-2.26
dev-libs/libdbusmenu[gtk,-gtk3]
>=dev-libs/libindicator-0.4
dev-python/pygobject:2
>=dev-python/pygtk-2.14:2
>=x11-libs/gtk+-2.18:2
introspection? ( >=dev-libs/gobject-introspection-0.10 )"
DEPEND="${RDEPEND}
dev-lang/vala:${__vala_version}[vapigen]
dev-util/gtk-doc-am
dev-util/pkgconfig"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
sed -i -e '/LDFLAGS/s:python2.6:python2.7:' bindings/python/Makefile.{am,in} || die
epatch "${FILESDIR}"/${P}-no-mono.patch
eautoreconf
rm -f py-compile
ln -s $(type -P true) py-compile
}
src_configure() {
export VALAC="$(type -P valac-${__vala_version})"
econf \
--disable-static \
--with-html-dir=/usr/share/doc/${PF}/html
}
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc AUTHORS ChangeLog
find "${ED}"usr -name '*.la' -exec rm -f {} +
}
pkg_postinst() {
python_mod_optimize appindicator
}
pkg_postrm() {
python_mod_cleanup appindicator
}
|