[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2019-07-27 Thread Andreas Sturmlechner
commit: b03c8a83cc1c6ace638ab8b6a96b0d58d54857c3
Author: Francesco Turco  fastmail  fm>
AuthorDate: Sun Jun 30 20:18:38 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jul 27 08:14:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b03c8a83

app-office/ledger: rename configuration file for Emacs

Non-maintainer commit after timeout.

Closes: https://bugs.gentoo.org/678090
Signed-off-by: Francesco Turco  fastmail.fm>
Closes: https://github.com/gentoo/gentoo/pull/12363
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../ledger/files/{50ledger-gentoo-3.1.1.el => 50ledger-gentoo.el} | 0
 app-office/ledger/ledger-3.1.1-r2.ebuild  | 4 ++--
 app-office/ledger/ledger-3.1.2.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-office/ledger/files/50ledger-gentoo-3.1.1.el 
b/app-office/ledger/files/50ledger-gentoo.el
similarity index 100%
rename from app-office/ledger/files/50ledger-gentoo-3.1.1.el
rename to app-office/ledger/files/50ledger-gentoo.el

diff --git a/app-office/ledger/ledger-3.1.1-r2.ebuild 
b/app-office/ledger/ledger-3.1.1-r2.ebuild
index 48b69eb0fcd..9bacf38fd69 100644
--- a/app-office/ledger/ledger-3.1.1-r2.ebuild
+++ b/app-office/ledger/ledger-3.1.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -18,7 +18,7 @@ IUSE="debug doc emacs python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="test"
 
-SITEFILE=50${PN}-gentoo-${PV}.el
+SITEFILE=50${PN}-gentoo.el
 
 CHECKREQS_MEMORY=8G
 

diff --git a/app-office/ledger/ledger-3.1.2.ebuild 
b/app-office/ledger/ledger-3.1.2.ebuild
index d027cb0f735..be240f9dcfc 100644
--- a/app-office/ledger/ledger-3.1.2.ebuild
+++ b/app-office/ledger/ledger-3.1.2.ebuild
@@ -17,7 +17,7 @@ IUSE="debug doc emacs python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="test"
 
-SITEFILE=50${PN}-gentoo-${PV}.el
+SITEFILE=50${PN}-gentoo.el
 
 CHECKREQS_MEMORY=8G
 



[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2018-07-19 Thread Erik Mackdanz
commit: 2642ca2a2e080d478b417a37edd1500cf1c283fd
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Fri Jul 20 04:01:29 2018 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Fri Jul 20 04:02:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2642ca2a

app-office/ledger: Bug fixes, EAPI=6

Closes: https://bugs.gentoo.org/635730
Closes: https://bugs.gentoo.org/635924
Closes: https://bugs.gentoo.org/642804
Closes: https://bugs.gentoo.org/654326
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../files/ledger-3.1.1-r1-boost-python.patch   |  13 +++
 app-office/ledger/ledger-3.1.1-r1.ebuild   | 125 +
 2 files changed, 138 insertions(+)

diff --git a/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch 
b/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch
new file mode 100644
index 000..6839b3f6067
--- /dev/null
+++ b/app-office/ledger/files/ledger-3.1.1-r1-boost-python.patch
@@ -0,0 +1,13 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index f8dbd892..6aacd5b3 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -67,7 +67,7 @@ if (USE_PYTHON)
+ 
+   find_package(PythonLibs)
+   if (PYTHONLIBS_FOUND)
+-set(BOOST_PYTHON python)
++set(BOOST_PYTHON python-2.7)
+ set(HAVE_BOOST_PYTHON 1)
+ include_directories(SYSTEM ${PYTHON_INCLUDE_DIRS})
+   else()

diff --git a/app-office/ledger/ledger-3.1.1-r1.ebuild 
b/app-office/ledger/ledger-3.1.1-r1.ebuild
new file mode 100644
index 000..3618c77570f
--- /dev/null
+++ b/app-office/ledger/ledger-3.1.1-r1.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit check-reqs cmake-utils elisp-common python-single-r1
+
+DESCRIPTION="A double-entry accounting system with a command-line reporting 
interface"
+HOMEPAGE="https://www.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="doc emacs python"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="test"
+
+SITEFILE=50${PN}-gentoo-${PV}.el
+
+CHECKREQS_MEMORY=8G
+
+RDEPEND="
+   dev-libs/boost:=[python?]
+   dev-libs/gmp:0=
+   dev-libs/mpfr:0=
+   emacs? ( virtual/emacs )
+   python? (
+   dev-libs/boost:=[${PYTHON_USEDEP}]
+   dev-python/cheetah
+   ${PYTHON_DEPS}
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   dev-libs/utfcpp
+   doc? (
+   sys-apps/texinfo
+   virtual/texi2dvi
+   dev-texlive/texlive-fontsrecommended
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-${PV}-boost.patch" # bug 609108
+   "${FILESDIR}/${PF}-boost-python.patch" # bug 654326
+   )
+
+# Building with python integration seems to fail without 8G available
+# RAM(!)  Since the memory check in check-reqs doesn't count swap, it
+# may be unfair to fail the build entirely on the memory test alone.
+# Therefore check-reqs_pkg_pretend is deliberately omitted so that we
+# ewarn but not eerror.
+pkg_pretend() {
+   :
+}
+
+pkg_setup() {
+   if use python; then
+   check-reqs_pkg_setup
+   python-single-r1_pkg_setup
+   fi
+}
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   # Want to type "info ledger" not "info ledger3"
+   sed -i -e 's/ledger3/ledger/g' \
+   doc/ledger3.texi \
+   doc/CMakeLists.txt \
+   test/CheckTexinfo.py \
+   tools/cleanup.sh \
+   tools/gendocs.sh \
+   tools/prepare-commit-msg \
+   tools/spellcheck.sh \
+   || die "Failed to update info file name in file contents"
+
+   mv doc/ledger{3,}.texi || die "Failed to rename info file name"
+
+   eapply_user
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_EMACSLISP="$(usex emacs)"
+   -DBUILD_DOCS="$(usex doc)"
+   -DBUILD_WEB_DOCS="$(usex doc)"
+   -DUSE_PYTHON="$(usex python)"
+   -DCMAKE_INSTALL_DOCDIR="/usr/share/doc/${PF}"
+   -DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   use doc && cmake-utils_src_make doc
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   use emacs && elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
+
+pkg_postinst() {
+   use emacs && elisp-site-regen
+
+   einfo
+   einfo "Since version 3, vim support is released separately."
+   einfo "See https://github.com/ledger/vim-ledger;
+   einfo
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}
+
+# rainy day TODO:
+# - IUSE test



[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2017-04-03 Thread David Seifert
commit: c7ba297cbfbc9ddef908162932e90a11c218eba4
Author: David Seifert  gentoo  org>
AuthorDate: Mon Apr  3 18:11:54 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Apr  3 18:11:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ba297c

app-office/ledger: Remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-office/ledger/Manifest |  2 -
 app-office/ledger/files/50ledger-gentoo-3.1.el |  5 --
 app-office/ledger/files/50ledger-gentoo.el |  5 --
 app-office/ledger/ledger-2.6.3-r1.ebuild   | 80 --
 app-office/ledger/ledger-3.1-r1.ebuild | 70 --
 5 files changed, 162 deletions(-)

diff --git a/app-office/ledger/Manifest b/app-office/ledger/Manifest
index 778c657a4f8..6cd37cd8db1 100644
--- a/app-office/ledger/Manifest
+++ b/app-office/ledger/Manifest
@@ -1,3 +1 @@
-DIST ledger-2.6.3.tar.gz 551325 SHA256 
e2c99d930fcf64b7fa901215c7fa25e3327f6365e8ee049620ef3632d53bf363 SHA512 
825e670d25d2f8d1791480fb5da4190f7b342ecc9b47bca60fd6f0e606e5af5f3f767ec7043339660396ef4c90451f4a4122d812b8761acf4ea964b67dbd43b5
 WHIRLPOOL 
e6d351ce8899079daa9cb0d1f9493b2b551a6d44e8ad7949c28ac8e544f80c87d54f06b350adfc21c4c8582e9042547313a506fa74096671bae30b462ae3e2df
 DIST ledger-3.1.1.tar.gz 842364 SHA256 
90f06561ab692b192d46d67bc106158da9c6c6813cc3848b503243a9dfd8548a SHA512 
3f81b98a414cdfc0e272de4e958770149fb1acc8bda880d270e1459ce35294a220c52820bb9af49a751ac3a80b878f81fc7799ba41e0a1be43eba72081351bf5
 WHIRLPOOL 
89a83818adbe206167dbfc999dd589f1943d199cf84979fa82754f597a863c115fec85bbdabc4413714b4253502833170e6327bfc0d2321c392b9a3d73400061
-DIST ledger-3.1.tar.gz 817624 SHA256 
eeb5d260729834923fc94822bcc54ca3080c434f81466a3f5dc4274b357ce694 SHA512 
caa84330eee05d3e88820e8afd4a906d22f6aaa9de4abc2f6813636754e052e6ec4d1b3d2fce68215aededc72651405c62aaf16a2c1b69d34e1b10ffece48519
 WHIRLPOOL 
fc3ce5e8eb59e1d4f83101063ebefd1379172c1be0e4f504079519924859b8127d616e7e3714837be49c7b38674b1684e321347d1f8561aeeba586b538341142

diff --git a/app-office/ledger/files/50ledger-gentoo-3.1.el 
b/app-office/ledger/files/50ledger-gentoo-3.1.el
deleted file mode 100644
index 1c2c5bde2f8..000
--- a/app-office/ledger/files/50ledger-gentoo-3.1.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; app-office/ledger site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'ledger-mode "ledger-mode" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/files/50ledger-gentoo.el 
b/app-office/ledger/files/50ledger-gentoo.el
deleted file mode 100644
index 27836612139..000
--- a/app-office/ledger/files/50ledger-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; app-office/ledger site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-(autoload 'ledger-mode "ledger" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/ledger-2.6.3-r1.ebuild 
b/app-office/ledger/ledger-2.6.3-r1.ebuild
deleted file mode 100644
index 78b0e1fad19..000
--- a/app-office/ledger/ledger-2.6.3-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils elisp-common autotools
-
-DESCRIPTION="A double-entry accounting system with a command-line reporting 
interface"
-HOMEPAGE="http://ledger-cli.org/;
-SRC_URI="mirror://github/jwiegley/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos"
-SLOT="0"
-IUSE="emacs debug gnuplot ofx static-libs xml vim-syntax"
-
-DEPEND="
-   dev-libs/gmp:0
-   dev-libs/libpcre
-   ofx? ( >=dev-libs/libofx-0.9 )
-   xml? ( dev-libs/expat )
-   emacs? ( virtual/emacs )
-   gnuplot? ( sci-visualization/gnuplot )"
-RDEPEND="${DEPEND}
-   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )"
-
-DOCS=(sample.dat README NEWS)
-
-SITEFILE=50${PN}-gentoo.el
-
-src_prepare() {
-   sed -i -e "/ledger_LDFLAGS/d" Makefile.am
-   eautoreconf
-}
-
-src_configure() {
-   # Autodetection of dependencies may fail in the case of:
-   # USE=emacs disabled, app-editors/emacs not installed, 
app-editors/xemacs installed
-   use emacs || export EMACS=no
-   econf \
-   $(use_enable debug) \
-   $(use_with emacs lispdir "${EPREFIX}/${SITELISP}/${PN}") \
-   $(use_enable ofx) \
-   $(use_enable static-libs static) \
-   $(use_enable xml)
-}
-
-src_install() {
-   default
-
-   # One script uses vi, the outher the Finance perl module
-   # Did not add more use flags though
-   exeinto /usr/share/${PN}/scripts
-   doexe scripts/{entry,getquote,bal,bal-huquq}
-
-   # Remove timeclock since it is part of Emacs
-   rm -f "${ED}${SITELISP}/${PN}"/timeclock.*
-
-   use emacs && elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-
-   if use gnuplot; then
-   mv 

[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2016-02-21 Thread Erik Mackdanz
commit: 6cb4b18e41ddb0d6af693290beb35b693eea8505
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Sun Feb 21 18:42:26 2016 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Sun Feb 21 18:42:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb4b18e

app-office/ledger: bump to 3.1.1

Adds IUSE=python

Package-Manager: portage-2.2.27

 app-office/ledger/Manifest   |   1 +
 app-office/ledger/files/50ledger-gentoo-3.1.1.el |   5 +
 app-office/ledger/ledger-3.1.1.ebuild| 125 +++
 app-office/ledger/metadata.xml   |   3 +
 4 files changed, 134 insertions(+)

diff --git a/app-office/ledger/Manifest b/app-office/ledger/Manifest
index 40a419e..778c657 100644
--- a/app-office/ledger/Manifest
+++ b/app-office/ledger/Manifest
@@ -1,2 +1,3 @@
 DIST ledger-2.6.3.tar.gz 551325 SHA256 
e2c99d930fcf64b7fa901215c7fa25e3327f6365e8ee049620ef3632d53bf363 SHA512 
825e670d25d2f8d1791480fb5da4190f7b342ecc9b47bca60fd6f0e606e5af5f3f767ec7043339660396ef4c90451f4a4122d812b8761acf4ea964b67dbd43b5
 WHIRLPOOL 
e6d351ce8899079daa9cb0d1f9493b2b551a6d44e8ad7949c28ac8e544f80c87d54f06b350adfc21c4c8582e9042547313a506fa74096671bae30b462ae3e2df
+DIST ledger-3.1.1.tar.gz 842364 SHA256 
90f06561ab692b192d46d67bc106158da9c6c6813cc3848b503243a9dfd8548a SHA512 
3f81b98a414cdfc0e272de4e958770149fb1acc8bda880d270e1459ce35294a220c52820bb9af49a751ac3a80b878f81fc7799ba41e0a1be43eba72081351bf5
 WHIRLPOOL 
89a83818adbe206167dbfc999dd589f1943d199cf84979fa82754f597a863c115fec85bbdabc4413714b4253502833170e6327bfc0d2321c392b9a3d73400061
 DIST ledger-3.1.tar.gz 817624 SHA256 
eeb5d260729834923fc94822bcc54ca3080c434f81466a3f5dc4274b357ce694 SHA512 
caa84330eee05d3e88820e8afd4a906d22f6aaa9de4abc2f6813636754e052e6ec4d1b3d2fce68215aededc72651405c62aaf16a2c1b69d34e1b10ffece48519
 WHIRLPOOL 
fc3ce5e8eb59e1d4f83101063ebefd1379172c1be0e4f504079519924859b8127d616e7e3714837be49c7b38674b1684e321347d1f8561aeeba586b538341142

diff --git a/app-office/ledger/files/50ledger-gentoo-3.1.1.el 
b/app-office/ledger/files/50ledger-gentoo-3.1.1.el
new file mode 100644
index 000..1c2c5bd
--- /dev/null
+++ b/app-office/ledger/files/50ledger-gentoo-3.1.1.el
@@ -0,0 +1,5 @@
+
+;;; app-office/ledger site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'ledger-mode "ledger-mode" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/ledger-3.1.1.ebuild 
b/app-office/ledger/ledger-3.1.1.ebuild
new file mode 100644
index 000..13b8cfb
--- /dev/null
+++ b/app-office/ledger/ledger-3.1.1.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit check-reqs cmake-utils elisp-common python-single-r1
+
+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="doc emacs python"
+
+SITEFILE=50${PN}-gentoo-${PV}.el
+
+CHECKREQS_MEMORY=8G
+
+COMMON_DEPEND="
+   dev-libs/gmp:0
+   dev-libs/mpfr:0
+   emacs? ( virtual/emacs )
+   python? ( dev-libs/boost:=[python] )
+   !python? ( dev-libs/boost:= )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   python? ( dev-python/cheetah )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-libs/utfcpp
+   doc? ( sys-apps/texinfo )
+"
+
+DOCS=(README.md)
+
+# Building with python integration seems to fail without 8G available
+# RAM(!)  Since the memory check in check-reqs doesn't count swap, it
+# may be unfair to fail the build entirely on the memory test alone.
+# Therefore check-reqs_pkg_pretend is deliberately omitted so that we
+# ewarn but not not eerror.
+pkg_pretend() {
+   :
+}
+pkg_setup() {
+   if use python; then
+  check-reqs_pkg_setup
+  python-single-r1_pkg_setup
+   fi
+}
+
+src_prepare() {
+   # Want to type "info ledger" not "info ledger3"
+   sed -i -e 's/ledger3/ledger/g' \
+   doc/ledger3.texi \
+   doc/CMakeLists.txt \
+   test/CheckTexinfo.py \
+   tools/cleanup.sh \
+   tools/gendocs.sh \
+   tools/prepare-commit-msg \
+   tools/spellcheck.sh \
+   || die "Failed to update info file name in file contents"
+
+   mv doc/ledger{3,}.texi || die "Failed to rename info file name"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build emacs EMACSLISP)
+   $(cmake-utils_use_build doc DOCS)
+   $(cmake-utils_use_build doc WEB_DOCS)
+   $(cmake-utils_use_use python PYTHON)
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   use doc && cmake-utils_src_make doc
+}
+
+src_install() {
+ 

[gentoo-commits] repo/gentoo:master commit in: app-office/ledger/, app-office/ledger/files/

2015-11-10 Thread Erik Mackdanz
commit: 38e23b12679693b3ac1f44aa40dde39b5c9f2499
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Tue Nov 10 23:57:40 2015 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Tue Nov 10 23:57:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38e23b12

app-office/ledger: revbump to 3.1-r1

Adds IUSE="doc emacs".  Closing bug 564226

Package-Manager: portage-2.2.24

 app-office/ledger/files/50ledger-gentoo-3.1.el |  5 ++
 app-office/ledger/ledger-3.1-r1.ebuild | 71 ++
 2 files changed, 76 insertions(+)

diff --git a/app-office/ledger/files/50ledger-gentoo-3.1.el 
b/app-office/ledger/files/50ledger-gentoo-3.1.el
new file mode 100644
index 000..1c2c5bd
--- /dev/null
+++ b/app-office/ledger/files/50ledger-gentoo-3.1.el
@@ -0,0 +1,5 @@
+
+;;; app-office/ledger site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'ledger-mode "ledger-mode" "A mode for editing ledger data files." t)

diff --git a/app-office/ledger/ledger-3.1-r1.ebuild 
b/app-office/ledger/ledger-3.1-r1.ebuild
new file mode 100644
index 000..c1714fd
--- /dev/null
+++ b/app-office/ledger/ledger-3.1-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit cmake-utils elisp-common
+
+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="doc emacs"
+
+SITEFILE=50${PN}-gentoo-${PV}.el
+
+RDEPEND="
+   dev-libs/boost:=
+   dev-libs/gmp:0
+   dev-libs/mpfr:0
+   emacs? ( virtual/emacs )
+"
+DEPEND="${RDEPEND}
+   dev-libs/utfcpp
+   doc? ( sys-apps/texinfo )
+"
+
+DOCS=(README-1ST README.md)
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_build emacs EMACSLISP)
+   $(cmake-utils_use_build doc DOCS)
+   $(cmake-utils_use_build doc WEB_DOCS)
+   -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF}
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   use doc && cmake-utils_src_make doc
+}
+
+src_install() {
+   enable_cmake-utils_src_install
+
+   use emacs && elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+}
+
+pkg_postinst() {
+   use emacs && elisp-site-regen
+
+   einfo
+   einfo "Since version 3, vim support is released separately."
+   einfo "See https://github.com/ledger/vim-ledger;
+   einfo
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}
+
+# rainy day TODO:
+# - IUSE python
+# - IUSE test