Diff dbuskit-0.1.1-r1 with a dbuskit-0.1.1-r2

/usr/portage/gnustep-libs/dbuskit/dbuskit-0.1.1-r2.ebuild 2023-10-09 14:52:31.168368392 +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
EAPI=6
4
EAPI=8
5

  
5 6
inherit autotools gnustep-2
6 7

  
7
DESCRIPTION="framework that interfaces Objective-C applications with the D-Bus IPC service"
8
DESCRIPTION="Framework that interfaces Objective-C applications with the D-Bus IPC service"
8 9
HOMEPAGE="https://github.com/gnustep/libs-dbuskit"
9 10
SRC_URI="https://github.com/gnustep/libs-dbuskit/archive/${PV}.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}/libs-${P}"
10 12

  
11
LICENSE="LGPL-2.1"
13
LICENSE="LGPL-2.1+"
12 14
SLOT="0"
13
KEYWORDS="amd64 ppc x86"
14
IUSE=""
15
KEYWORDS="~amd64 ~ppc ~x86"
15 16

  
16 17
DEPEND=">=sys-apps/dbus-1.2.1"
17 18
RDEPEND="${DEPEND}"
18 19

  
19 20
PATCHES=( "${FILESDIR}"/${P}-remove_gc.patch )
20 21

  
21
S=${WORKDIR}/libs-${P}
22

  
23 22
src_prepare() {
24 23
	default
25 24

  
Thank you!