Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/tdrop/
Date: Mon, 30 Dec 2019 08:53:46
Message-Id: 1577696004.3224c7450d62ca287cf0a6eec9160e0031720c07.gyakovlev@gentoo
1 commit: 3224c7450d62ca287cf0a6eec9160e0031720c07
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 30 08:52:13 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 30 08:53:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3224c745
7
8 x11-misc/tdrop: add live ebuild
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 x11-misc/tdrop/tdrop-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
14 1 file changed, 38 insertions(+)
15
16 diff --git a/x11-misc/tdrop/tdrop-9999.ebuild b/x11-misc/tdrop/tdrop-9999.ebuild
17 new file mode 100644
18 index 00000000000..1031384a291
19 --- /dev/null
20 +++ b/x11-misc/tdrop/tdrop-9999.ebuild
21 @@ -0,0 +1,38 @@
22 +# Copyright 2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="WM-Independent Dropdown Creator"
28 +HOMEPAGE="https://github.com/noctuid/tdrop"
29 +
30 +if [[ ${PV} == "9999" ]]; then
31 + inherit git-r3
32 + EGIT_REPO_URI="https://github.com/noctuid/tdrop"
33 +else
34 + SRC_URI="https://github.com/noctuid/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
35 + KEYWORDS="~amd64 ~ppc64"
36 +fi
37 +
38 +LICENSE="BSD-2"
39 +SLOT="0"
40 +IUSE=""
41 +
42 +RDEPEND="
43 + app-shells/bash
44 + sys-process/procps
45 + x11-apps/xprop
46 + x11-apps/xrandr
47 + x11-apps/xwininfo
48 + x11-misc/xdotool
49 +"
50 +
51 +src_compile() {
52 + :
53 +}
54 +
55 +src_install() {
56 + dobin tdrop
57 + doman tdrop.1
58 + dodoc README.org
59 +}