commit: 22d77000f2e9736a0b19437b626f4f89d9c697f5 Author: Tupone Alfredo <tupone <AT> gentoo <DOT> org> AuthorDate: Fri Apr 5 08:38:19 2019 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Fri Apr 5 08:38:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d77000
dev-lang/polyml: Fix build, sem_wait found on libpthread Closes: https://bugs.gentoo.org/606096 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 dev-lang/polyml/files/polyml-5.6-configure.patch | 11 +++++++++++ dev-lang/polyml/polyml-5.6.ebuild | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/dev-lang/polyml/files/polyml-5.6-configure.patch b/dev-lang/polyml/files/polyml-5.6-configure.patch new file mode 100644 index 00000000000..ba3b6bbbd5a --- /dev/null +++ b/dev-lang/polyml/files/polyml-5.6-configure.patch @@ -0,0 +1,11 @@ +--- a/configure.ac 2019-04-05 10:27:19.026197625 +0200 ++++ b/configure.ac 2019-04-05 10:28:10.187291374 +0200 +@@ -133,7 +133,7 @@ + # Solaris needs -lsocket, -lnsl and -lrt + AC_SEARCH_LIBS([gethostbyname], [nsl]) + AC_SEARCH_LIBS([getsockopt], [socket]) +-AC_SEARCH_LIBS([sem_wait], [rt]) ++AC_SEARCH_LIBS([sem_wait], [rt] [pthread]) + + # Check for X and Motif headers and libraries + AC_PATH_X diff --git a/dev-lang/polyml/polyml-5.6.ebuild b/dev-lang/polyml/polyml-5.6.ebuild index 6cdf4fdd6fb..1182c2d0766 100644 --- a/dev-lang/polyml/polyml-5.6.ebuild +++ b/dev-lang/polyml/polyml-5.6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -20,6 +20,8 @@ RDEPEND="X? ( x11-libs/motif:0 ) virtual/libffi" DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}"/${P}-configure.patch ) + src_prepare() { default eautoreconf
