Diff wmtimer-2.92-r2 with a wmtimer-2.92-r3

/usr/portage/x11-plugins/wmtimer/wmtimer-2.92-r3.ebuild 2023-10-09 14:52:35.976368514 +0300
1
# Copyright 1999-2020 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=6
5
inherit multilib toolchain-funcs
4
EAPI=8
5

  
6
inherit toolchain-funcs
6 7

  
7 8
DESCRIPTION="Dockable clock which can run in alarm, countdown timer or chronograph mode"
8 9
HOMEPAGE="https://github.com/bbidulock/wmtimer"
9 10
SRC_URI="https://github.com/bbidulock/wmtimer/releases/download/v${PV}/${P}.tar.gz"
11
S="${WORKDIR}/${P}/${PN}"
10 12

  
11
LICENSE="GPL-2"
13
LICENSE="GPL-2+"
12 14
SLOT="0"
13
KEYWORDS="amd64 ppc ppc64 ~sparc x86"
14
IUSE=""
15
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
15 16

  
16 17
RDEPEND=">=dev-libs/glib-2
17 18
	x11-libs/gtk+:2
18 19
	x11-libs/libXpm
19 20
	x11-libs/libXext
20 21
	x11-libs/libX11"
21
DEPEND="${RDEPEND}
22
	virtual/pkgconfig"
23

  
24
S=${WORKDIR}/${P}/${PN}
22
DEPEND="${RDEPEND}"
23
BDEPEND="virtual/pkgconfig"
25 24

  
26 25
src_prepare() {
27 26
	sed -i -e "s|\$(CFLAGS)||" Makefile || die
Thank you!