forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- Loading branch information
Jeroen Roovers
committed
Jun 4, 2017
1 parent
ad48ac6
commit 077224a
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST i3lock-2.8.tar.bz2 19884 SHA256 028fc0f74df10826514d5a4ed38f6895935d1f5d47ca9fcffc64b076aaf6e2f4 SHA512 b0f2f2837e275ffb2874aec75cd5d7c69864f8861de5e3e6090a2bf9254a14f8bc141256b0faac3e30111f9612e97cc087efde0da939854fac975a87deb06e3f WHIRLPOOL 2335d74701765495e82b9665673180fa03c288ffb3ef728cec756d7910c5d39efab0dc8a88b06493e085cefde7924ae0f3af454a2a68a02ce9c6213e27312e01 | ||
DIST i3lock-2.9.tar.bz2 21103 SHA256 8ada0af0f8c03551ba4af138b80d4c853d8c1a88b1c96bddb85c9fcfad2da84d SHA512 5e35899f07505231119f6eee5ccd1e02f328560422283228b02b1c649e7e7c094345bb7b0f877b2ea783fc8f3041728f0811e9294acdf57b65a907ff14af3317 WHIRLPOOL 5b49243519fc81093a973e4b07d21035ef076284eecd072bbcff4ed16fcca15a4d09356aaad74c5d41575d53ade9128b21d0f45f10420358fb6e6a4d07753943 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit toolchain-funcs | ||
|
||
DESCRIPTION="Simple screen locker" | ||
HOMEPAGE="http://i3wm.org/i3lock/" | ||
SRC_URI="http://i3wm.org/${PN}/${P}.tar.bz2" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=" | ||
>=x11-libs/libxkbcommon-0.5.0[X] | ||
dev-libs/libev | ||
virtual/pam | ||
x11-libs/cairo[xcb] | ||
x11-libs/libxcb[xkb] | ||
x11-libs/xcb-util | ||
" | ||
DEPEND=" | ||
${RDEPEND} | ||
virtual/pkgconfig | ||
" | ||
DOCS=( CHANGELOG README.md ) | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed -i -e 's:login:system-auth:' ${PN}.pam || die | ||
|
||
tc-export CC | ||
} | ||
|
||
src_install() { | ||
default | ||
doman ${PN}.1 | ||
} |