Diff colm-0.14.7-r1 with a colm-0.14.7-r2

/usr/portage/dev-util/colm/colm-0.14.7-r2.ebuild 2023-10-09 14:52:30.956368387 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
36 36
	sed -i -e 's/(\[ASCIIDOC\], \[asciidoc\], \[asciidoc\]/S([ASCIIDOC], [asciidoc asciidoctor]/' configure.ac || die
37 37

  
38 38
	# bug #766069
39
	sed -i -e "s:gcc:$(tc-getCC) ${CFLAGS}:" src/main.cc || die
40
	sed -i -e "s:gcc:$(tc-getCC):" test/colm.d/gentests.sh || die
41
	sed -i -e "s:g++:$(tc-getCXX):" test/colm.d/gentests.sh || die
39
	sed -i -e "s|gcc|$(tc-getCC) ${CFLAGS}|" src/main.cc || die
40
	sed -i -e "s|gcc|$(tc-getCC)|" test/colm.d/gentests.sh || die
41
	sed -i -e "s|g++|$(tc-getCXX)|" test/colm.d/gentests.sh || die
42 42

  
43 43
	# fix linkage on Darwin from colm itself during build
44 44
	if [[ ${CHOST} == *-darwin* ]] ; then
......
60 60
	cd test || die
61 61
	./runtests || die
62 62
}
63

  
64
src_install() {
65
	default
66
	find "${ED}" -type f -name '*.la' -delete || die
67
}
Thank you!