blob: bb7091c6dbd8d3fbe279decf4b768e1acbb740c7 (
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
37
38
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/twisted-docs/twisted-docs-1.2.0.ebuild,v 1.10 2006/06/22 19:15:06 marienz Exp $
#inherit distutils
MY_PN="TwistedDocs"
DESCRIPTION="collection of servers and clients, which can be used either by developers of new applications or directly. Documentation included."
HOMEPAGE="http://www.twistedmatrix.com/"
SRC_URI="http://twisted.sourceforge.net/${MY_PN}-${PV}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 amd64 ppc alpha"
IUSE=""
DEPEND="!>=dev-python/twisted-2"
S=${WORKDIR}/${MY_PN}-${PV}
src_unpack() {
unpack ${MY_PN}-${PV}.tar.bz2
}
src_compile() {
einfo "Nothing to compile"
}
src_install() {
cd ${S}
# of course it's documentation!
doman man/*.[0-9n]
rm -rf man # don't dupe the man pages
dodir /usr/share/doc/${PF}
cp -r . ${D}/usr/share/doc/${PF}
}
|