blob: 64d09965035f93d6e57f8d48c08bcce4231f4b84 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/mergeant/mergeant-0.65.ebuild,v 1.1 2007/01/29 22:58:09 leonardop Exp $
WANT_AUTOCONF="2.5"
WANT_AUTOMAKE="1.9"
inherit autotools eutils gnome2
DESCRIPTION="Front-end for database administrators and developers"
HOMEPAGE="http://www.gnome-db.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE="debug doc"
RDEPEND=">=gnome-extra/libgnomedb-2.99.2
>=gnome-extra/libgda-2.99.2
>=gnome-base/gconf-2
>=x11-libs/gtk+-2.6
>=dev-libs/libxml2-2
>=gnome-base/libgnomeui-2
>=gnome-base/libglade-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.28
app-text/scrollkeeper
doc? ( dev-util/gtk-doc )"
DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README TODO"
pkg_setup() {
G2CONF="$(use_enable debug debug-signal)"
}
src_unpack() {
gnome2_src_unpack
# Updates to fix compilation problems due to recent API changes
epatch "${FILESDIR}/${P}-api_updates.patch"
eautoreconf
}
|