blob: 00f162d14ea5d265c60185eadc28a9cb28464121 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2021 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:0
)
jpeg? (
virtual/jpeg:0
)
gif? (
media-libs/giflib
)
"
DEPEND="${RDEPEND}
"
BDEPEND="${RDEPEND}
test? (
dev-perl/Test-NoWarnings
)
virtual/perl-ExtUtils-MakeMaker
"
# https://rt.cpan.org/Ticket/Display.html?id=112217
DIST_TEST="do"
PATCHES=(
"${FILESDIR}"/0.80.0-disable_autodetect.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
}
|