blob: 92c31ab7e51a48f6005b11fcdf18a02397684909 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/indicator-messages/indicator-messages-0.5.0-r300.ebuild,v 1.3 2011/11/28 16:53:06 ssuominen Exp $
EAPI=4
inherit gnome2-utils
DESCRIPTION="A place on the user's desktop that collects messages that need a response"
HOMEPAGE="http://launchpad.net/indicator-messages"
SRC_URI="http://launchpad.net/${PN}/${PV%.*}/${PV}/+download/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-libs/libdbusmenu-0.5:3[gtk]
>=dev-libs/glib-2.18
>=dev-libs/libindicate-0.6:3
>=dev-libs/libindicator-0.4:3
net-libs/telepathy-glib
x11-libs/gtk+:3"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig"
DOCS=( AUTHORS ChangeLog )
src_configure() {
econf --with-gtk=3
}
src_install() {
default
find "${ED}"usr -name '*.la' -exec rm -f {} +
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|