blob: 9ed7e39752cefa70a50cd24cbb932a2b8cda319e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.0.4-r1.ebuild,v 1.2 2007/02/06 02:46:19 seemant Exp $
inherit eutils gnome2
DOC_VER="2.0.1"
DESCRIPTION="A personal finance manager."
HOMEPAGE="http://www.gnucash.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
mirror://sourceforge/${PN}/${PN}-docs-${DOC_VER}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE="ofx hbci chipcard doc debug quotes nls"
RDEPEND=">=dev-libs/glib-2.4.0
>=dev-scheme/guile-1.8
=dev-scheme/slib-3.1.1*
>=sys-libs/zlib-1.1.4
>=dev-libs/popt-1.5
>=x11-libs/gtk+-2.4
>=gnome-base/libgnomeui-2.4
>=gnome-base/libgnomeprint-2.10
>=gnome-base/libgnomeprintui-2.10
>=gnome-base/libglade-2.4
>=gnome-extra/gtkhtml-3.10.1
>=dev-libs/libxml2-2.5.10
=dev-libs/g-wrap-1.9.6*
>=gnome-base/gconf-2
>=app-text/scrollkeeper-0.3
>=x11-libs/goffice-0.0.4
gnome-extra/yelp
ofx? ( >=dev-libs/libofx-0.7.0 )
hbci? ( net-libs/aqbanking
chipcard? ( sys-libs/libchipcard )
)
quotes? ( dev-perl/DateManip
>=dev-perl/Finance-Quote-1.11
dev-perl/HTML-TableExtract )
app-text/docbook-xsl-stylesheets
=app-text/docbook-xml-dtd-4.1.2*
nls? ( dev-util/intltool )"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen
media-gfx/graphviz
virtual/tetex )
dev-util/pkgconfig"
pkg_setup() {
built_with_use gnome-extra/libgsf gnome || die "gnome-extra/libgsf must be built with gnome"
built_with_use x11-libs/goffice gnome || die "x11-libs/goffice must be built with gnome"
built_with_use dev-scheme/guile regex || die "dev-scheme/guile must be built with regex"
built_with_use dev-scheme/guile deprecated || die "dev-scheme/guile must be built with deprecated"
built_with_use dev-scheme/guile discouraged || die "dev-scheme/guile must be built with discouraged"
}
src_compile() {
local myconf
if use doc ; then
myconf="${myconf} --enable-latex-docs"
fi
econf \
$(use_enable debug) \
$(use_enable ofx) \
$(use_enable doc doxygen) \
$(use_enable doc html-docs) \
$(use_enable doc dot) \
$(use_enable hbci) \
$(use_enable hbci mt940) \
--enable-locale-specific-tax \
${myconf} || die "econf failed"
MAKEOPTS="-j1"
emake || die "emake failed"
cd "${WORKDIR}/gnucash-docs-${DOC_VER}"
econf || die "doc econf failed"
emake || die "doc emake failed"
}
src_test() {
einfo "Skipping tests because one of the upstream tests is broken"
einfo "Please reference: https://bugs.gentoo.org/show_bug.cgi?id=146769#c1"
einfo "We have a filed a bug upstream. When that is resolved,"
einfo "We will re-enable the tests."
}
# See http://bugs.gentoo.org/show_bug.cgi?id=132862 regarding gconf schema install
src_install() {
gnome2_src_install || die "gnome2_src_install failed"
dodoc AUTHORS ChangeLog* DOCUMENTERS HACKING INSTALL NEWS TODO README* doc/README*
make_desktop_entry ${P} "GnuCash ${PV}" gnucash-icon.png "GNOME;Office;Finance"
cd "${WORKDIR}/${PN}-docs-${DOC_VER}"
make DESTDIR="${D}" \
scrollkeeper_localstate_dir="${D}/var/lib/scrollkeeper" \
install || die "doc install failed"
rm -rf "${D}/var/lib/scrollkeeper"
}
pkg_postinst() {
elog "Please note that postgresql support has been removed."
elog "Please see: https://bugs.gentoo.org/show_bug.cgi?id=146769#c9"
elog "for an explanation."
}
|