diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-01-19 16:40:34 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-01-19 16:43:21 -0500 |
commit | 4e9ea438490364ebbe1bdc6e83b9f7e77c1f26ca (patch) | |
tree | 529f8b861de4627b4f37baaf6f8f740d868a3729 /sci-libs/silo | |
parent | dev-python/vdf: Keyword 3.4 x86, #831504 (diff) | |
download | gentoo-4e9ea438490364ebbe1bdc6e83b9f7e77c1f26ca.tar.gz gentoo-4e9ea438490364ebbe1bdc6e83b9f7e77c1f26ca.tar.bz2 gentoo-4e9ea438490364ebbe1bdc6e83b9f7e77c1f26ca.zip |
sci-libs/silo: fix build with minimal QT
Closes: https://bugs.gentoo.org/831361
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'sci-libs/silo')
-rw-r--r-- | sci-libs/silo/files/silo-4.11-widgets.patch | 11 | ||||
-rw-r--r-- | sci-libs/silo/silo-4.11-r1.ebuild | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sci-libs/silo/files/silo-4.11-widgets.patch b/sci-libs/silo/files/silo-4.11-widgets.patch new file mode 100644 index 000000000000..46ef1834ca22 --- /dev/null +++ b/sci-libs/silo/files/silo-4.11-widgets.patch @@ -0,0 +1,11 @@ +On a minimal QT installation, widgets may not necessarily be +added and it needs to be explicitely done. Modifying ./configure +directly given tarball lacks some files to run eautoreconf. + +https://bugs.gentoo.org/831361 +--- a/configure ++++ b/configure +@@ -25748,2 +25748,3 @@ + qtHaveModule(testlib): QT += testlib ++qtHaveModule(widgets): QT += widgets + percent.target = % diff --git a/sci-libs/silo/silo-4.11-r1.ebuild b/sci-libs/silo/silo-4.11-r1.ebuild index f4c780ba2a3c..3372e92a569c 100644 --- a/sci-libs/silo/silo-4.11-r1.ebuild +++ b/sci-libs/silo/silo-4.11-r1.ebuild @@ -31,6 +31,7 @@ PATCHES=( "${FILESDIR}"/${P}-test-disable-largefile.patch "${FILESDIR}"/${P}-tests.patch "${FILESDIR}"/${P}-testsuite-python-write.patch + "${FILESDIR}"/${P}-widgets.patch ) src_configure() { |