From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 49389158086 for ; Tue, 26 Oct 2021 12:12:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10AD6E0839; Tue, 26 Oct 2021 12:12:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E586DE0839 for ; Tue, 26 Oct 2021 12:12:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D47C3437AC for ; Tue, 26 Oct 2021 12:12:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18136EA for ; Tue, 26 Oct 2021 12:12:03 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1635250289.1fb68a666be96f0ceaedd843d4c5437fab14e1a5.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/dosbox/files/, games-emulation/dosbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/dosbox/dosbox-0.75_pre4302.ebuild games-emulation/dosbox/files/dosbox-0.75-glide-libdl.patch X-VCS-Directories: games-emulation/dosbox/files/ games-emulation/dosbox/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 1fb68a666be96f0ceaedd843d4c5437fab14e1a5 X-VCS-Branch: master Date: Tue, 26 Oct 2021 12:12:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e21cb80b-3976-447a-8bc1-1dfe3fa57d90 X-Archives-Hash: e90597a4c428ffecd18327af3954da62 commit: 1fb68a666be96f0ceaedd843d4c5437fab14e1a5 Author: James Le Cuirot gentoo org> AuthorDate: Tue Oct 26 12:11:29 2021 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Tue Oct 26 12:11:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb68a66 games-emulation/dosbox: Fix 0.75_pre4302 with USE="-alsa glide" Closes: https://bugs.gentoo.org/780015 Signed-off-by: James Le Cuirot gentoo.org> games-emulation/dosbox/dosbox-0.75_pre4302.ebuild | 2 +- .../dosbox/files/dosbox-0.75-glide-libdl.patch | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/games-emulation/dosbox/dosbox-0.75_pre4302.ebuild b/games-emulation/dosbox/dosbox-0.75_pre4302.ebuild index 8ae6d980d50..4cf2a4a4d98 100644 --- a/games-emulation/dosbox/dosbox-0.75_pre4302.ebuild +++ b/games-emulation/dosbox/dosbox-0.75_pre4302.ebuild @@ -54,7 +54,7 @@ PATCHES=( ) src_prepare() { - use glide && eapply "${DISTDIR}"/dosbox_glide-${GLIDE_PATCH}.diff + use glide && eapply "${DISTDIR}"/dosbox_glide-${GLIDE_PATCH}.diff "${FILESDIR}"/${PN}-0.75-glide-libdl.patch default eautoreconf } diff --git a/games-emulation/dosbox/files/dosbox-0.75-glide-libdl.patch b/games-emulation/dosbox/files/dosbox-0.75-glide-libdl.patch new file mode 100644 index 00000000000..524c5839672 --- /dev/null +++ b/games-emulation/dosbox/files/dosbox-0.75-glide-libdl.patch @@ -0,0 +1,18 @@ +https://github.com/voyageur/openglide/pull/25 + +diff -Naur dosbox.orig/configure.ac dosbox/configure.ac +--- dosbox.orig/configure.ac 2021-10-26 13:06:35.585761330 +0100 ++++ dosbox/configure.ac 2021-10-26 13:07:31.641323631 +0100 +@@ -20,6 +20,12 @@ + AC_PROG_RANLIB + AM_PROG_AR + ++dnl The dlopen() function is in the C library for *BSD and in ++dnl libdl on GLIBC-based systems ++AC_SEARCH_LIBS([dlopen], [dl dld], [], [ ++ AC_MSG_ERROR([unable to find the dlopen() function]) ++]) ++ + dnl Some needed libaries for OS2 + dnl perharps join this with the other target depended checks. move them upwards + if test x$host = xi386-pc-os2-emx ; then