blob: 3eb830227f0a6db4fab4d6eb894dd748fb564610 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/indicator-applet/indicator-applet-0.1.6.ebuild,v 1.2 2009/09/21 16:13:00 ssuominen Exp $
EAPI=2
GCONF_DEBUG=no
inherit gnome2
DESCRIPTION="A small applet to display information from various applications consistently in the panel"
HOMEPAGE="http://launchpad.net/indicator-applet/"
SRC_URI="http://launchpad.net/${PN}/0.1/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3 LGPL-2.1 LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="nls"
RDEPEND=">=dev-libs/glib-2.18:2
>=x11-libs/gtk+-2.12:2
>=dev-libs/dbus-glib-0.76
>=gnome-base/gnome-panel-2
>=gnome-base/libgnomeui-2
>=gnome-base/gconf-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( dev-util/intltool )"
pkg_setup() {
G2CONF="$(use_enable nls)
--disable-dependency-tracking
--disable-gobject-introspection"
DOCS="AUTHORS"
}
|