blob: ba0f352e83d2eb2e5d969ab31e95bb252c898b9b (
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
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/rekall/rekall-2.2.1.ebuild,v 1.2 2004/10/14 23:06:04 carlo Exp $
inherit kde eutils
DESCRIPTION="Rekall - a database frontend for MySQL, PostgreSQL and XBase"
HOMEPAGE="http://www.rekallrevealed.org/"
SRC_URI="http://www.rekallrevealed.org/packages/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE="mysql odbc postgres xbase"
DEPEND="sys-apps/sed
virtual/python
mysql? ( >=dev-db/mysql-3.23.57-r1 )
postgres? ( >=dev-db/postgresql-7.3.4-r1 )
xbase? ( =dev-db/xbsql-0.11 )"
RDEPEND="virtual/python
mysql? ( >=dev-db/mysql-3.23.57-r1 )
postgres? ( >=dev-db/postgresql-7.3.4-r1 )
xbase? ( =dev-db/xbsql-0.11 )"
need-kde 3
src_unpack() {
kde_src_unpack
epatch ${FILESDIR}/${P}-gcc-3.4-compat.patch
sed -i -e 's/$(LN_S) $(kde_libs_htmldir)\/$(KDE_LANG)\/common/$(LN_S) common/' ${S}/doc/rekall/Makefile.in
}
src_compile() {
myconf="--with-gui=kde \
`use_enable mysql` \
`use_enable postgres pgsql` \
`use_enable xbase` \
`use_enable odbc` \
`use_enable odbc iodbc`"
kde_src_compile
}
src_install() {
kde_src_install
if use postgres; then
cd ${D}/usr/lib
mv libkbase_driver_pgsql.so libkbase_driver_pgsql.so.0.0.0
ln -s libkbase_driver_pgsql.so.0.0.0 libkbase_driver_pgsql.so.0
ln -s libkbase_driver_pgsql.so.0.0.0 libkbase_driver_pgsql.so
fi
}
|