Diff xephem-3.7.7-r1 with a xephem-4.1.0-r1

/usr/portage/sci-astronomy/xephem/xephem-4.1.0-r1.ebuild 2023-10-09 14:52:34.996368489 +0300
1 1
# Copyright 1999-2023 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
inherit desktop toolchain-funcs
7 7

  
8 8
DESCRIPTION="Interactive tool for astronomical ephemeris and sky simulation"
9
HOMEPAGE="https://www.clearskyinstitute.com/xephem"
10
SRC_URI="https://www.clearskyinstitute.com/xephem/${P}.tgz"
9
HOMEPAGE="https://xephem.github.io/XEphem/Site/xephem.html"
10
SRC_URI="https://github.com/XEphem/XEphem/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
11
S="${WORKDIR}/XEphem-${PV}"
11 12

  
12
LICENSE="XEphem"
13
LICENSE="MIT"
13 14
SLOT=0
14 15
KEYWORDS="amd64 ~ppc ppc64 ~x86 ~amd64-linux ~x86-linux"
15 16

  
16
RDEPEND=">=x11-libs/motif-2.3:0
17
	virtual/jpeg:0
18
	media-libs/libpng:0="
17
RDEPEND="
18
	dev-libs/openssl:=
19
	media-libs/libjpeg-turbo:=
20
	media-libs/libpng:0=
21
	>=x11-libs/motif-2.3:0
22
	x11-libs/libXext
23
	x11-libs/libXmu
24
	x11-libs/libXt
25
"
19 26
DEPEND="${RDEPEND}"
20 27
BDEPEND="sys-apps/groff"
21 28

  
22 29
HTML_DOCS=( GUI/xephem/help/. )
23
DOCS=( README )
24 30

  
31
# NOTE: order is relevant - parallel build patch requires respect env vars
32
# patch to be already applied
25 33
PATCHES=(
34
	"${FILESDIR}/${PN}-3.7.7-implicits.patch"
26 35
	"${FILESDIR}/${P}-respect_env_vars.patch"
27
	"${FILESDIR}/${P}-implicits.patch"
28
	"${FILESDIR}/${P}-no_xprint.patch"
36
	"${FILESDIR}/${P}-allow-parallel-builds.patch"
29 37
)
30 38

  
31 39
src_compile() {
Thank you!