mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
x11-misc/slock: Version bump.
Package-Manager: portage-2.2.27
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST slock-1.2.tar.gz 4853 SHA256 3402658f890a88da3f34db04fca1783ed549ade45c2ebb8d8f0cd2b549f633b3 SHA512 0e66c5451c72a5df391a61eefa6b1a1493705fc9c0b04d9db934a56c11852c284ecca8706f47ceb1d1c8cfc5241c818c6026afb30fc9cf3938e44ea282338bee WHIRLPOOL b24a0efaa4272520f05991a7370bdbf2e34c31c58b01b900e39f2398081e829461b62c43c322fd40f0debaa491c57f768a652055341b213cc98d88680923916d
|
||||
DIST slock-1.3.tar.gz 5943 SHA256 bab4a3aea4046aa0fd0361c3649b79b90ca531bc5dfae3c4a6c0fe436152bd18 SHA512 5024588f6d25f9d72a9d2b8ef9d8a2a94e5d5e53f30f4a15df83b693a3706b1ad6550422f36af29f54429a9c516d14a349e46aeb9896c6e32009ff0da5c02a8f WHIRLPOOL 0f5d89117ad6a51f4d409f0e00b6cc114bf19e36265d8a476420fee688b224c0e9fe688d961537fbd7794c8f13df51629f7396a7e2fbc16e7b85b877b151959c
|
||||
|
||||
10
x11-misc/slock/files/slock-1.3-dontdieonme.patch
Normal file
10
x11-misc/slock/files/slock-1.3-dontdieonme.patch
Normal file
@@ -0,0 +1,10 @@
|
||||
--- a/slock.c
|
||||
+++ b/slock.c
|
||||
@@ -55,7 +55,6 @@
|
||||
va_start(ap, errstr);
|
||||
vfprintf(stderr, errstr, ap);
|
||||
va_end(ap);
|
||||
- exit(1);
|
||||
}
|
||||
|
||||
#ifdef __linux__
|
||||
59
x11-misc/slock/slock-1.3.ebuild
Normal file
59
x11-misc/slock/slock-1.3.ebuild
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit eutils fcaps savedconfig toolchain-funcs
|
||||
|
||||
DESCRIPTION="simple X screen locker"
|
||||
HOMEPAGE="http://tools.suckless.org/slock"
|
||||
SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~hppa ~x86 ~x86-fbsd"
|
||||
|
||||
RDEPEND="
|
||||
x11-libs/libX11
|
||||
x11-libs/libXext
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
x11-proto/xproto
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${PN}-1.3-dontdieonme.patch
|
||||
|
||||
epatch_user
|
||||
|
||||
sed -i \
|
||||
-e '/^CFLAGS/{s: -Os::g; s:= :+= :g}' \
|
||||
-e '/^CC/d' \
|
||||
-e '/^LDFLAGS/{s:-s::g; s:= :+= :g}' \
|
||||
config.mk || die
|
||||
sed -i \
|
||||
-e 's|@${CC}|$(CC)|g' \
|
||||
Makefile || die
|
||||
if use elibc_FreeBSD; then
|
||||
sed -i -e 's/-DHAVE_SHADOW_H//' config.mk || die
|
||||
fi
|
||||
restore_config config.h
|
||||
tc-export CC
|
||||
}
|
||||
|
||||
src_compile() { emake slock; }
|
||||
|
||||
src_install() {
|
||||
dobin slock
|
||||
save_config config.h
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
# cap_dac_read_search used to be enough for shadow access
|
||||
# but now slock wants to write to /proc/self/oom_score_adj
|
||||
# and for that it needs:
|
||||
fcaps cap_dac_override,cap_sys_resource /usr/bin/slock
|
||||
|
||||
savedconfig_pkg_postinst
|
||||
}
|
||||
Reference in New Issue
Block a user