Diff wmcliphist-2.1-r2 with a wmcliphist-2.1-r3

/usr/portage/x11-plugins/wmcliphist/wmcliphist-2.1-r3.ebuild 2023-10-09 14:52:35.972368514 +0300
1
# Copyright 1999-2018 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
4
EAPI=8
5

  
5 6
inherit toolchain-funcs
6 7

  
7 8
DESCRIPTION="Dockable clipboard history application for Window Maker"
8 9
HOMEPAGE="https://www.dockapps.net/wmcliphist"
9 10
SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
11
S="${WORKDIR}/dockapps"
10 12

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

  
16 17
RDEPEND="x11-libs/gtk+:3[X]"
17
DEPEND="${RDEPEND}
18
	virtual/pkgconfig"
19

  
20
S=${WORKDIR}/dockapps
18
DEPEND="${RDEPEND}"
19
BDEPEND="virtual/pkgconfig"
21 20

  
22 21
src_prepare() {
23 22
	default
Thank you!