Files
gentoo/dev-perl/Image-Scale/Image-Scale-0.140.0-r1.ebuild
Alfred Wingate 14b194ed48 dev-perl/Image-Scale: link math explicitly
Used math functions without to the math library.

Do some fixups while revbumping.

Closes: https://bugs.gentoo.org/969792
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/45698
Closes: https://github.com/gentoo/gentoo/pull/45698
Signed-off-by: Sam James <sam@gentoo.org>
2026-02-08 23:30:00 +00:00

56 lines
972 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=AGRUNDMA
DIST_VERSION=0.14
inherit perl-module
DESCRIPTION="Fast, high-quality fixed-point image resizing"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+gif jpeg +png test"
RESTRICT="!test? ( test )"
REQUIRED_USE="|| ( jpeg png )"
RDEPEND="
png? (
media-libs/libpng:=
)
jpeg? (
media-libs/libjpeg-turbo:=
)
gif? (
media-libs/giflib:=
)
"
DEPEND="${RDEPEND}
"
BDEPEND="${RDEPEND}
test? (
dev-perl/Test-NoWarnings
)
"
# https://rt.cpan.org/Ticket/Display.html?id=112217
DIST_TEST="do"
PATCHES=(
"${FILESDIR}"/0.80.0-disable_autodetect.patch
"${FILESDIR}"/Image-Scale-0.140.0-link-math.patch
)
PERL_RM_FILES=( "t/04critic.t" "t/02pod.t" "t/03podcoverage.t" )
src_configure() {
local myconf
for useflag in png jpeg gif; do
myconf+=( $(usex $useflag "" --disable-${useflag}) )
done
perl-module_src_configure
}