Diff bitlbee-3.6-r2 with a bitlbee-3.6-r3

/usr/portage/net-im/bitlbee/bitlbee-3.6-r3.ebuild 2023-10-09 14:52:34.444368475 +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..11} )
7 7

  
......
18 18
DESCRIPTION="irc to IM gateway that support multiple IM protocols"
19 19
HOMEPAGE="https://www.bitlbee.org/"
20 20

  
21
LICENSE="GPL-2 BSD-2"
21
LICENSE="GPL-2"
22 22
SLOT="0"
23 23
IUSE_PROTOCOLS="purple twitter +xmpp"
24 24
IUSE="debug +gnutls ipv6 libevent nss otr +plugins selinux test xinetd
......
35 35
	acct-group/bitlbee
36 36
	acct-user/bitlbee
37 37
	dev-libs/glib:2
38
	dev-libs/json-parser:=
38 39
	purple? ( net-im/pidgin )
39 40
	libevent? ( dev-libs/libevent:= )
40 41
	otr? ( >=net-libs/libotr-4 )
......
60 61
"
61 62

  
62 63
PATCHES=(
63
	"${FILESDIR}"/${PN}-3.5-systemd-user.patch
64
	"${FILESDIR}"/${PN}-3.5-libcheck.patch
65
	"${FILESDIR}"/${PN}-3.5-libevent.patch
66
	"${FILESDIR}"/${P}-disabled-plugins-use.patch
67
	"${FILESDIR}"/${P}-strict-aliasing.patch
64
	"${FILESDIR}/${PN}-3.5-systemd-user.patch"
65
	"${FILESDIR}/${PN}-3.5-libcheck.patch"
66
	"${FILESDIR}/${PN}-3.5-libevent.patch"
67
	"${FILESDIR}/${P}-disabled-plugins-use.patch"
68
	"${FILESDIR}/${P}-system-json-parser.patch"
68 69
)
69 70

  
70 71
src_configure() {
......
115 116
		--datadir=/usr/share/bitlbee \
116 117
		--etcdir=/etc/bitlbee \
117 118
		--libdir=/usr/$(get_libdir) \
118
		--plugindir=/usr/$(get_libdir)/bitlbee \
119 119
		--pcdir=/usr/$(get_libdir)/pkgconfig \
120
		--plugindir=/usr/$(get_libdir)/bitlbee \
121
		--externaljsonparser=1 \
120 122
		--systemdsystemunitdir=$(systemd_get_systemunitdir) \
121 123
		--doc=1 \
122 124
		--strip=0 \
Thank you!