blob: 43a9ecfda918f2fe0d218d5990785c772b588129 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-1.2.1.ebuild,v 1.1 2005/05/12 02:54:27 leonardop Exp $
inherit gnome2 eutils
DESCRIPTION="Gnome Database Access Library"
HOMEPAGE="http://www.gnome-db.org/"
LICENSE="GPL-2 LGPL-2"
IUSE="berkdb doc firebird freetds ldap mdb mysql oci8 odbc postgres sqlite \
static xbase"
SLOT="1"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND=">=dev-libs/glib-2
dev-libs/libxml2
>=dev-libs/libxslt-1.0.9
dev-libs/popt
sys-libs/ncurses
sys-libs/readline
berkdb? ( sys-libs/db )
freetds? ( >=dev-db/freetds-0.62 )
ldap? ( >=net-nds/openldap-2.0.25 )
mysql? ( >=dev-db/mysql-3.23.51 )
odbc? ( >=dev-db/unixODBC-2.0.6 )
postgres? ( >=dev-db/postgresql-7.2.1 )
x86? ( firebird? ( dev-db/firebird ) )
sqlite? ( >=dev-db/sqlite-3 )
xbase? ( dev-db/xbase )
!ia64? ( mdb? ( >=app-office/mdbtools-0.5 ) )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.8
>=dev-util/intltool-0.30
app-text/scrollkeeper
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS COPYING* ChangeLog NEWS README"
# problems with parallel builds
MAKEOPTS="${MAKEOPTS} -j1"
src_unpack() {
unpack ${A}
gnome2_omf_fix ${S}/doc/Makefile.in
cd ${S}
# Fix freetds API problems
epatch ${FILESDIR}/${PN}-1.0.2-freetds_fix.patch
# Fix compilation of the mdb provider
epatch ${FILESDIR}/${P}-mdb_fix.patch
}
src_compile() {
G2CONF="${G2CONF} \
$(use_with berkdb bdb /usr) $(use_with firebird firebird /usr) \
$(use_with freetds tds /usr) $(use_with ldap ldap /usr) \
$(use_with mdb mdb /usr) $(use_with mysql mysql /usr) \
$(use_with odbc odbc /usr) $(use_with postgres postgres /usr) \
$(use_with sqlite sqlite /usr) $(use_with xbase xbase /usr) \
$(use_enable static)"
use oci8 || G2CONF="${G2CONF} --without-oracle"
# not in portage
G2CONF="${G2CONF} --without-msql --without-sybase --without-ibmdb2"
gnome2_src_compile
}
|