blob: a53a9f8c48af3033f89214de2cc58f7ed7acb5e7 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Tool to block access via the physical display while x11vnc is running"
HOMEPAGE="http://www.karlrunge.com/x11vnc/blockdpy.c"
SRC_URI="http://www.karlrunge.com/x11vnc/blockdpy.c"
S="${WORKDIR}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
x11-libs/libX11
x11-libs/libXext"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_unpack() {
cp "${DISTDIR}"/blockdpy.c blockdpy.c || die
}
src_prepare() {
default
# Add includes to avoid QA warnings.
sed -i '/#include <stdio.h>/i#include <stdlib.h>' blockdpy.c || die
sed -i '/#include <stdio.h>/i#include <string.h>' blockdpy.c || die
}
src_configure() {
tc-export CC
append-cppflags $($(tc-getPKG_CONFIG) --cflags x11 xext)
export LDLIBS=$($(tc-getPKG_CONFIG) --libs x11 xext)
}
src_compile() {
emake blockdpy
# Create README from head comment in source
sed -n '1,/^ *\*\//s/^[ -]*\*[ \/]*//p' < blockdpy.c > README || die
}
src_install() {
dobin blockdpy
einstalldocs
}
pkg_postinst() {
# Just warn about missing xlock instead of requiring it in case
# the user wants to use something else.
if [[ ! -x ${EROOR}/usr/bin/xlock ]]; then
ewarn 'The xlock executable was not found.'
ewarn 'blockdpy runs "xlock" as the screen-lock program by default.'
ewarn 'You should either install x11-misc/xlockmore or override the'
ewarn 'default by calling blockdpy with the -lock option or by'
ewarn 'setting the XLOCK_CMD environment variable.'
ewarn
ewarn " Examples: blockdpy -lock 'xscreensaver-command -lock'"
ewarn " blockdpy -lock 'kdesktop_lock --forcelock'"
ewarn
fi
}
|