diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-28 20:07:49 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-03-01 10:24:37 +0100 |
commit | 1b4c9f2dbdb4fb32ab0250f0f5904a6985881059 (patch) | |
tree | bf72c58aa1c524fd65380ffa26b406148449b0ec /dev-qt/qtimageformats | |
parent | qt5-build.eclass: Relocate QT5_DOCDIR to /usr/share/qt5-doc (diff) | |
download | gentoo-1b4c9f2dbdb4fb32ab0250f0f5904a6985881059.tar.gz gentoo-1b4c9f2dbdb4fb32ab0250f0f5904a6985881059.tar.bz2 gentoo-1b4c9f2dbdb4fb32ab0250f0f5904a6985881059.zip |
dev-qt: Add Qt 5.12.1
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtimageformats')
-rw-r--r-- | dev-qt/qtimageformats/Manifest | 1 | ||||
-rw-r--r-- | dev-qt/qtimageformats/qtimageformats-5.12.1.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest index 41eab6e0da49..29b1b2bd55a6 100644 --- a/dev-qt/qtimageformats/Manifest +++ b/dev-qt/qtimageformats/Manifest @@ -1 +1,2 @@ DIST qtimageformats-everywhere-src-5.11.3.tar.xz 2197304 BLAKE2B 9041260c26b2ec5085a10c05a76dcab59941ae3d18475b93286028b9a4bbafc923795f6f0ec7a0e6b45cf95c21a37fbc76d0868cdbb6ed8891360310cce868b4 SHA512 5e2b83c2a7cc337ca0cc80e348ee41cfead3429245ec0aa18bdef945c85aa878ba684f5d410bca04d0183e0f6032a78b976ba89346043c0a49816c306d0235f7 +DIST qtimageformats-everywhere-src-5.12.1.tar.xz 1782660 BLAKE2B 6eb8da56ac75f3afd511b250c97148f71dae5be6a0da9f240b42c9e013a9a0bd6a7aeda77f87eaa69e4898d869dd336fd6cb8605baf79eb193f3251cc8274fac SHA512 1514c5d7a285d718fdf1f3ba11f00029551af70e8b7bd927e061c55a35fca6978164da2846f26b6d57a4c81af2a75eb3f8358f46fa74bd70ba3407aa3bbcb0e5 diff --git a/dev-qt/qtimageformats/qtimageformats-5.12.1.ebuild b/dev-qt/qtimageformats/qtimageformats-5.12.1.ebuild new file mode 100644 index 000000000000..37e545353652 --- /dev/null +++ b/dev-qt/qtimageformats/qtimageformats-5.12.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Additional format plugins for the Qt image I/O system" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86" +fi + +IUSE="jpeg2k mng" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV} + media-libs/libwebp:= + media-libs/tiff:0 + jpeg2k? ( media-libs/jasper:= ) + mng? ( media-libs/libmng:= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + qt_use_compile_test jpeg2k jasper + qt_use_compile_test mng libmng + qt5-build_src_configure +} |