blob: 6cd5f2356c286ddc4a4b16fb09732757410ac1f4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-zope/zodb/zodb-3.3.1-r1.ebuild,v 1.2 2009/08/17 14:52:31 ssuominen Exp $
EAPI=2
inherit distutils
MY_P=ZODB
DESCRIPTION="Zope Object DataBase"
HOMEPAGE="http://zope.org/Products/ZODB3.3"
SRC_URI="http://zope.org/Products/${MY_P}3.3/${MY_P}%20${PV}/${MY_P}3-${PV}.tgz"
LICENSE="ZPL"
SLOT="3.3"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="<dev-lang/python-2.5"
DEPEND="${RDEPEND}
!net-zope/zopeinterface"
S=${WORKDIR}/${MY_P}3-${PV}
src_prepare() {
epatch "${FILESDIR}"/${PF}_umaskbug.patch \
"${FILESDIR}"/${P}-CVE-2009-0668+0669.patch
}
src_install() {
distutils_src_install
dohtml -a html -r Doc ExtensionClass
}
|