diff options
Diffstat (limited to 'app-office/skrooge/skrooge-1.12.0.ebuild')
-rw-r--r-- | app-office/skrooge/skrooge-1.12.0.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app-office/skrooge/skrooge-1.12.0.ebuild b/app-office/skrooge/skrooge-1.12.0.ebuild new file mode 100644 index 000000000000..632459d897c9 --- /dev/null +++ b/app-office/skrooge/skrooge-1.12.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KDE_LINGUAS="ast bg bs ca ca@valencia cs da de el en_GB eo es et fi fr ga gl hu +ia it ja ko lt mr ms nb nds nl pl pt pt_BR ro ru sk sv tr ug uk zh_CN zh_TW" +KDE_HANDBOOK="optional" +inherit kde4-base + +DESCRIPTION="Personal finances manager for KDE4, aiming at being simple and intuitive" +HOMEPAGE="http://www.skrooge.org/" +SRC_URI="mirror://kde/stable/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND=" + $(add_kdebase_dep kactivities) + $(add_kdebase_dep kdepimlibs) + app-crypt/qca:2[qt4] + dev-db/sqlite:3 + dev-libs/grantlee:0 + >=dev-libs/libofx-0.9.1 + dev-libs/qjson + dev-qt/qtsql:4[sqlite] +" +RDEPEND="${DEPEND} + $(add_kdeapps_dep kde-dev-scripts) +" + +# upstream does not ship tests in releases +if [[ ${KDE_BUILD_TYPE} != live ]]; then + RESTRICT="test" +fi + +DOCS=( AUTHORS CHANGELOG README TODO ) + +src_test() { + local mycmakeargs=( + -DSKG_BUILD_TEST=ON + ) + kde4-base_src_test +} |