blob: 8897e184994dc9877e0cb41cc415e94b8ca7a9b0 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/ledger/ledger-3.1.ebuild,v 1.5 2015/06/07 08:09:57 jlec Exp $
EAPI=5
inherit cmake-utils
DESCRIPTION="A double-entry accounting system with a command-line reporting interface"
HOMEPAGE="http://ledger-cli.org/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
RDEPEND="
dev-libs/boost:=
dev-libs/gmp:0
dev-libs/mpfr:0
"
DEPEND="${RDEPEND}
dev-libs/utfcpp
"
DOCS=(README.md)
|