blob: 5b8c844cab7c87e247c420eaeb3548aa9e369f09 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P=${PN}-src-${PV}
MY_PN=imagew
DESCRIPTION="Utility for image scaling and processing"
HOMEPAGE="https://entropymine.com/imageworsener/"
SRC_URI="https://entropymine.com/${PN}/${P}.tar.gz"
LICENSE="MIT-with-advertising"
SLOT="0/3" # because of libimageworsener.so.3.*.*
KEYWORDS="~amd64 ~x86"
IUSE="jpeg png static-libs test webp zlib"
DEPEND="png? ( media-libs/libpng:0 )
jpeg? ( virtual/jpeg:0 )
webp? ( >=media-libs/libwebp-0.1.3 )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
REQUIRED_USE="test? ( jpeg png webp zlib )"
RESTRICT="!test? ( test )"
src_configure() {
local switch=''
use test && switch=test
econf \
$(use_enable static-libs static) \
$(use_with ${switch} jpeg) \
$(use_with ${switch} png) \
$(use_with ${switch} webp) \
$(use_with ${switch} zlib)
}
src_install() {
default
dodoc {changelog,readme,technical}.txt
find "${D}" -name '*.la' -delete || die
}
src_test() {
cd "${S}"/tests || die
./runtest "${S}"/${MY_PN}
}
|