Diff grfcodec-6.0.6_p20210310-r1 with a grfcodec-6.0.6_p20230811-r1

/usr/portage/games-util/grfcodec/grfcodec-6.0.6_p20230811-r1.ebuild 2023-10-09 14:52:31.148368392 +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
5 5

  
6 6
inherit cmake vcs-snapshot
7 7

  
8
COMMIT=045774dee7cab1a618a3e0d9b39bff78a12b6efa
8
COMMIT=d5a7b850bcef30c0bfd17ceeb4a18c431770f468
9 9

  
10 10
DESCRIPTION="A suite of programs to modify openttd/Transport Tycoon Deluxe's GRF files"
11 11
HOMEPAGE="https://github.com/OpenTTD/grfcodec"
......
19 19
DEPEND="${RDEPEND}
20 20
	dev-libs/boost"
21 21

  
22
PATCHES=( "${FILESDIR}"/${PV} )
22
PATCHES=(
23
	# Bug #894648
24
	"${FILESDIR}"/${P}-no-fortify-source.patch
25

  
26
	# Bug #912189
27
	"${FILESDIR}"/${P}-action-5.patch
28
)
23 29

  
24 30
src_configure() {
25 31
	local mycmakeargs=(
Thank you!