blob: 5d706ccac8b530025b19930777054ed62067694b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools toolchain-funcs
DESCRIPTION="Simple screen locker"
HOMEPAGE="https://i3wm.org/i3lock/"
SRC_URI="https://i3wm.org/${PN}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RDEPEND="
>=x11-libs/libxkbcommon-0.5.0[X]
dev-libs/libev
sys-libs/pam
x11-libs/cairo[X,xcb(+)]
x11-libs/libxcb[xkb]
x11-libs/xcb-util
x11-libs/xcb-util-xrm
"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
DOCS=( CHANGELOG README.md )
PATCHES=(
"${FILESDIR}"/${PN}-2.11-version.patch
)
src_prepare() {
default
echo ${PV} > I3LOCK_VERSION
sed -i -e 's:login:system-auth:' pam/${PN} || die
eautoreconf
tc-export CC
}
src_install() {
default
doman ${PN}.1
}
|