blob: 2e1e5bbc732cd9198c875d52982832486be56f74 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/zodb/zodb-3.2.ebuild,v 1.1 2003/10/30 13:23:17 lanius Exp $
inherit distutils
MY_P=ZODB
DESCRIPTION="Zope Object DataBase."
HOMEPAGE="http://zope.org/Products/${MY_P}${PV}"
SRC_URI="http://zope.org/Products/${MY_P}${PV}/${PV}/${MY_P}3-${PV}.tar.gz"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~x86"
DEPEND=">=dev-lang/python-2.2.3"
S=${WORKDIR}/${MY_P}3-${PV}
src_compile() {
distutils_src_compile
}
src_install() {
distutils_src_install
dohtml -a html -r Doc ExtensionClass
}
|