blob: 2ea0a40127dcedbd595106623a60d37b332e72aa (
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/dev-python/pysqlite/pysqlite-0.2.0-r1.ebuild,v 1.7 2003/06/21 22:30:25 drobbins Exp $
DESCRIPTION="Python wrapper for the local database Sqlite"
SRC_URI="mirror://sourceforge/pysqlite/pysqlite-${PV}.tar.gz"
HOMEPAGE="http://www.hwaci.com/sw/sqlite/"
KEYWORDS="x86 amd64 sparc alpha"
LICENSE="pysqlite"
SLOT="0"
DEPEND="virtual/python
dev-db/sqlite"
src_compile() {
python setup.py build || die
}
src_install() {
python setup.py install --root=${D} --prefix=/usr || die
dodoc README
# Need to do the examples explicitly since dodoc
# doesn't do directories properly
dodir /usr/share/doc/${PF}/examples || die
cp -r ${S}/examples/* ${D}/usr/share/doc/${PF}/examples || die
}
|