blob: dda44713739d0bd4431bf8222f62a569d1e2f619 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/apsw/apsw-3.3.5.1.ebuild,v 1.3 2006/07/31 20:03:21 tgall Exp $
inherit distutils
MY_ORIG_PV="${PV%.*}-r${PV##*.}"
DESCRIPTION="APSW - Another Python SQLite Wrapper"
HOMEPAGE="http://www.rogerbinns.com/apsw.html"
SRC_URI="mirror://sourceforge/bitpim/${PN}-${MY_ORIG_PV}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
RDEPEND="dev-lang/python
>=dev-db/sqlite-3.3.5"
DEPEND="app-arch/unzip
${RDEPEND}"
S="${WORKDIR}/${PN}-${MY_ORIG_PV}"
PYTHON_MODNAME="apsw"
|