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/xsel/
Date: Sun, 09 Oct 2016 10:19:18
Message-Id: 1476008336.0e4cf0a5d080771c36b1889d7404143883194ac5.jer@gentoo
1 commit: 0e4cf0a5d080771c36b1889d7404143883194ac5
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 9 10:18:56 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 9 10:18:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4cf0a5
7
8 x11-misc/xsel: Add live ebuild.
9
10 Package-Manager: portage-2.3.1
11
12 x11-misc/xsel/xsel-9999.ebuild | 33 +++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/x11-misc/xsel/xsel-9999.ebuild b/x11-misc/xsel/xsel-9999.ebuild
16 new file mode 100644
17 index 00000000..44d0088
18 --- /dev/null
19 +++ b/x11-misc/xsel/xsel-9999.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +inherit autotools git-r3
27 +
28 +DESCRIPTION="command-line program for getting and setting the contents of the X selection"
29 +HOMEPAGE="http://www.vergenet.net/~conrad/software/xsel"
30 +EGIT_REPO_URI="https://github.com/kfish/xsel.git"
31 +
32 +LICENSE="HPND"
33 +SLOT="0"
34 +KEYWORDS=""
35 +
36 +RDEPEND="
37 + x11-libs/libX11
38 + x11-libs/libXext
39 +"
40 +DEPEND="
41 + ${RDEPEND}
42 + x11-proto/xproto
43 + x11-libs/libXt
44 +"
45 +
46 +src_prepare() {
47 + default
48 + eautoreconf
49 +}
50 +
51 +src_compile() {
52 + emake CFLAGS="${CFLAGS}"
53 +}