From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3E3151584AD for ; Sun, 13 Apr 2025 17:31:35 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2458F3430AE for ; Sun, 13 Apr 2025 17:31:35 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 1BE991104B0; Sun, 13 Apr 2025 17:31:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 162D81104B0 for ; Sun, 13 Apr 2025 17:31:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C55363430AB for ; Sun, 13 Apr 2025 17:31:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24EB41748 for ; Sun, 13 Apr 2025 17:31:32 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1744565487.06b98b354413cbe2e87d14cd0f6f772b12d5a0d9.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Locale-gettext/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild X-VCS-Directories: dev-perl/Locale-gettext/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 06b98b354413cbe2e87d14cd0f6f772b12d5a0d9 X-VCS-Branch: master Date: Sun, 13 Apr 2025 17:31:32 +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: b64d58c0-1541-491b-b55d-f38404b12523 X-Archives-Hash: 6c83515d278442b47be59850b05397f6 commit: 06b98b354413cbe2e87d14cd0f6f772b12d5a0d9 Author: Fabian Groffen gentoo org> AuthorDate: Sun Apr 13 07:15:21 2025 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Apr 13 17:31:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06b98b35 dev-perl/Locale-gettext: fix final object with libintl on Solaris Ensure we reference libintl from Prefix, so ld won't fail while using the object. Signed-off-by: Fabian Groffen gentoo.org> dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild b/dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild index 3b68978e3b32..66a2d0346821 100644 --- a/dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild +++ b/dev-perl/Locale-gettext/Locale-gettext-1.70.0_p20181130.ebuild @@ -31,3 +31,9 @@ PATCHES=( "${FILESDIR}/${PN}-1.70.0-tests.patch" "${FILESDIR}/${PN}-1.70.0_p20181130-config-log.patch" ) + +src_compile() { + # Makefile.PL cannot know we use libintl over system + [[ ${CHOST} == *-solaris* ]] && export LDLOADLIBS="-lintl" + default +}