blob: d9263c5b7bf468416ba165de2934ffe348919d86 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/grisbi-0.5.5.ebuild,v 1.2 2005/04/11 20:15:01 seemant Exp $
inherit eutils
IUSE="print nls ofx"
DESCRIPTION="Grisbi is a personal accounting application for Linux"
HOMEPAGE="http://www.grisbi.org"
SRC_URI="mirror://sourceforge/grisbi/${P}.tar.bz2
mirror://gentoo/doc.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64 ~sparc"
DEPEND="dev-libs/libxml2
>=x11-libs/gtk+-2
ofx? ( >=dev-libs/libofx-0.7.0 )"
RDEPEND="${DEPEND}
print? ( virtual/tetex
>=dev-tex/latex-unicode-20041017 )"
pkg_setup() {
if ! use print; then
echo
einfo
einfo "NOTE: The USE variable 'print' is not in your USE flags."
einfo "For printing support in grisbi, you will need to restart"
einfo "the build with USE=\"print\""
einfo
echo
ebeep 5
fi
}
src_unpack() {
unpack ${A}; cd ${S}
# Apply location patchs
ebegin "Applying Gentoo documentation location patch"
for i in \
`find ./ -name 'Makefile.*'` \
`find ./ -name 'grisbi-manuel.html'`
do
sed -i "s;doc/grisbi/help;doc/${PF}/help;g" ${i}
done
eend 0
# Patch for new unicode package (utf8 -> utf8x)
epatch ${FILESDIR}/${P}-latex-unicode.patch
}
src_compile() {
local myconf
myconf="`use_enable nls`"
myconf="${myconf} `use_with ofx`"
econf ${myconf} || die "configure failed"
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog NEWS README
}
pkg_postinst() {
pkg_setup
einfo "The first thing you should do is set up the browser command in"
einfo "preferences after you start up grisbi. Otherwise you will not"
einfo "be able to see the help and manuals"
}
|