Diff cairo-clock-0.3.4-r2 with a cairo-clock-0.3.4-r3

/usr/portage/x11-misc/cairo-clock/cairo-clock-0.3.4-r3.ebuild 2023-10-09 14:52:35.932368513 +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

  
5 6
inherit autotools
6 7

  
7 8
DESCRIPTION="An analog clock displaying the system-time"
......
10 11

  
11 12
LICENSE="GPL-2"
12 13
SLOT="0"
13
KEYWORDS="amd64 ~x86"
14
KEYWORDS="~amd64 ~x86"
14 15

  
15 16
RDEPEND="
16 17
	>=dev-libs/glib-2.8
......
20 21
	>=x11-libs/gtk+-2.10:2
21 22
	>=x11-libs/pango-1.10
22 23
"
23
DEPEND="
24
	${RDEPEND}
24
DEPEND="${RDEPEND}"
25
# autoconf-archive for F_S patch
26
BDEPEND="
25 27
	dev-util/intltool
26
	virtual/pkgconfig
28
	sys-devel/autoconf-archive
27 29
	sys-devel/gettext
30
	virtual/pkgconfig
28 31
"
32

  
29 33
PATCHES=(
30 34
	"${FILESDIR}"/${P}-desktop.patch
31 35
	"${FILESDIR}"/${P}-linker.patch
36
	"${FILESDIR}"/${P}-fortify-source.patch
32 37
)
33 38

  
34 39
src_prepare() {
Thank you!