Diff aaphoto-0.45-r1 with a aaphoto-0.45_p20160710

/usr/portage/media-gfx/aaphoto/aaphoto-0.45_p20160710.ebuild 2023-10-09 14:52:31.616368404 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs
7 7

  
8
GIT_COMMIT="ad4fc3c04b9e25212d78c231e1507458dfea8909"
9

  
8 10
DESCRIPTION="Automatic color correction and resizing of photos"
9
HOMEPAGE="http://log69.com/aaphoto.html https://github.com/log69/aaphoto"
10
SRC_URI="http://log69.com/downloads/${PN}_sources_${PV}.tar.gz"
11
HOMEPAGE="https://web.archive.org/web/20220728233436/http://log69.com/aaphoto_en.html https://github.com/log69/aaphoto"
12
SRC_URI="https://github.com/log69/${PN}/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
13
S="${WORKDIR}/${PN}-${GIT_COMMIT}"
11 14

  
12 15
LICENSE="GPL-3"
13 16
SLOT="0"
14
KEYWORDS="amd64 x86"
17
KEYWORDS="~amd64 ~x86"
15 18

  
16
RDEPEND="
19
DEPEND="
17 20
	media-libs/libjpeg-turbo:=
18
	media-libs/libpng:="
19
DEPEND="${RDEPEND}"
21
	media-libs/libpng:=
22
"
23
RDEPEND="${DEPEND}"
20 24

  
21 25
pkg_pretend() {
22 26
	[[ ${MERGE_TYPE} != binary ]] && tc-check-openmp
23 27
}
24

  
25
pkg_setup() {
26
	[[ ${MERGE_TYPE} != binary ]] && tc-check-openmp
27
}
Thank you!