summaryrefslogtreecommitdiff
blob: 32e576d01f5f4150244e633d33461183a3c72363 (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
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted/twisted-1.0.1-r1.ebuild,v 1.1 2002/12/05 13:08:40 lordvan Exp $

S=${WORKDIR}/Twisted-${PV}
DESCRIPTION="Twisted is a collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included." 
SRC_URI="http://twisted.sourceforge.net/Twisted-${PV}.tar.bz2"
HOMEPAGE="http://www.twistedmatrix.com/"
LICENSE="LGPL-2.1"
SLOT="0"
DEPEND="virtual/python
	>=dev-python/pycrypto-1.9_alpha4"
RDEPEND="$DEPEND"
KEYWORDS="x86 alpha sparc sparc64"
IUSE=""

inherit distutils

src_install() {
	distutils_src_install
		
	# next few lines will install docs: 9.4 megs! 
	dodir /usr/share/doc/${PF}
	# of course it's documentation!
	doman doc/man/*.[0-9n]
	rm -rf doc/man	# don't dupe the man pages
	cd doc
	cp -r . ${D}/usr/share/doc/${PF}
	cd ../
# should be taken care of by the distutils install
#	 dodoc README TODO CREDITS
}