Diff imagemagick-7.1.1.15 with a imagemagick-7.1.1.18

/usr/portage/media-gfx/imagemagick/imagemagick-7.1.1.18.ebuild 2023-10-09 14:52:31.632368404 +0300
25 25
LICENSE="imagemagick"
26 26
# Please check this on bumps, SONAME is often not updated! Use abidiff on old/new.
27 27
# If ABI is broken, change the bit after the '-'.
28
SLOT="0/$(ver_cut 1-3)-43"
29
IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig jpeg jpeg2k jpegxl lcms lqr lzma opencl openexr openmp pango perl +png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zip zlib"
28
SLOT="0/$(ver_cut 1-3)-18"
29
IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hardened hdri heif jbig jpeg jpeg2k jpegxl lcms lqr lzma opencl openexr openmp pango perl +png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zip zlib"
30 30

  
31
REQUIRED_USE="corefonts? ( truetype )
31
REQUIRED_USE="
32
	corefonts? ( truetype )
32 33
	svg? ( xml )
33
	test? ( corefonts )"
34
	test? ( corefonts )
35
"
34 36

  
35 37
RESTRICT="!test? ( test )"
36 38

  
......
78 80
	xml? ( dev-libs/libxml2 )
79 81
	lzma? ( app-arch/xz-utils )
80 82
	zip? ( dev-libs/libzip:= )
81
	zlib? ( sys-libs/zlib:= )"
82
DEPEND="${RDEPEND}
83
	X? ( x11-base/xorg-proto )"
83
	zlib? ( sys-libs/zlib:= )
84
"
85
DEPEND="
86
	${RDEPEND}
87
	X? ( x11-base/xorg-proto )
88
"
84 89
BDEPEND="virtual/pkgconfig"
85 90

  
86 91
PATCHES=(
......
177 182
		$(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts)
178 183
		$(use_with wmf)
179 184
		$(use_with xml)
185

  
186
		# Default upstream (as of 6.9.12.96/7.1.1.18 anyway) is open
187
		# For now, let's make USE=hardened do 'limited', and have USE=-hardened
188
		# reflect the upstream default of 'open'.
189
		#
190
		# We might change it to 'secure' and 'limited' at some point.
191
		# See also bug #716674.
192
		--with-security-policy=$(usex hardened limited open)
180 193
	)
181 194

  
182 195
	CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}"
Thank you!