blob: d82edd012245031bd330ea8e655906752a7ee167 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils
DESCRIPTION="Pidgin plugin for adding Xfire accounts and connecting to the Xfire network"
HOMEPAGE="http://gfireproject.org/"
SRC_URI="mirror://sourceforge/gfire/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug kmess-status libnotify nls"
RDEPEND="
net-im/pidgin[gtk]
x11-libs/gtk+:2
kmess-status? ( dev-libs/dbus-glib )
libnotify? ( x11-libs/libnotify )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${P}-libnotify-0.7-support.patch
epatch "${FILESDIR}"/${P}-disabled-nls-fix.patch
}
src_configure() {
# Note: --enable-dbus-status is hard-coded to only publish
# your status to net-im/kmess via dbus; it does nothing else.
econf \
--enable-gtk \
--disable-update-notify \
$(use_enable kmess-status dbus-status) \
$(use_enable libnotify) \
$(use_enable debug) \
$(use_enable nls)
}
src_install() {
emake install DESTDIR="${D}"
dodoc AUTHORS README ChangeLog
find "${ED}" -name '*.la' -exec rm -f '{}' +
}
pkg_postinst() {
elog "Please note that unlike other Pidgin plugins, the Gfire plugin"
elog "needs Pidgin to be restarted before it is activated."
}
|