From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4E555139694 for ; Thu, 11 May 2017 22:05:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B348EE0CBA; Thu, 11 May 2017 22:05:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 903AFE0CBA for ; Thu, 11 May 2017 22:05:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AB98A3416AA for ; Thu, 11 May 2017 22:05:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46EDD7454 for ; Thu, 11 May 2017 22:05:22 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1494540321.7f634a1461d6f4b26f3637cd90faa67a80740d5e.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/sxid/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/sxid/sxid-4.2-r2.ebuild X-VCS-Directories: app-admin/sxid/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 7f634a1461d6f4b26f3637cd90faa67a80740d5e X-VCS-Branch: master Date: Thu, 11 May 2017 22:05:22 +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: 75e41bd1-ef25-444a-bbb2-946000d6318e X-Archives-Hash: 12edf11369ca5622fd426220fe421eb0 commit: 7f634a1461d6f4b26f3637cd90faa67a80740d5e Author: Patrice Clement gentoo org> AuthorDate: Thu May 11 21:55:30 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu May 11 22:05:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f634a14 app-admin/sxid: EAPI 6 bump. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-admin/sxid/sxid-4.2-r2.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-admin/sxid/sxid-4.2-r2.ebuild b/app-admin/sxid/sxid-4.2-r2.ebuild new file mode 100644 index 00000000000..1dd3cef652d --- /dev/null +++ b/app-admin/sxid/sxid-4.2-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="suid, sgid file and directory checking" +HOMEPAGE="http://freshmeat.net/projects/sxid" +SRC_URI="http://linukz.org/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="virtual/mailx" + +DOCS=( docs/sxid.{conf,cron}.example ) + +src_prepare() { + default + # this is an admin application and really requires root to run correctly + # we need to move the binary to the sbin directory + sed -i s/bindir/sbindir/g source/Makefile.in || die + eautoreconf +} + +pkg_postinst() { + elog + elog "You will need to configure sxid.conf for your system using the manpage and example" + elog +}