blob: e916511afeb32665f02e09243695fd42686fffcc (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/msnlib/msnlib-3.5.ebuild,v 1.1 2007/03/16 12:28:05 lucass Exp $
NEED_PYTHON=2.2.2
inherit distutils
IUSE=""
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"
src_install() {
distutils_src_install
dodoc doc/*
dobin msn
dobin msnsetup
dobin utils/msntk
insinto /usr/share/doc/${PF}
doins msnrc.sample
}
|