blob: fef71c7cb75b904e5498d91d33834d9fa3abbdf4 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A simplistic screen locking program for X"
HOMEPAGE="http://ftp.debian.org/debian/pool/main/x/xtrlock/"
SRC_URI="mirror://debian/pool/main/x/${PN}/${P/-/_}.tar.xz"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="amd64 ppc x86"
RDEPEND="
virtual/libcrypt:=
x11-libs/libX11"
DEPEND="
${RDEPEND}
x11-base/xorg-proto"
BDEPEND="
sys-devel/gcc
>=x11-misc/imake-1.0.8-r1"
src_configure() {
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf || die
}
src_compile() {
emake CDEBUGFLAGS="${CFLAGS} -DSHADOW_PWD" CC="$(tc-getCC)" \
EXTRA_LDOPTIONS="${LDFLAGS}" xtrlock
}
src_install() {
dobin xtrlock
chmod u+s "${D}"/usr/bin/xtrlock
newman xtrlock.man xtrlock.1
dodoc debian/changelog
}
|