Diff squirrelsh-1.2.7 with a squirrelsh-1.2.7-r1

/usr/portage/app-shells/squirrelsh/squirrelsh-1.2.7-r1.ebuild 2023-10-09 14:52:28.860368334 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
inherit toolchain-funcs
6
inherit edo toolchain-funcs
7 7

  
8 8
DESCRIPTION="Cross-platform object-oriented scripting shell using the squirrel language"
9 9
HOMEPAGE="http://squirrelsh.sourceforge.net/"
......
25 25
	"${FILESDIR}"/${PN}-remove-forced-abi.patch
26 26
	"${FILESDIR}"/${PN}-no-docs.patch
27 27
	"${FILESDIR}"/${P}-gcc6.patch
28
	"${FILESDIR}"/${PN}-drop-register.patch
28 29
)
29 30

  
30 31
src_configure() {
31
	#This package uses a custom written configure script
32
	./configure --prefix="${D}"/usr \
32
	# This package uses a custom written configure script
33
	edo ./configure --prefix="${D}"/usr \
33 34
		--with-cc="$(tc-getCC)" \
34 35
		--with-cpp="$(tc-getCXX)" \
35 36
		--with-linker="$(tc-getCXX)" \
36 37
		--libdir=/usr/"$(get_libdir)" \
37 38
		--with-pcre="system" \
38 39
		--with-squirrel="local" \
39
		--with-mime=no || die "configure failed"
40
		--with-mime=no
40 41
}
41 42

  
42 43
src_install() {
Thank you!