Skip to content

Commit

Permalink
dev-tcltk/blt: fix globs expansion
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/839219
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <[email protected]>
  • Loading branch information
atupone committed Jun 27, 2022
1 parent 641255d commit 8d4a9dd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions dev-tcltk/blt/blt-2.5.3-r1.ebuild
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 8d4a9dd

Please sign in to comment.