blob: e30c4510266c373847ed61001110743f40a683d4 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ledger-2.6.1.ebuild,v 1.5 2010/01/15 19:43:54 ulm Exp $
inherit eutils elisp-common
DESCRIPTION="A double-entry accounting system with a command-line reporting interface"
HOMEPAGE="http://wiki.github.com/jwiegley/ledger"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="emacs debug gnuplot ofx xml"
DEPEND="dev-libs/gmp
dev-libs/libpcre
ofx? ( >=dev-libs/libofx-0.9 )
xml? ( dev-libs/expat )
emacs? ( virtual/emacs )
gnuplot? ( sci-visualization/gnuplot )"
RDEPEND="${DEPEND}"
SITEFILE=50${PN}-gentoo.el
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glibc-2.10.patch
}
src_compile() {
econf \
$(use_enable xml) \
$(use_enable ofx) \
$(use_enable debug) \
$(use_with emacs lispdir "${D}${SITELISP}/${PN}")
emake || die "Make failed!"
}
src_install() {
dodoc sample.dat README NEWS
## One script uses vi, the outher the Finance perl module
## Did not add more use flags though
insinto /usr/share/${P}
doins scripts/entry scripts/getquote scripts/bal scripts/bal-huquq || die
einstall || die "Installation failed!"
# Remove timeclock since it is part of Emacs
rm -f "${D}${SITELISP}/${PN}"/timeclock.*
if use emacs; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
|| die "elisp-site-file-install failed"
fi
if use gnuplot; then
mv scripts/report ledger-report
dobin ledger-report || die
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|