blob: e6c2a0a56261f4b3a45d378bca2d7bc5ba72ba28 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.2.3.ebuild,v 1.5 2007/10/24 11:14:38 opfer Exp $
inherit eutils gnome2 autotools
DESCRIPTION="A utility for tracking the amount of time spent on activities, and calculating data, such as pay rates, from those times"
HOMEPAGE="http://gttr.sourceforge.net/"
SRC_URI="mirror://sourceforge/gttr/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc64 ~sparc ~x86"
IUSE=""
RESTRICT="test"
RDEPEND=">=gnome-base/libgnome-2.0
>=gnome-base/libgnomeui-2.0.3
>=gnome-base/gnome-vfs-2
>=dev-libs/glib-2
>=gnome-base/libglade-2.0
=gnome-extra/gtkhtml-3.2*
>=gnome-base/gconf-2.0
x11-libs/pango
dev-libs/libxml2
dev-scheme/guile
dev-libs/popt"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool
=app-text/docbook-xml-dtd-4.2*
>=app-text/scrollkeeper-0.3.11
dev-libs/qof"
DOCS="AUTHORS ChangeLog NEWS README TODO"
G2CONF="${G2CONF} --disable-schemas-install"
# Fix for bug #109047, don't parallel build with libqofsql
# Should be fixed, to be tested
#MAKEOPTS="${MAKEOPTS} -j1"
pkg_setup() {
# upstream knows about the fix and has promised to incorporate it
if ! built_with_use --missing true dev-scheme/guile deprecated;then
eerror "rebuild dev-scheme/guile with USE=deprecated"
die
fi
}
|