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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8FE55158094 for ; Mon, 27 Jun 2022 06:40:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47961E0918; Mon, 27 Jun 2022 06:40:38 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AAE6E0918 for ; Mon, 27 Jun 2022 06:40:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D0A0D34134D for ; Mon, 27 Jun 2022 06:40:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37DCD4F2 for ; Mon, 27 Jun 2022 06:40:35 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1656312024.8d4a9dd58efa5da36c7bd6a6f655dda799ca0115.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/blt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/blt/blt-2.5.3-r1.ebuild X-VCS-Directories: dev-tcltk/blt/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 8d4a9dd58efa5da36c7bd6a6f655dda799ca0115 X-VCS-Branch: master Date: Mon, 27 Jun 2022 06:40:35 +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: 44188b4d-b857-4211-a279-0e5c51f549f3 X-Archives-Hash: e5acf4007e4014934a28c5724cd24c29 commit: 8d4a9dd58efa5da36c7bd6a6f655dda799ca0115 Author: Alfredo Tupone gentoo org> AuthorDate: Mon Jun 27 06:40:24 2022 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Mon Jun 27 06:40:24 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d4a9dd5 dev-tcltk/blt: fix globs expansion Closes: https://bugs.gentoo.org/839219 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-tcltk/blt/blt-2.5.3-r1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-tcltk/blt/blt-2.5.3-r1.ebuild b/dev-tcltk/blt/blt-2.5.3-r1.ebuild index eca6138d56f8..3332aa195afb 100644 --- a/dev-tcltk/blt/blt-2.5.3-r1.ebuild +++ b/dev-tcltk/blt/blt-2.5.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -122,9 +122,11 @@ src_install() { dodoc NEWS PROBLEMS README docinto html dodoc html/*.html - for f in `ls "${ED}"/usr/share/man/mann` ; do - mv "${ED}"/usr/share/man/mann/${f} "${ED}"/usr/share/man/mann/${f/.n/.nblt} || die + pushd "${ED}"/usr/share/man/mann + for f in * ; do + mv ${f} ${f/.n/.nblt} || die done + popd # fix for linking against shared lib with -lBLT or -lBLTlite dosym libBLT${SHVER}$(get_libname) /usr/$(get_libdir)/libBLT$(get_libname)