diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-08 23:50:47 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-12-09 17:49:59 +0100 |
commit | 92ce08d47d7105b5d7a8c7140798a277b9b844ea (patch) | |
tree | 41bca5c9474de6cec35e12d8490260764da53970 /kde-frameworks/ki18n | |
parent | kde5-functions: Raise QT_MINIMAL to 5.11.1 (diff) | |
download | gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.tar.gz gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.tar.bz2 gentoo-92ce08d47d7105b5d7a8c7140798a277b9b844ea.zip |
kde-frameworks: Add KDE Frameworks 5.53.0
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-frameworks/ki18n')
-rw-r--r-- | kde-frameworks/ki18n/Manifest | 1 | ||||
-rw-r--r-- | kde-frameworks/ki18n/ki18n-5.53.0.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/kde-frameworks/ki18n/Manifest b/kde-frameworks/ki18n/Manifest index 926cfc61f9b2..04bb6421c43a 100644 --- a/kde-frameworks/ki18n/Manifest +++ b/kde-frameworks/ki18n/Manifest @@ -1 +1,2 @@ DIST ki18n-5.52.0.tar.xz 586776 BLAKE2B 4470c9d38716b3fc6fb66c484eafc75ee367fdf4da8f75cca3343186d9cee7680c972e4f20e343e6a175cef0350a9b142ca5f465ce6075ecaa7e0a30635a19b4 SHA512 67bebc2dbc92d4ebe49760b5a7bd5fe0f6e1cbebda35a72ba45722a22790e802ca35e66ffaa648fea79c55a0b7ea4def3deda303279c8c602838500c47e4bd08 +DIST ki18n-5.53.0.tar.xz 586924 BLAKE2B b7b67ba5eae6c54c43823aadd4b12a1ddcdc1e3dc2bcf0449d1e0fb374fb55fa5ca9c6c4995fd8c519cb35b68db7281b2115665c86779452d1b70340ed48589a SHA512 c8cf728926b66255650a7cb6cdd5b70c9a9a8d73ca95f54823f6aebabf4d7551efbe5d8a92831238a7216311006bd174e3b7a1580d985a1d681b4201726ddffb diff --git a/kde-frameworks/ki18n/ki18n-5.53.0.ebuild b/kde-frameworks/ki18n/ki18n-5.53.0.ebuild new file mode 100644 index 000000000000..6e63b66ca3a4 --- /dev/null +++ b/kde-frameworks/ki18n/ki18n-5.53.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) +inherit kde5 python-single-r1 + +DESCRIPTION="Framework based on Gettext for internationalizing user interface text" +LICENSE="LGPL-2+" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + $(add_qt_dep qtdeclarative) + sys-devel/gettext + virtual/libintl +" +DEPEND="${RDEPEND} + test? ( $(add_qt_dep qtconcurrent) ) +" + +pkg_setup() { + kde5_pkg_setup + python-single-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DPYTHON_EXECUTABLE="${PYTHON}" + ) + kde5_src_configure +} |