Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xclip/
Date: Sun, 02 Feb 2020 15:56:39
Message-Id: 1580658991.9971835a466a4c25a9d3b9ad4bebfb94d56f2cd8.jer@gentoo
1 commit: 9971835a466a4c25a9d3b9ad4bebfb94d56f2cd8
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 2 15:40:43 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 2 15:56:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9971835a
7
8 x11-misc/xclip: Add live ebuild
9
10 Package-Manager: Portage-2.3.87, Repoman-2.3.20
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 x11-misc/xclip/xclip-9999.ebuild | 28 ++++++++++++++++++++++++++++
14 1 file changed, 28 insertions(+)
15
16 diff --git a/x11-misc/xclip/xclip-9999.ebuild b/x11-misc/xclip/xclip-9999.ebuild
17 new file mode 100644
18 index 00000000000..12a50d1de86
19 --- /dev/null
20 +++ b/x11-misc/xclip/xclip-9999.ebuild
21 @@ -0,0 +1,28 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools git-r3
27 +
28 +DESCRIPTION="Copy data from standard input to X clipboard"
29 +HOMEPAGE="https://github.com/astrand/xclip"
30 +EGIT_REPO_URI="https://github.com/astrand/${PN}"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS=""
35 +
36 +RDEPEND="
37 + x11-libs/libX11
38 + x11-libs/libXmu
39 +"
40 +
41 +DEPEND="
42 + ${RDEPEND}
43 + x11-libs/libXt
44 +"
45 +
46 +src_prepare() {
47 + default
48 + eautoreconf
49 +}