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 2D78C138334 for ; Mon, 28 Jan 2019 19:31:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71EACE12B0; Mon, 28 Jan 2019 00:04:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 50AA3E12B0 for ; Mon, 28 Jan 2019 00:04:58 +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 BB445335D79 for ; Mon, 28 Jan 2019 00:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 32611513 for ; Mon, 28 Jan 2019 00:04:56 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1548633883.a140ecec2a86f406e2bc98b3431bf5142b4c933e.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/supervise-scripts/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild X-VCS-Directories: sys-process/supervise-scripts/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: a140ecec2a86f406e2bc98b3431bf5142b4c933e X-VCS-Branch: master Date: Mon, 28 Jan 2019 00:04:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6187566e-805f-47a5-848c-72fe38ba951e X-Archives-Hash: 6b4d69217769e1b687500124dbba6385 commit: a140ecec2a86f406e2bc98b3431bf5142b4c933e Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Jan 28 00:04:43 2019 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Jan 28 00:04:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a140ecec sys-process/supervise-scripts: EAPI bump Package-Manager: Portage-2.3.58, Repoman-2.3.12 Signed-off-by: Andreas K. Hüttel gentoo.org> .../supervise-scripts-4.0-r1.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild new file mode 100644 index 00000000000..0d19d3c970c --- /dev/null +++ b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Starting and stopping daemontools managed services" +HOMEPAGE="http://untroubled.org/supervise-scripts/" +SRC_URI="http://untroubled.org/supervise-scripts/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +RDEPEND="virtual/daemontools" +DEPEND="${RDEPEND}" + +src_prepare() { + echo "/usr/bin" > conf-bin + echo "/usr/share/man" > conf-man + default +} + +src_install() { + emake PREFIX="${D}" install + use doc && dodoc *.html +}