summaryrefslogtreecommitdiff
blob: 2078b85fa8cdf164e5a010d131442867a80f52d6 (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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-names/twisted-names-0.1.0.ebuild,v 1.3 2005/04/22 16:12:55 lordvan Exp $

inherit distutils

# for alphas,..
MY_PV="${PV/_alpha/a}"
MY_PN="TwistedNames"
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="An DNS protocol implementation with client and server."
HOMEPAGE="http://twistedmatrix.com/projects/names/"
SRC_URI="http://tmrc.mit.edu/mirror/twisted/Names/0.1/${MY_P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~sparc"
IUSE="doc"

DEPEND=">=dev-python/twisted-2.0.0"

S=${WORKDIR}/${MY_P}

src_install() {
	distutils_src_install

	if use doc; then
		dodir /usr/share/doc/${P}
		cp -r ${S}/docs ${D}/usr/share/doc/${P}/
	fi
}