Diff toxic-0.11.1-r1 with a toxic-0.11.3-r1

/usr/portage/net-im/toxic/toxic-0.11.3-r1.ebuild 2023-10-09 14:52:34.456368475 +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
PYTHON_COMPAT=( python3_{9,10,11} )
7 7

  
......
13 13

  
14 14
LICENSE="GPL-3+"
15 15
SLOT="0"
16
KEYWORDS="amd64 x86"
16
KEYWORDS="~amd64 ~x86"
17 17
IUSE="+audio-notify debug games llvm notification png python qrcode +sound +video +X"
18 18
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
19 19
	video? ( sound X ) "
......
101 101
	if ! use X; then
102 102
		export DISABLE_X11=1
103 103
	fi
104
	#include strings.h fixes undefined reference to strcasecmp()
105
	#defining _GNU_SOURCE fixes undefined reference to strcasestr()
104
	#Including strings.h fixes undefined reference to strcasecmp()
105
	#Defining _GNU_SOURCE fixes undefined reference to strcasestr()
106 106
	export USER_CFLAGS="${CFLAGS} -include strings.h -D _GNU_SOURCE"
107 107
	export USER_LDFLAGS="${LDFLAGS}"
108 108
	#set install directory to /usr.
Thank you!