mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
x11-misc/slock: Add epatch_user (bug #564744 by aj@xocite.com).
Package-Manager: portage-2.2.24
This commit is contained in:
59
x11-misc/slock/slock-1.2-r1.ebuild
Normal file
59
x11-misc/slock/slock-1.2-r1.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}"/${P}-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