blob: 9e006c633f3fc2685d8aba99bf6a7e5a23759439 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgda/libgda-4.1.4-r1.ebuild,v 1.1 2010/03/31 21:31:30 eva Exp $
EAPI="2"
inherit db-use eutils flag-o-matic gnome2 java-pkg-opt-2
DESCRIPTION="Gnome Database Access Library"
HOMEPAGE="http://www.gnome-db.org/"
LICENSE="GPL-2 LGPL-2"
# MDB support currently works with CVS only, so disable it in the meantime
# experimental IUSE: introspection
IUSE="berkdb bindist canvas doc firebird freetds gtk graphviz ldap mysql oci8 odbc postgres sourceview xbase"
SLOT="4"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
# FIXME: sqlite is automagic, but maybe it is a hard-dep
# FIXME: autoconf is a hell of inconsistencies
RDEPEND="
app-text/iso-codes
>=dev-libs/glib-2.16
>=dev-libs/libxml2-2
dev-libs/libxslt
dev-libs/libunique
sys-libs/readline
sys-libs/ncurses
>=net-libs/libsoup-2.24:2.4
berkdb? ( sys-libs/db )
freetds? ( >=dev-db/freetds-0.62 )
!bindist? ( firebird? ( dev-db/firebird ) )
gtk? (
>=x11-libs/gtk+-2.12
canvas? ( x11-libs/goocanvas )
sourceview? ( x11-libs/gtksourceview:2.0 )
graphviz? ( media-gfx/graphviz )
)
ldap? ( >=net-nds/openldap-2.0.25 )
mysql? ( virtual/mysql )
odbc? ( >=dev-db/unixODBC-2.0.6 )
postgres? ( >=virtual/postgresql-base-7.2.1 )
xbase? ( dev-db/xbase )
>=dev-db/sqlite-3.6.22:3"
# json? ( dev-libs/json-glib )
# mdb? ( >app-office/mdbtools-0.5 )
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.18
>=dev-util/intltool-0.35.5
doc? ( >=dev-util/gtk-doc-1 )"
DOCS="AUTHORS ChangeLog NEWS README"
# Tests are not really good
RESTRICT="test"
pkg_setup() {
if use canvas || use graphviz || use sourceview; then
if ! use gtk; then
ewarn "You must enable USE=gtk to make use of canvas, graphivz or sourceview USE flag."
ewarn "Disabling for now."
G2CONF="${G2CONF} --without-goocanvas --without-graphivz --without-gtksourceview"
else
G2CONF="${G2CONF}
$(use_with canvas goocanvas)
$(use_with graphviz)
$(use_with sourceview gtksourceview)"
fi
fi
G2CONF="${G2CONF}
--with-unique
--with-libsoup
--disable-introspection
--disable-static
--enable-system-sqlite
$(use_with gtk ui)
$(use_with berkdb bdb /usr)
$(use_with odbc odbc /usr)
$(use_with mysql mysql /usr)
$(use_with postgres postgres /usr)
$(use_with freetds tds /usr)
$(use_with xbase xbase /usr)
$(use_with ldap ldap /usr)
$(use_with java java $JAVA_HOME)
--without-mdb"
# $(use_with mdb mdb /usr)
if use bindist; then
# firebird license is not GPL compatible
G2CONF="${G2CONF} --without-firebird"
else
G2CONF="${G2CONF} $(use_with firebird firebird /usr)"
fi
use berkdb && append-cppflags "-I$(db_includedir)"
use oci8 || G2CONF="${G2CONF} --without-oracle"
# Not in portage
G2CONF="${G2CONF}
--without-msql
--without-sybase
--without-ibmdb2
--disable-default-binary"
}
src_prepare() {
gnome2_src_prepare
# Fix missing header installation, bug #308793
epatch "${FILESDIR}/${PN}-4.1.4-install-header.patch"
}
src_test() {
emake check HOME=$(unset HOME; echo "~") || die "tests failed"
}
|