blob: a0f087e7819d0fc81f2408ecae179aac8f2521e9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.3.5.ebuild,v 1.12 2007/12/15 11:34:12 lucass Exp $
inherit distutils
DESCRIPTION="DNS toolkit for Python."
HOMEPAGE="http://www.dnspython.org/"
SRC_URI="http://www.dnspython.org/kits/${PV}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh ~sparc x86"
IUSE=""
DEPEND="virtual/python
sys-devel/make"
src_install() {
distutils_src_install
dodoc TODO
dodir /usr/share/doc/${P}
cp -r examples ${D}/usr/share/doc/${P}
dodir /usr/share/${PN}
cp -r tests ${D}/usr/share/${PN}
}
pkg_postinst() {
elog "Documentation is sparse at the moment. Use pydoc,"
elog "or read the HTML documentation at the dnspython's home page."
}
src_test() {
export PYTHONPATH="${S}/build/lib:${PYTHONPATH}"
cd tests
make || die "Unit tests failed!"
}
|