summaryrefslogtreecommitdiff
blob: 080b0ad05af867668e47f2e4fcb40a984ed5f91c (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
# 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.2 2008/03/28 20:59:50 ranger 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
	for module in msncb.py msnlib.py; do
		python_mod_compile "${ROOT}"usr/$(get_libdir)/python${PYVER}/site-packages/${module}
	done
}

pkg_postrm() {
	python_mod_cleanup
}