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/i3lock/
Date: Sun, 04 Jun 2017 21:32:39
Message-Id: 1496611941.077224ae662f4481c3351de01198849ac9f7e980.jer@gentoo
1 commit: 077224ae662f4481c3351de01198849ac9f7e980
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 21:32:21 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 21:32:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077224ae
7
8 x11-misc/i3lock: Version bump.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 x11-misc/i3lock/Manifest | 1 +
13 x11-misc/i3lock/i3lock-2.9.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/x11-misc/i3lock/Manifest b/x11-misc/i3lock/Manifest
17 index f1e592867b0..b7ac12ae1d6 100644
18 --- a/x11-misc/i3lock/Manifest
19 +++ b/x11-misc/i3lock/Manifest
20 @@ -1 +1,2 @@
21 DIST i3lock-2.8.tar.bz2 19884 SHA256 028fc0f74df10826514d5a4ed38f6895935d1f5d47ca9fcffc64b076aaf6e2f4 SHA512 b0f2f2837e275ffb2874aec75cd5d7c69864f8861de5e3e6090a2bf9254a14f8bc141256b0faac3e30111f9612e97cc087efde0da939854fac975a87deb06e3f WHIRLPOOL 2335d74701765495e82b9665673180fa03c288ffb3ef728cec756d7910c5d39efab0dc8a88b06493e085cefde7924ae0f3af454a2a68a02ce9c6213e27312e01
22 +DIST i3lock-2.9.tar.bz2 21103 SHA256 8ada0af0f8c03551ba4af138b80d4c853d8c1a88b1c96bddb85c9fcfad2da84d SHA512 5e35899f07505231119f6eee5ccd1e02f328560422283228b02b1c649e7e7c094345bb7b0f877b2ea783fc8f3041728f0811e9294acdf57b65a907ff14af3317 WHIRLPOOL 5b49243519fc81093a973e4b07d21035ef076284eecd072bbcff4ed16fcca15a4d09356aaad74c5d41575d53ade9128b21d0f45f10420358fb6e6a4d07753943
23
24 diff --git a/x11-misc/i3lock/i3lock-2.9.ebuild b/x11-misc/i3lock/i3lock-2.9.ebuild
25 new file mode 100644
26 index 00000000000..f99aa982024
27 --- /dev/null
28 +++ b/x11-misc/i3lock/i3lock-2.9.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="Simple screen locker"
38 +HOMEPAGE="http://i3wm.org/i3lock/"
39 +SRC_URI="http://i3wm.org/${PN}/${P}.tar.bz2"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND="
47 + >=x11-libs/libxkbcommon-0.5.0[X]
48 + dev-libs/libev
49 + virtual/pam
50 + x11-libs/cairo[xcb]
51 + x11-libs/libxcb[xkb]
52 + x11-libs/xcb-util
53 +"
54 +DEPEND="
55 + ${RDEPEND}
56 + virtual/pkgconfig
57 +"
58 +DOCS=( CHANGELOG README.md )
59 +
60 +src_prepare() {
61 + default
62 +
63 + sed -i -e 's:login:system-auth:' ${PN}.pam || die
64 +
65 + tc-export CC
66 +}
67 +
68 +src_install() {
69 + default
70 + doman ${PN}.1
71 +}