diff options
Diffstat (limited to 'app-office/ledger/ledger-2.5-r1.ebuild')
-rw-r--r-- | app-office/ledger/ledger-2.5-r1.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-office/ledger/ledger-2.5-r1.ebuild b/app-office/ledger/ledger-2.5-r1.ebuild new file mode 100644 index 000000000000..dcf22660b32b --- /dev/null +++ b/app-office/ledger/ledger-2.5-r1.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ledger-2.5-r1.ebuild,v 1.1 2006/11/20 09:28:56 wrobel Exp $ + +inherit eutils elisp + +DESCRIPTION="Ledger is an command-line accounting tool that provides double-entry accounting with a minimum of frills, and yet with a maximum of expressiveness and flexibility." +HOMEPAGE="http://www.newartisans.com/software.html" + +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="NewArtisans" +KEYWORDS="~x86" +SLOT="0" +IUSE="emacs debug gnuplot ofx xml" + +DEPEND="dev-libs/gmp + dev-libs/libpcre + ofx? ( >=dev-libs/libofx-0.7 ) + xml? ( dev-libs/expat ) + emacs? ( virtual/emacs ) + gnuplot? ( sci-visualization/gnuplot )" + +SITEFILE=50ledger-mode-gentoo.el + +src_compile() { + + econf \ + $(use_enable xml) \ + $(use_enable ofx) \ + $(use_enable debug) \ + $(use_with emacs lispdir ${D}/usr/share/emacs/site-lisp/${PN}) \ + || die "Configure failed!" + + emake || die "Make failed!" +} + +src_install() { + + dodoc sample.dat README NEWS ledger.pdf + + ## 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 + + use emacs && elisp-site-file-install ${FILESDIR}/${SITEFILE} + + einstall || die "Installation failed!" + + if use gnuplot; then + mv scripts/report ledger-report + dobin ledger-report + fi +} |