summaryrefslogtreecommitdiff
blob: 682c33678b5d6bf04a8feb417ad692a5de0475e7 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/ipy/ipy-0.42.ebuild,v 1.4 2006/06/13 14:50:57 gustavoz Exp $

inherit distutils

MY_P="${P/ip/IP}"
DESCRIPTION="A python Module for handling IP-Addresses and Networks"
SRC_URI="http://c0re.23.nu/c0de/IPy/${MY_P}.tar.gz"
HOMEPAGE="http://c0re.23.nu/c0de/IPy/"

SLOT="0"
LICENSE="BSD"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"

DEPEND="virtual/python"
IUSE=""
S="${WORKDIR}/${MY_P}"


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

src_install() {
	distutils_src_install

	dodoc CHANGES THANKS
	cp -r example "${D}/usr/share/doc/${PF}/"
}