diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-07-13 22:46:45 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-07-13 22:50:01 +0200 |
commit | ea01d07c76b705e48d8d3a4600856746ce596e95 (patch) | |
tree | 11abb713ee2d1cf09ef62389e18dd03cbac691e0 /kde-apps/kig | |
parent | dev-java/hawtjni-runtime: keyword ~arm64 (diff) | |
download | gentoo-ea01d07c76b705e48d8d3a4600856746ce596e95.tar.gz gentoo-ea01d07c76b705e48d8d3a4600856746ce596e95.tar.bz2 gentoo-ea01d07c76b705e48d8d3a4600856746ce596e95.zip |
kde-apps: Add KDE Applications 17.04.3
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'kde-apps/kig')
-rw-r--r-- | kde-apps/kig/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/kig/kig-17.04.3.ebuild | 62 |
2 files changed, 63 insertions, 0 deletions
diff --git a/kde-apps/kig/Manifest b/kde-apps/kig/Manifest index 82e54fa3f058..fe6e5db492cd 100644 --- a/kde-apps/kig/Manifest +++ b/kde-apps/kig/Manifest @@ -1,2 +1,3 @@ DIST kig-16.12.3.tar.xz 1517896 SHA256 1c3e53df5f1a47d396d6072e5532699cf78127a81d104ff6c7ea6acb787fd43a SHA512 b7cda3ac927cff4e71efe0cbdfba3c60a8d1b0050f926e3791aee493419b4af05165c603a82d51f55c80ac05476d3c44d46932415fac3d575bf77a45ec965b47 WHIRLPOOL 60e93cfd73e2c6073a2bb3cbbc9a8138f75c00c256463dfd703ac9821b81e46393ceedc60376eb76ff76be006ffd45c265679e7f114c777d7c9ae0efbe2b96b7 DIST kig-17.04.2.tar.xz 3588452 SHA256 37507f3fc09ec797c3a9976e1c2df5d63029b1e988398da98cf9629c91a02f70 SHA512 6f1993044765916abd676d180332b210f091595c6cdbfde8a0c2c4e95a93ceaa9d19fb6c2c589e9b0e3eaf3a62b5f0cbf8e285866c48dd1a655a7900a13d81ab WHIRLPOOL fc8ba8653e1361072b0ab0cb9018ce74e93fd0e3c370c6b1ee2ace2127ca7e496c1990f18c68305e5ee2ba9d3c406b71aff6f54aaabe28b49d44b6371152941e +DIST kig-17.04.3.tar.xz 3588428 SHA256 8dae8af9d49c491efedb32e74d1a1123ac91fefdaf6b011592124497d2021ce5 SHA512 0f38450c5f48a60cd47862dd020ee753fca3f3c0ba4758e5973656dac14e96283943c644cd639df36f2f35bf3ed46c49952e14f337991a59e394479ea44c9e22 WHIRLPOOL b3a35360c05e0c46eb52fea0a2e72978c3464a2d53d5076cce51f5b2adafa7efdfa4bebb49cfd33f2039488e9a82a07d5f9db2652ab1c55fcd975dfc2d578bc7 diff --git a/kde-apps/kig/kig-17.04.3.ebuild b/kde-apps/kig/kig-17.04.3.ebuild new file mode 100644 index 000000000000..c28dbdb68ab7 --- /dev/null +++ b/kde-apps/kig/kig-17.04.3.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +KDE_HANDBOOK="forceoptional" +KDE_TEST="optional" +PYTHON_COMPAT=( python2_7 ) +inherit python-single-r1 kde5 + +DESCRIPTION="KDE Interactive Geometry tool" +HOMEPAGE="https://www.kde.org/applications/education/kig https://edu.kde.org/kig" +KEYWORDS="~amd64 ~x86" +IUSE="geogebra scripting" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kcrash) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kservice) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtgui) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtxml) + geogebra? ( $(add_qt_dep qtxmlpatterns) ) + scripting? ( >=dev-libs/boost-1.48:=[python,${PYTHON_USEDEP}] ) +" +DEPEND="${RDEPEND} + $(add_frameworks_dep ktexteditor) +" + +PATCHES=( "${FILESDIR}/${PN}-4.12.0-boostpython.patch" ) + +pkg_setup() { + python-single-r1_pkg_setup + kde5_pkg_setup +} + +src_prepare() { + kde5_src_prepare + python_fix_shebang . +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package geogebra Qt5XmlPatterns) + $(cmake-utils_use_find_package scripting BoostPython) + ) + + kde5_src_configure +} |