Diff g15message-1.0.0-r2 with a g15message-1.2

/usr/portage/app-misc/g15message/g15message-1.2.ebuild 2023-10-09 14:52:28.796368333 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2022 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 autotools
7 7

  
8 8
DESCRIPTION="A simple message/alert client for G15daemon"
9
HOMEPAGE="https://sourceforge.net/projects/g15daemon/"
10
SRC_URI="mirror://sourceforge/g15daemon/${P}.tar.bz2"
9
HOMEPAGE="https://gitlab.com/menelkir/g15message"
10
if [[ ${PV} == *9999 ]] ; then
11
	inherit git-r3
12
	EGIT_REPO_URI="https://gitlab.com/menelkir/g15message.git"
13
else
14
	SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
15
	KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
16
fi
11 17

  
12 18
LICENSE="GPL-2"
13 19
SLOT="0"
14
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
15 20
IUSE=""
16 21

  
17
RDEPEND=">=app-misc/g15daemon-1.9.0
18
	dev-libs/libg15
19
	dev-libs/libg15render
22
RDEPEND="
23
	>=app-misc/g15daemon-3.0
24
	>=dev-libs/libg15-3.0
25
	>=dev-libs/libg15render-3.0
20 26
	sys-libs/zlib
21 27
"
22 28
DEPEND="${RDEPEND}"
23 29

  
24
PATCHES=( "${FILESDIR}/${P}-docdir.patch" )
25

  
26 30
src_prepare() {
31
	# Remove the following two lines on next version bump please
32
	mv -v configure.{in,ac} || die
33
	sed -i '/^AC_HEADER_STDC/d' configure.ac || die
34

  
27 35
	default
28
	mv configure.{in,ac} || die
29 36
	eautoreconf
30 37
}
Thank you!