Diff wine-vanilla-8.0.1 with a wine-vanilla-8.0.2

/usr/portage/app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild 2023-10-09 14:52:28.740368331 +0300
29 29
SLOT="${PV}"
30 30
IUSE="
31 31
	+X +abi_x86_32 +abi_x86_64 +alsa capi crossdev-mingw cups dos
32
	llvm-libunwind debug custom-cflags +fontconfig +gecko gphoto2
33
	+gstreamer kerberos +mingw +mono netapi nls odbc opencl +opengl
34
	osmesa pcap perl pulseaudio samba scanner +sdl selinux +ssl
35
	+truetype udev udisks +unwind usb v4l +vulkan +xcomposite xinerama"
32
	llvm-libunwind custom-cflags +fontconfig +gecko gphoto2 +gstreamer
33
	kerberos +mingw +mono netapi nls odbc opencl +opengl osmesa pcap
34
	perl pulseaudio samba scanner +sdl selinux +ssl +strip +truetype
35
	udev udisks +unwind usb v4l +vulkan +xcomposite xinerama"
36 36
REQUIRED_USE="
37 37
	X? ( truetype )
38 38
	crossdev-mingw? ( mingw )" # bug #551124 for truetype
......
336 336
		make_wrapper "${bin##*/}-${P#wine-}" "${bin#"${ED}"}"
337 337
	done
338 338

  
339
	# don't let portage try to strip PE files with the wrong
340
	# strip executable and instead handle it here (saves ~120MB)
341 339
	if use mingw; then
340
		# don't let portage try to strip PE files with the wrong
341
		# strip executable and instead handle it here (saves ~120MB)
342 342
		dostrip -x ${WINE_PREFIX}/wine/{i386,x86_64}-windows
343
		use debug ||
343

  
344
		if use strip; then
345
			ebegin "Stripping Windows (PE) binaries"
344 346
			find "${ED}"${WINE_PREFIX}/wine/*-windows -regex '.*\.\(a\|dll\|exe\)' \
345
				-exec $(usex abi_x86_64 x86_64 i686)-w64-mingw32-strip --strip-unneeded {} + || die
347
				-exec $(usex abi_x86_64 x86_64 i686)-w64-mingw32-strip --strip-unneeded {} +
348
			eend ${?} || die
349
		fi
346 350
	fi
347 351

  
348 352
	dodoc ANNOUNCE AUTHORS README* documentation/README*
Thank you!