blob: 13ba2256a406ca3de98b8d2a792071ac68a6e24b (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/bsddb3/bsddb3-3.4.0.ebuild,v 1.5 2003/06/21 22:30:24 drobbins Exp $
inherit distutils
DESCRIPTION="Python bindings for BerkelyDB"
HOMEPAGE="http://pybsddb.sourceforge.net/"
SRC_URI="mirror://sourceforge/pybsddb/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 amd64 ~ppc"
IUSE=""
DEPEND="virtual/python
=sys-libs/db-3*"
S="${WORKDIR}/${P}"
mydoc="README.txt TODO.txt"
src_install() {
distutils_src_install
dohtml docs/*
}
|