Diff xclip-0.13 with a xclip-9999

/usr/portage/x11-misc/xclip/xclip-9999.ebuild 2023-10-09 14:52:35.952368513 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5

  
6
inherit autotools
5
inherit autotools git-r3
7 6

  
8 7
DESCRIPTION="Copy data from standard input to X clipboard"
9 8
HOMEPAGE="https://github.com/astrand/xclip"
10
SRC_URI="https://github.com/astrand/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
9
EGIT_REPO_URI="https://github.com/astrand/${PN}"
11 10

  
12 11
LICENSE="GPL-2"
13 12
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
13
KEYWORDS=""
15 14

  
16 15
RDEPEND="
17 16
	x11-libs/libX11
18
	x11-libs/libXmu"
17
	x11-libs/libXmu
18
"
19 19

  
20 20
DEPEND="
21 21
	${RDEPEND}
22 22
	x11-base/xorg-proto
23
	x11-libs/libXt"
23
	x11-libs/libXt
24
"
24 25

  
25 26
src_prepare() {
26 27
	default
Thank you!