From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 642F459CA2 for ; Sat, 13 Feb 2016 20:57:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D85B21C010; Sat, 13 Feb 2016 20:57:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A70D721C010 for ; Sat, 13 Feb 2016 20:57:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2D24340C40 for ; Sat, 13 Feb 2016 20:57:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37B5BCEB for ; Sat, 13 Feb 2016 20:57:25 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1455397043.12971a1c32410e7946638ba6674d87dd4d8aaba7.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/slock/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/slock/slock-1.2-r1.ebuild X-VCS-Directories: x11-misc/slock/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 12971a1c32410e7946638ba6674d87dd4d8aaba7 X-VCS-Branch: master Date: Sat, 13 Feb 2016 20:57:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7395e1b2-d3cc-4aa3-bad1-90074ca21480 X-Archives-Hash: f6a85610cb6c1acd40cbadc08b205e27 commit: 12971a1c32410e7946638ba6674d87dd4d8aaba7 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Feb 13 20:56:26 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Feb 13 20:57:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12971a1c x11-misc/slock: Old. Package-Manager: portage-2.2.27 x11-misc/slock/slock-1.2-r1.ebuild | 59 -------------------------------------- 1 file changed, 59 deletions(-) diff --git a/x11-misc/slock/slock-1.2-r1.ebuild b/x11-misc/slock/slock-1.2-r1.ebuild deleted file mode 100644 index 0ec1fc8..0000000 --- a/x11-misc/slock/slock-1.2-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# 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 -}