Diff patch-2.7.6-r4 with a patch-2.7.6-r5

/usr/portage/sys-devel/patch/patch-2.7.6-r5.ebuild 2023-10-09 14:52:35.492368501 +0300
1 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 6
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/patch.asc
7 7
inherit flag-o-matic verify-sig
......
42 42

  
43 43
	local myeconfargs=(
44 44
		$(use_enable xattr)
45
		# rename to gpatch for better BSD compatibility
46
		--program-prefix=g
45 47
	)
46 48
	# Do not let $ED mess up the search for `ed` 470210.
47 49
	ac_cv_path_ED=$(type -P ed) \
48 50
		econf "${myeconfargs[@]}"
49 51
}
52

  
53
src_install() {
54
	default
55

  
56
	# symlink to the standard name
57
	dosym gpatch /usr/bin/patch
58
	dosym gpatch.1 /usr/share/man/man1/patch.1
59
}
Thank you!