summaryrefslogtreecommitdiff
blob: bec682e673bcfc5ad290ccfe6b6f7b0a0e7568c3 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/dnspython/dnspython-1.3.0.ebuild,v 1.3 2004/06/25 01:28:08 agriffis Exp $

inherit distutils

DESCRIPTION="DNS toolkit for Python."
HOMEPAGE="http://www.dnspython.org/"
SRC_URI="http://www.dnspython.org/kits/stable/${P}.tar.gz"
LICENSE="as-is"
DEPEND=">=virtual/python-2.2
	sys-devel/make"
SLOT="0"
IUSE=""
KEYWORDS="~x86"

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() {
	einfo
	einfo "Documentation is sparse at the moment. Use pydoc,"
	einfo "or read the HTML documentation at the dnspython home page"
	einfo
	einfo "You can test your dnspython installation running:"
	einfo "# cd /usr/share/${PN}/tests && make"
	einfo
}