blob: 3680e297140e079392af50825dc4e5b7dda78eca (
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
72
73
74
75
76
77
78
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/emesene/emesene-1.6.3-r1.ebuild,v 1.3 2011/12/13 16:35:57 ago Exp $
EAPI="2"
PYTHON_DEPEND="2"
inherit python eutils
DESCRIPTION="Platform independent MSN Messenger client written in Python+GTK"
HOMEPAGE="http://www.emesene.org"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="webcam"
RDEPEND="dev-python/pygtk:2
webcam? ( media-plugins/gst-plugins-meta[v4l]
dev-python/gst-python
media-libs/libmimic )"
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
# Workaround problems to connect to servers, bug #389955
epatch "${FILESDIR}/${P}-update-servers.patch"
rm GPL PSF LGPL || die "rm license files failed"
if ! use webcam; then
rm -r libmimic || die "rm libmimic dir failed"
fi
python_convert_shebangs -r 2 .
}
src_compile() {
if use webcam ; then
$(PYTHON) ./setup.py build_ext -i || die "libmimic compile failed"
fi
}
src_install() {
if use webcam; then
rm -r build || die "rm build failed"
fi
insinto /usr/share/${PN}
doins -r * || die "doins failed"
fperms a+x /usr/share/${PN}/${PN} || die "fperms failed"
dosym /usr/share/${PN}/${PN} /usr/bin/${PN} || die "dosym failed"
doman misc/${PN}.1 || die "doman failed"
doicon misc/*.{svg,png} || die "doicon failed"
# install the desktop entry
domenu misc/${PN}.desktop || die "domenu failed"
}
pkg_postinst() {
python_mod_optimize /usr/share/${PN}
elog "If you want to use the spell-checking feature, you should emerge"
elog "dev-python/gtkspell-python"
elog
elog "If you want to use EncryptMessage plugin, you should emerge"
elog "dev-python/pexpect"
}
pkg_postrm() {
python_mod_cleanup /usr/share/${PN}
}
|