# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 GENTOO_DEPEND_ON_PERL="no" QA_PKGCONFIG_VERSION=$(ver_cut 1-3) # BENTOO-DIVERGENCE: INHERIT - no verify-sig. Same root as the SRC_URI and # BDEPEND tags below: this ebuild fetches the release asset plus an R2 mirror # rather than mirror://imagemagick, so there is no .asc for the eclass to check. inherit autotools flag-o-matic perl-module toolchain-funcs # BENTOO-DIVERGENCE: DEFINED_PHASES - no unpack phase, where ::gentoo has one. # Not a phase that was deleted: ::gentoo's comes from verify-sig.eclass, which # defines src_unpack to check the .asc. This ebuild does not inherit it, for the # SRC_URI reason recorded above, so there is no phase to define. DESCRIPTION="A collection of tools and libraries for many image formats" HOMEPAGE="https://imagemagick.org" if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://github.com/ImageMagick/ImageMagick.git" inherit git-r3 MY_P="imagemagick-9999" else MY_PV="$(ver_rs 3 '-')" MY_P="ImageMagick-${MY_PV}" # BENTOO-DIVERGENCE: SRC_URI - the upstream release ASSET plus an R2 mirror, # where ::gentoo uses mirror://imagemagick and gets verify-sig with it. # Losing the signature is a real cost, so here is what was measured. # # There is no signature to have, anywhere. Re-checked 2026-09-05 for # 7.1.2-31, which IS the newest release: the .asc is 404 on all three # mirror://imagemagick hosts, on imagemagick.org/download, on # distfiles.gentoo.org, and it is absent from the GitHub release assets. # ::gentoo's verify-sig works on 7.1.2.18 because Gentoo mirrored that # distfile years ago, not because upstream still serves one. # # What upstream DOES publish is the real release tarball, as a GitHub # release asset. That is what this now fetches, replacing the generated # archive/refs/tags/ tarball used before: a generated archive is produced on # demand and its hash is not guaranteed stable over time, while the asset is # a static file the release uploaded once. Same bytes the mirror would have # served. # # The R2 fallback exists because upstream prunes: measured on the same day, # 7.1.2-18, 7.1.2-10 and 7.1.1-47 have NO assets at all, only the current # release does. Without a mirror this ebuild stops fetching the moment # 7.1.2-32 ships. The R2 copy was uploaded from the upstream asset and # verified byte-identical by SHA512. # # Revisit if upstream starts publishing .asc again -- check, do not assume: # curl -sIL https://github.com/ImageMagick/ImageMagick/releases/download/${MY_PV}/${MY_P}.tar.xz.asc SRC_URI=" https://github.com/ImageMagick/ImageMagick/releases/download/${MY_PV}/${MY_P}.tar.xz https://distfiles.obentoo.org/${MY_P}.tar.xz " KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris" fi S="${WORKDIR}/${MY_P}" LICENSE="imagemagick" # Please check this on bumps, SONAME is often not updated! Use abidiff on old/new. # If ABI is broken, change the bit after the '-'. SLOT="0/$(ver_cut 1-3)-18" # BENTOO-DIVERGENCE: IUSE - no verify-sig flag. verify-sig.eclass is what # declares it, and this ebuild does not inherit it for the SRC_URI reason # recorded above. A flag with no eclass behind it would do nothing. IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hardened hdri heif" IUSE+=" jbig jpeg jpeg2k jpegxl lcms lqr lzma opencl openexr openmp pango perl ${GENTOO_PERL_USESTRING}" IUSE+=" +png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf" IUSE+=" X xml zip zlib" REQUIRED_USE=" corefonts? ( truetype ) svg? ( xml ) test? ( corefonts ) " RESTRICT="!test? ( test )" RDEPEND=" !media-gfx/graphicsmagick[imagemagick] dev-libs/libltdl bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) heif? ( media-libs/libheif:=[x265] ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( media-libs/libjpeg-turbo:= ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) jpegxl? ( >=media-libs/libjxl-0.6:= ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( ${GENTOO_PERL_DEPSTRING} >=dev-lang/perl-5.8.8:= ) png? ( media-libs/libpng:= ) postscript? ( app-text/ghostscript-gpl:= ) raw? ( media-libs/libraw:= ) svg? ( gnome-base/librsvg media-gfx/potrace ) tiff? ( media-libs/tiff:= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zip? ( dev-libs/libzip:= ) zlib? ( virtual/zlib:= ) " DEPEND=" ${RDEPEND} X? ( x11-base/xorg-proto ) " # BENTOO-DIVERGENCE: BDEPEND - none of ::gentoo's verify-sig chain # (sec-keys/openpgp-keys-imagemagick, app-alternatives/gpg, app-crypt/gnupg, # app-portage/gemato). Not a second decision: it follows from the SRC_URI # divergence recorded above. Those atoms exist to verify a .asc fetched from # mirror://imagemagick, and this ebuild does not fetch from there. BDEPEND+=" virtual/pkgconfig" PATCHES=( "${FILESDIR}/${PN}-9999-nocputuning.patch" ) pkg_pretend() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } pkg_setup() { [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } src_prepare() { default #elibtoolize # for Darwin modules eautoreconf # For testsuite, see bug #500580#c3 shopt -s nullglob for card in /dev/{{ati,dri}/card,nvidia,dri/renderD128}*; do addpredict "${card}" done shopt -u nullglob addpredict /dev/nvidiactl if use hardened ; then # https://github.com/ImageMagick/ImageMagick/issues/8646 (bug #971784) sed -i -e 's:not ok:ok:' tests/cli-svg.tap || die fi } src_configure() { local depth=16 use q8 && depth=8 use q32 && depth=32 use perl && perl_check_env [[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket # Workaround for bug #941208 (gcc PR117100) tc-is-gcc && [[ $(gcc-major-version) == 13 ]] && append-flags -fno-unswitch-loops local myeconfargs=( $(use_enable static-libs static) $(use_enable hdri) $(use_enable opencl) $(use_enable openmp) --with-threads --with-modules --with-quantum-depth=${depth} $(use_with cxx magick-plus-plus) $(use_with perl) --with-perl-options='INSTALLDIRS=vendor' --with-gs-font-dir="${EPREFIX}"/usr/share/fonts/urw-fonts $(use_with bzip2 bzlib) $(use_with X x) $(use_with zip) $(use_with zlib) --without-autotrace --with-uhdr $(use_with postscript dps) $(use_with djvu) --with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu $(use_with fftw) $(use_with fpx) $(use_with fontconfig) $(use_with truetype freetype) $(use_with postscript gslib) $(use_with graphviz gvc) $(use_with heif heic) $(use_with jbig) $(use_with jpeg) $(use_with jpeg2k openjp2) $(use_with jpegxl jxl) $(use_with lcms) $(use_with lqr) $(use_with lzma) $(use_with openexr) $(use_with pango) $(use_with png) $(use_with raw) $(use_with svg rsvg) $(use_with tiff) $(use_with webp) $(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts) $(use_with wmf) $(use_with xml) # Default upstream (as of 6.9.12.96/7.1.1.18 anyway) is open # For now, let's make USE=hardened do 'limited', and have USE=-hardened # reflect the upstream default of 'open'. # # We might change it to 'secure' and 'limited' at some point. # See also bug #716674. --with-security-policy=$(usex hardened limited open) ) CONFIG_SHELL="${BROOT}"/bin/bash econf "${myeconfargs[@]}" } src_compile() { # Avoid perl-module_src_compile default } src_test() { # Install default (unrestricted) policy in $HOME for test suite, bug #664238 local _im_local_config_home="${HOME}/.config/ImageMagick" mkdir -p "${_im_local_config_home}" || \ die "Failed to create IM config dir in '${_im_local_config_home}'" cp "${FILESDIR}"/policy.test.xml "${_im_local_config_home}/policy.xml" || \ die "Failed to install default blank policy.xml in '${_im_local_config_home}'" local im_command= IM_COMMANDS=() if [[ ${PV} == 9999 ]] ; then IM_COMMANDS+=( "magick -version" ) # Show version we are using -- cannot verify because of live ebuild else IM_COMMANDS+=( "magick -version | grep -q -- \"${MY_PV}\"" ) # Verify that we are using version we just built fi IM_COMMANDS+=( "magick -list policy" ) # Verify that policy.xml is used IM_COMMANDS+=( "emake check" ) # Run tests for im_command in "${IM_COMMANDS[@]}"; do eval "${S}"/magick.sh \ ${im_command} || \ die "Failed to run \"${im_command}\"" done } src_install() { # Ensure documentation installation files and paths with each release! emake \ DESTDIR="${D}" \ DOCUMENTATION_PATH="${EPREFIX}"/usr/share/doc/${PF}/html \ install einstalldocs if use perl; then find "${ED}" -type f -name perllocal.pod -exec rm -f {} + || die find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} + || die fi # .la files in parent are not needed, keep plugin .la files find "${ED}"/usr/$(get_libdir)/ -maxdepth 1 -name "*.la" -delete || die # https://github.com/gentoo/gentoo/pull/37716#discussion_r1696713348 find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + || die if use opencl; then cat <<-EOF > "${T}"/99${PN} SANDBOX_PREDICT="/dev/nvidiactl:/dev/nvidia-uvm:/dev/ati/card:/dev/dri/card:/dev/dri/card0:/dev/dri/renderD128" EOF insinto /etc/sandbox.d doins "${T}"/99${PN} #472766 fi insinto /usr/share/${PN} doins config/*icm }