forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-office/skrooge: 2.20.0 version bump
Package-Manager: Portage-2.3.67, Repoman-2.3.15 Signed-off-by: Andreas Sturmlechner <[email protected]>
- Loading branch information
Showing
2 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST skrooge-2.19.1.tar.xz 21111836 BLAKE2B 5a1a7a8212699ce657e33f5b2ab12b305a3c6840dccaeff20fc42796b3587d02a60cd1f2313909b6411e9ad71c4f1bd254349d9a9846c6707a31736507713fef SHA512 4c9addaf56bda0a575c995a2d9229927f6c23ca1931d8ea50ec83afab31149006fd0cc339af79afe0d046c00b5d3dbe4c629e48eac404a31fbe45b3747dcb869 | ||
DIST skrooge-2.20.0.tar.xz 21787404 BLAKE2B b289bbec8d6e369298a142360cc07c6d522d44969c55c68de70df4a9ad574e2a07e9b349091bb8b902408afc709552692557363ef9e7ca2a4375abc41236cd3f SHA512 5b4a9b5b17e24e222a99024bfed03d126df117d4b0af5b5828248ecb08df72dc595225290f811c9a5d45b552f465d361f19f95c4c1ef492bb39db38aa68fa96c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
KDE_HANDBOOK="optional" | ||
KDE_TEST="forceoptional" | ||
VIRTUALX_REQUIRED="test" | ||
inherit kde5 | ||
|
||
DESCRIPTION="Personal finances manager, aiming at being simple and intuitive" | ||
HOMEPAGE="https://skrooge.org/" | ||
[[ ${PV} == 9999 ]] || SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz" | ||
|
||
LICENSE="GPL-2" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="activities designer kde ofx webkit" | ||
|
||
REQUIRED_USE="test? ( designer )" | ||
|
||
BDEPEND=" | ||
dev-libs/libxslt | ||
virtual/pkgconfig | ||
" | ||
COMMON_DEPEND=" | ||
$(add_frameworks_dep karchive) | ||
$(add_frameworks_dep kcompletion) | ||
$(add_frameworks_dep kconfig) | ||
$(add_frameworks_dep kconfigwidgets) | ||
$(add_frameworks_dep kcoreaddons) | ||
$(add_frameworks_dep kdbusaddons) | ||
$(add_frameworks_dep ki18n) | ||
$(add_frameworks_dep kiconthemes) | ||
$(add_frameworks_dep kio) | ||
$(add_frameworks_dep kitemviews) | ||
$(add_frameworks_dep knewstuff) | ||
$(add_frameworks_dep knotifications) | ||
$(add_frameworks_dep knotifyconfig) | ||
$(add_frameworks_dep kparts) | ||
$(add_frameworks_dep kservice) | ||
$(add_frameworks_dep ktextwidgets) | ||
$(add_frameworks_dep kwallet) | ||
$(add_frameworks_dep kwidgetsaddons) | ||
$(add_frameworks_dep kxmlgui) | ||
$(add_qt_dep qtconcurrent) | ||
$(add_qt_dep qtdbus) | ||
$(add_qt_dep qtdeclarative 'widgets') | ||
$(add_qt_dep qtgui) | ||
$(add_qt_dep qtnetwork) | ||
$(add_qt_dep qtprintsupport) | ||
$(add_qt_dep qtscript) | ||
$(add_qt_dep qtsql '' '' '5=') | ||
$(add_qt_dep qtsvg) | ||
$(add_qt_dep qtwidgets) | ||
$(add_qt_dep qtxml) | ||
app-crypt/qca:2[qt5(+)] | ||
dev-db/sqlcipher | ||
dev-libs/grantlee:5 | ||
activities? ( $(add_frameworks_dep kactivities) ) | ||
kde? ( $(add_frameworks_dep krunner) ) | ||
ofx? ( dev-libs/libofx ) | ||
webkit? ( >=dev-qt/qtwebkit-5.212.0_pre20180120:5 ) | ||
!webkit? ( $(add_qt_dep qtwebengine 'widgets') ) | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
$(add_frameworks_dep kguiaddons) | ||
$(add_frameworks_dep kjobwidgets) | ||
$(add_frameworks_dep kwindowsystem) | ||
designer? ( | ||
$(add_frameworks_dep kdesignerplugin) | ||
$(add_qt_dep designer) | ||
) | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
$(add_qt_dep qtquickcontrols) | ||
" | ||
|
||
# hangs + installs files | ||
RESTRICT+=" test" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DSKG_BUILD_TEST=$(usex test) | ||
-DSKG_DESIGNER=$(usex designer) | ||
$(cmake-utils_use_find_package activities KF5Activities) | ||
$(cmake-utils_use_find_package kde KF5Runner) | ||
$(cmake-utils_use_find_package ofx LibOfx) | ||
-DSKG_WEBENGINE=$(usex !webkit) | ||
) | ||
|
||
kde5_src_configure | ||
} | ||
|
||
src_test() { | ||
local mycmakeargs=( | ||
-DSKG_BUILD_TEST=ON | ||
) | ||
kde5_src_test | ||
} |