diff options
author | 2019-08-27 14:00:33 +0300 | |
---|---|---|
committer | 2019-08-27 14:00:33 +0300 | |
commit | 5ef48b743de735a133387696ccec388f1ca76be2 (patch) | |
tree | 4907bff9c51ea6f950c8d5d735a22a76e0a3c14d /dev-qt/linguist | |
parent | dev-qt/qt3d: add USE="gamepad" (diff) | |
download | qt-5ef48b743de735a133387696ccec388f1ca76be2.tar.gz qt-5ef48b743de735a133387696ccec388f1ca76be2.tar.bz2 qt-5ef48b743de735a133387696ccec388f1ca76be2.zip |
dev-qt: add 5.15.9999
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Diffstat (limited to 'dev-qt/linguist')
-rw-r--r-- | dev-qt/linguist/linguist-5.15.9999.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/dev-qt/linguist/linguist-5.15.9999.ebuild b/dev-qt/linguist/linguist-5.15.9999.ebuild new file mode 100644 index 00000000..b09b8354 --- /dev/null +++ b/dev-qt/linguist/linguist-5.15.9999.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +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 ~amd64-fbsd" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/designer-${PV} + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtprintsupport-${PV} + ~dev-qt/qtwidgets-${PV} + ~dev-qt/qtxml-${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 +} |