Diff quat-1.20-r2 with a quat-1.20-r3

/usr/portage/media-gfx/quat/quat-1.20-r3.ebuild 2023-10-09 14:52:31.644368404 +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

  
6
inherit flag-o-matic
5 7

  
6 8
DESCRIPTION="A 3D quaternionic fractal generator"
7 9
HOMEPAGE="http://www.physcip.uni-stuttgart.de/phy11733/quat_e.html"
......
23 25
"
24 26
RDEPEND="${DEPEND}"
25 27

  
28
PATCHES=( "${FILESDIR}/${P}-fix-build-for-clang16.patch" )
29

  
26 30
src_configure() {
31
	# throws tons of warnings otherwise
32
	append-cxxflags -Wno-deprecated-declarations -Wno-writable-strings
27 33
	export FLUID="/usr/bin/fluid" # needed because configure tries an invalid option
28 34
	econf \
29 35
		$(use_enable X gui) \
Thank you!