Diff cdk-5.0.20210324-r2 with a cdk-5.0.20221025

/usr/portage/dev-libs/cdk/cdk-5.0.20221025.ebuild 2023-10-09 14:52:29.492368350 +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=7
4
EAPI=8
5 5

  
6 6
MY_P="${PN}-$(ver_rs 2 -)"
7 7

  
8
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/thomasdickey.asc
9
inherit verify-sig
10

  
8 11
DESCRIPTION="A library of curses widgets"
9 12
HOMEPAGE="https://dickey.his.com/cdk/cdk.html https://github.com/ThomasDickey/cdk-snapshots"
10
SRC_URI="ftp://ftp.invisible-island.net/cdk/${MY_P}.tgz"
13
SRC_URI="https://invisible-island.net/archives/${PN}/${MY_P}.tgz"
14
SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/${PN}/${MY_P}.tgz.asc )"
11 15
S="${WORKDIR}"/${MY_P}
12 16

  
13
LICENSE="BSD"
17
LICENSE="MIT"
14 18
SLOT="0/6" # subslot = soname version
15 19
KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux"
16 20
IUSE="examples unicode"
17 21

  
18 22
DEPEND="sys-libs/ncurses:=[unicode(+)?]"
19 23
RDEPEND="${DEPEND}"
20
BDEPEND="virtual/pkgconfig"
21

  
22
PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch )
24
BDEPEND="
25
	virtual/pkgconfig
26
	verify-sig? ( sec-keys/openpgp-keys-thomasdickey )
27
"
23 28

  
24 29
src_configure() {
25 30
	if [[ ${CHOST} == *-*-darwin* ]] ; then
Thank you!