Diff libksba-1.6.4 with a libksba-1.6.4-r1

/usr/portage/dev-libs/libksba/libksba-1.6.4-r1.ebuild 2023-10-09 14:52:29.520368351 +0300
10 10
# any subsequent ones linked within so you're covered for a while.)
11 11

  
12 12
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/gnupg.asc
13
inherit toolchain-funcs verify-sig libtool
13
# in-source builds are not supported: https://dev.gnupg.org/T6313#166339
14
inherit toolchain-funcs out-of-source verify-sig libtool
14 15

  
15 16
DESCRIPTION="X.509 and CMS (PKCS#7) library"
16 17
HOMEPAGE="https://www.gnupg.org/related_software/libksba"
......
19 20

  
20 21
LICENSE="LGPL-3+ GPL-2+ GPL-3"
21 22
SLOT="0"
22
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
23
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
23 24
IUSE="static-libs"
24 25

  
25 26
RDEPEND=">=dev-libs/libgpg-error-1.33"
......
39 40
	elibtoolize  # necessary on Solaris for shared lib support
40 41
}
41 42

  
42
src_configure() {
43
my_src_configure() {
43 44
	export CC_FOR_BUILD="$(tc-getBUILD_CC)"
44 45

  
45 46
	local myeconfargs=(
......
53 54
	econf "${myeconfargs[@]}"
54 55
}
55 56

  
56
src_install() {
57
my_src_install() {
57 58
	default
58 59

  
59 60
	# People need to use ksba-config for --cflags and --libs
Thank you!