summaryrefslogtreecommitdiff
blob: 82c21c02e08f45b54f4588f60d0d671f43e51325 (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ipy/ipy-0.53.ebuild,v 1.5 2007/12/30 09:32:30 drac Exp $

inherit eutils distutils

MY_P="${P/ip/IP}"

DESCRIPTION="A python Module for handling IP-Addresses and Networks"
SRC_URI="http://cheeseshop.python.org/packages/source/I/IPy/${MY_P}.tar.gz"
HOMEPAGE="http://software.inl.fr/trac/trac.cgi/wiki/IPy"
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
IUSE="examples"

S="${WORKDIR}/${MY_P}"

src_test() {
	"${python}" test/test_IPy.py || die "src_test failed"
}

src_install() {
	DOCS="AUTHORS"
	distutils_src_install

	if use examples; then
		insinto /usr/share/doc/${PF}
		doins -r example
	fi
}