blob: 1a353760681846e283dc83e78265ec3efa164173 (
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
|
# 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-9999.ebuild,v 1.4 2011/06/25 08:12:52 hwoarang Exp $
EAPI="3"
PYTHON_DEPEND="2"
PYTHON_USE_WITH="sqlite"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
EGIT_REPO_URI="git://github.com/${PN}/${PN}.git
http://github.com/${PN}/${PN}.git"
inherit distutils eutils git-2
DESCRIPTION="Platform independent MSN Messenger client written in Python+GTK"
HOMEPAGE="http://www.emesene.org"
LICENSE="|| ( GPL-2 GPL-3 LGPL-3 )"
SLOT="2"
KEYWORDS=""
IUSE="jabber"
RDEPEND="dev-python/pygtk:2
dev-python/papyon
dev-python/notify-python
jabber? ( dev-python/xmpppy )"
src_prepare() {
# do not import dummy session
sed -i -e "/import e3dummy/d" ${PN}/${PN}.py || die
# fix .desktop icon to look for emesene-2 executable
sed -i -e "s:${PN}:${PN}-2:g" \
${PN}/data/share/applications/${PN}.desktop || die
# Use a better meny entry
sed -i -e "/^Name/s:${PN}-2:Emesene v2:" \
${PN}/data/share/applications/${PN}.desktop || die
distutils_src_prepare
}
src_install() {
mysymlink(){
dosym $(python_get_sitedir)/${PN}/${PN} /usr/bin/${PN}-2 || die
}
distutils_src_install
# fix names
mv "${D}"/usr/share/applications/${PN}.desktop \
"${D}"/usr/share/applications/${PN}-2.desktop
mv "${D}"/usr/share/pixmaps/${PN}.png \
"${D}"/usr/share/pixmaps/${PN}-2.png
mv "${D}"/usr/share/pixmaps/${PN}.xpm \
"${D}"/usr/share/pixmaps/${PN}-2.xpm
mv "${D}"/usr/share/man/man1/${PN}.1 \
"${D}"/usr/share/man/man1/${PN}-2.1
python_execute_function -q mysymlink
}
pkg_postinst() {
elog
elog "${PN}-2 is on early stages of development."
elog "Please do not file bugs on Gentoo bugzilla"
elog "unless you have problems with this ebuild."
elog "Use the upstram bug tracker to report bugs:"
elog
elog "https://github.com/emesene/emesene/issues"
}
|