Diff when-1.1.40 with a when-1.1.45

/usr/portage/app-misc/when/when-1.1.45.ebuild 2023-10-09 14:52:28.828368333 +0300
1
# Copyright 1999-2021 Gentoo Authors
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

  
6
inherit vcs-snapshot
5 7

  
6 8
DESCRIPTION="Minimalistic personal calendar program"
7
HOMEPAGE="http://www.lightandmatter.com/when/when.html"
8
SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz"
9
HOMEPAGE="http://www.lightandmatter.com/when/when.html https://bitbucket.org/ben-crowell/when"
10
SRC_URI="https://bitbucket.org/ben-crowell/${PN}/get/${PV}.tar.gz -> ${P}.tar.gz"
9 11

  
10
LICENSE="Artistic"
12
LICENSE="|| ( Artistic GPL-2 )"
11 13
SLOT="0"
12
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
14
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
13 15

  
14 16
DEPEND="dev-lang/perl"
15 17
RDEPEND="${DEPEND}"
16 18

  
17
S="${WORKDIR}/when_dist"
18

  
19 19
DOCS=( README )
20 20

  
21
RESTRICT="test"
22

  
23 21
src_prepare() {
24 22
	default
25 23

  
......
27 25
	sed -i 's,^	when,	./when,' Makefile || die 'sed failed'
28 26
}
29 27

  
30
src_compile() { :; }
28
src_compile() {
29
	emake when.1
30
}
31 31

  
32 32
src_test() {
33 33
	# The when command requires these files, or attempts to run setup function.
Thank you!