Diff zimg-3.0.4 with a zimg-3.0.4-r1
| /usr/portage/media-libs/zimg/zimg-3.0.4-r1.ebuild 2025-07-29 16:22:14.892457651 +0300 | ||
|---|---|---|
| 1 |
# Copyright 1999-2022 Gentoo Authors |
|
| 1 |
# Copyright 1999-2025 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 |
EAPI=7 |
|
| 4 |
EAPI=8 |
|
| 5 | 5 | |
| 6 | 6 |
if [[ ${PV} = *9999* ]] ; then
|
| 7 | 7 |
EGIT_REPO_URI="https://github.com/sekrit-twc/zimg" |
| 8 | 8 |
inherit git-r3 |
| 9 | 9 |
else |
| 10 | 10 |
SRC_URI="https://github.com/sekrit-twc/zimg/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
|
| 11 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86" |
|
| 11 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~sparc x86" |
|
| 12 | 12 |
S="${WORKDIR}/${PN}-release-${PV}/"
|
| 13 | 13 |
fi |
| 14 | 14 |
inherit autotools multilib-minimal |
| ... | ... | |
| 38 | 38 |
$(use_enable static-libs static) \ |
| 39 | 39 |
$(use_enable test unit-test) |
| 40 | 40 |
} |
| 41 | ||
| 42 |
multilib_src_install_all() {
|
|
| 43 |
einstalldocs |
|
| 44 |
if ! use static-libs; then |
|
| 45 |
find "${ED}" -type f -name '*.la' -delete || die
|
|
| 46 |
fi |
|
| 47 |
} |
|