Diff cfitsio-4.0.0 with a cfitsio-4.1.0

/usr/portage/sci-libs/cfitsio/cfitsio-4.1.0.ebuild 2023-10-09 14:52:35.060368491 +0300
1
# Copyright 1999-2023 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
......
11 11

  
12 12
LICENSE="ISC"
13 13
SLOT="0/9"
14
KEYWORDS="~alpha amd64 ~hppa ~ppc ppc64 ~riscv sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
15
IUSE="bzip2 curl cpu_flags_x86_sse2 cpu_flags_x86_ssse3"
14
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
15
IUSE="bzip2 curl threads tools cpu_flags_x86_sse2 cpu_flags_x86_ssse3"
16 16

  
17 17
BDEPEND="
18 18
	sys-devel/bison
......
22 22
	sys-libs/zlib[${MULTILIB_USEDEP}]
23 23
	bzip2? ( app-arch/bzip2[${MULTILIB_USEDEP}] )
24 24
	curl? ( net-misc/curl[${MULTILIB_USEDEP}] )
25
	tools? ( !dev-util/smem )
25 26
"
26 27
# Bug #803350
27 28
DEPEND="${RDEPEND}
......
52 53
	local myeconfargs=(
53 54
		$(use_with bzip2)
54 55
		$(use_enable curl)
56
		$(use_enable threads reentrant)
55 57
		$(use_enable cpu_flags_x86_sse2 sse2)
56 58
		$(use_enable cpu_flags_x86_ssse3 ssse3)
57 59
	)
58 60
	ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
59 61
}
60 62

  
63
multilib_src_compile() {
64
	default
65

  
66
	if use tools ; then
67
		emake utils
68
	fi
69
}
70

  
61 71
multilib_src_install_all() {
62 72
	dodoc README docs/changes.txt
63 73

  
Thank you!