blob: f367a94ab549bb949279819af456f401836d0aad (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/rekall/rekall-2.2.6.ebuild,v 1.5 2006/11/23 20:06:03 vivo Exp $
inherit kde
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="amd64 ppc x86"
IUSE="mysql postgres xbase"
DEPEND="sys-apps/sed
virtual/python
mysql? ( virtual/mysql )
postgres? ( >=dev-db/postgresql-7.3.4-r1 )
xbase? ( =dev-db/xbsql-0.11 )"
RDEPEND="virtual/python
mysql? ( virtual/mysql )
postgres? ( >=dev-db/postgresql-7.3.4-r1 )
xbase? ( =dev-db/xbsql-0.11 )"
need-kde 3
src_unpack() {
kde_src_unpack
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`"
kde_src_compile
}
src_install() {
kde_src_install
if use postgres; then
cd "${D}/usr/$(get_libdir)"
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
mv ${D}/usr/share/rekall.desktop ${D}/usr/share/applications/rekall.desktop
}
|