blob: fbde90ee79830a3447a3288a57bd3236b2de8f44 (
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
33
34
35
36
37
38
39
40
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/kinterbasdb/kinterbasdb-3.2.ebuild,v 1.6 2008/02/23 17:57:04 dev-zero Exp $
inherit distutils eutils
DESCRIPTION="firebird/interbase interface for Python."
HOMEPAGE="http://kinterbasdb.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.src.tar.gz"
IUSE="doc"
KEYWORDS="~amd64 -sparc x86"
LICENSE="kinterbasdb"
SLOT="0"
DEPEND="virtual/python
>=dev-db/firebird-1.0_rc1
>=dev-python/egenix-mx-base-2.0.1"
src_unpack() {
unpack ${A}
cd "${S}"
# firebird headers are in /opt/firebird/include
# don't byte-compile .py files
sed -i \
-e 's:^#\(database_include_dir=\).*:\1/usr/include:' \
-e 's:\(compile=\)1:\10:' \
-e 's:\(optimize=\)1:\10:' \
setup.cfg || die "sed in setup.cfg failed"
epatch "${FILESDIR}/${P}-no_doc.patch"
}
src_install() {
DOCS="docs/changelog.txt"
distutils_src_install
use doc && dohtml docs/*
}
|