blob: 3dc15e750ea28fe4e37978d5a826c7c3ba07ae10 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/vlock/vlock-1.3-r2.ebuild,v 1.12 2007/02/20 20:16:13 eroyf Exp $
inherit pam
DESCRIPTION="A console screen locker"
HOMEPAGE="ftp://ftp.ibiblio.org/pub/Linux/utils/console/"
SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/utils/console/vlock-1.3.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 mips ppc ppc64 sparc x86"
IUSE=""
DEPEND="sys-libs/pam"
src_compile() {
emake RPM_OPT_FLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dobin vlock || die
# Setuid root is required to unlock a screen with root's password.
# This is "safe" because vlock drops privs ASAP; read the README
# for more information.
fperms 4711 /usr/bin/vlock
doman vlock.1
dodoc README
# generate an auth pam.d
pamd_mimic_system vlock auth
}
|