commit: be23a9b584a5ac3bd1b6ea046b0f7d90e930a534 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Wed Feb 14 20:59:19 2018 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Wed Feb 14 20:59:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be23a9b5
dev-db/qt5-sqlcipher: Fix build with Qt 5.9.4. Cached files for Qt versions 5.9.3 and 5.9.4 are identical, so simpy copy them. Bug: https://bugs.gentoo.org/647624 Package-Manager: Portage-2.3.24, Repoman-2.3.6 dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild b/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild index 75caf3f0bb1..74d3f8006b7 100644 --- a/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild +++ b/dev-db/qt5-sqlcipher/qt5-sqlcipher-0.1.1_pre20171202.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -24,6 +24,8 @@ DOCS=(README.md) src_prepare() { eapply "${FILESDIR}"/${PN}-install-path.patch sed -i -e "s/@LIBDIR@/$(get_libdir)/" CMakeLists.txt || die + # workaround for bug 647624 (Qt 5.9.3 and 5.9.4 files are identical) + cp -R qt-file-cache/5.9.{3,4} || die cmake-utils_src_prepare }
