blob: 3c36df52f27f9f6dcd2295555d4e75489de3bedd (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/msnlib-3.6.ebuild,v 1.5 2008/05/29 14:13:51 hawking Exp $
NEED_PYTHON=2.2.2
inherit python multilib distutils
DESCRIPTION="A Python MSN messenger protocol library and client"
HOMEPAGE="http://auriga.wearlab.de/~alb/msnlib/"
SRC_URI="http://auriga.wearlab.de/~alb/msnlib/files/${PV}/${P}.tar.bz2"
LICENSE="OSL-1.1"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="tk"
pkg_setup() {
use tk && python_tkinter_exists
}
src_install() {
distutils_src_install
dodoc doc/* || die "dodoc failed."
dobin msn
dobin msnsetup
use tk && dobin utils/msntk
insinto /usr/share/doc/${PF}
doins msnrc.sample
}
pkg_postinst() {
local module
python_version
python_mod_compile /usr/$(get_libdir)/python${PYVER}/site-packages/msn{cb,lib}.py
}
pkg_postrm() {
python_mod_cleanup
}
|