diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-09-05 21:02:10 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-09-08 18:54:37 +0200 |
commit | 0cd0d97cae04b916addeaf83f7d6651becbd235c (patch) | |
tree | 47b0de7f47e37ac088aebe3a981c8cc21b36fb6d /dev-qt/linguist | |
parent | dev-qt/linguist-tools: 5.15.2-r10 version bump at KDE 33693a92 (diff) | |
download | gentoo-0cd0d97cae04b916addeaf83f7d6651becbd235c.tar.gz gentoo-0cd0d97cae04b916addeaf83f7d6651becbd235c.tar.bz2 gentoo-0cd0d97cae04b916addeaf83f7d6651becbd235c.zip |
dev-qt/linguist: 5.15.2-r10 version bump at KDE 33693a92
- EAPI-8 bump
- Switch from ~PV to =QT5_PV* version dependencies
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/linguist')
-rw-r--r-- | dev-qt/linguist/Manifest | 1 | ||||
-rw-r--r-- | dev-qt/linguist/linguist-5.15.2-r10.ebuild | 50 |
2 files changed, 51 insertions, 0 deletions
diff --git a/dev-qt/linguist/Manifest b/dev-qt/linguist/Manifest index c9faaf55f594..2ad3df5c2a7f 100644 --- a/dev-qt/linguist/Manifest +++ b/dev-qt/linguist/Manifest @@ -1 +1,2 @@ +DIST qttools-5.15.2-33693a92.tar.gz 12266718 BLAKE2B c519abdcca9df3b191297b859b2dce417ee9a79f9e3bcb3f2aa0017266b8edc855645108f5f7e6853d28f4c7507c92646ce8130731a345c6ffdfcd37fb1f4789 SHA512 9a62f1849c8eb65384d19de61cb6a08d1f467877181fd752e58b2b4e7d566c5d868c7ebab2d01591c6f540c01c705b7f8e0fe76c26cb0ee78f590ddae57048d2 DIST qttools-everywhere-src-5.15.2.tar.xz 8894728 BLAKE2B bbc57c58a43f827cfa04031f12d46d4d660456e4a5feabe17fdbb42126da06ed7031807fe963883d452fd1916330e94fcc66b9e9bb69ee4455a38bf3cbd80f5a SHA512 3bd32a302af6e81cd5d4eb07d60c5ef233f1ca7af1aae180c933ac28fafffce28c6c868eb032108747937ea951d6d4f0df5516841bc65d22c529207147533a8b diff --git a/dev-qt/linguist/linguist-5.15.2-r10.ebuild b/dev-qt/linguist/linguist-5.15.2-r10.ebuild new file mode 100644 index 000000000000..e4d9d4505f59 --- /dev/null +++ b/dev-qt/linguist/linguist-5.15.2-r10.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +KDE_ORG_COMMIT=33693a928986006d79c1ee743733cde5966ac402 +QT5_MODULE="qttools" +inherit desktop qt5-build xdg-utils + +DESCRIPTION="Graphical tool for translating Qt applications" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + =dev-qt/designer-${QT5_PV}* + =dev-qt/qtcore-${QT5_PV}*:5= + =dev-qt/qtgui-${QT5_PV}*:5= + =dev-qt/qtprintsupport-${QT5_PV}* + =dev-qt/qtwidgets-${QT5_PV}* + =dev-qt/qtxml-${QT5_PV}* +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/linguist/linguist +) + +src_install() { + qt5-build_src_install + + local size + for size in 16 32 48 64 128; do + newicon -s ${size} src/linguist/linguist/images/icons/linguist-${size}-32.png linguist.png + done + make_desktop_entry "${QT5_BINDIR}"/linguist 'Qt 5 Linguist' linguist 'Qt;Development;Translation' +} + +pkg_postinst() { + qt5-build_pkg_postinst + xdg_icon_cache_update +} + +pkg_postrm() { + qt5-build_pkg_postrm + xdg_icon_cache_update +} |