Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/supervise-scripts/
Date: Mon, 28 Jan 2019 19:31:48
Message-Id: 1548633883.a140ecec2a86f406e2bc98b3431bf5142b4c933e.dilfridge@gentoo
1 commit: a140ecec2a86f406e2bc98b3431bf5142b4c933e
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 28 00:04:43 2019 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 28 00:04:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a140ecec
7
8 sys-process/supervise-scripts: EAPI bump
9
10 Package-Manager: Portage-2.3.58, Repoman-2.3.12
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 .../supervise-scripts-4.0-r1.ebuild | 27 ++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild
17 new file mode 100644
18 index 00000000000..0d19d3c970c
19 --- /dev/null
20 +++ b/sys-process/supervise-scripts/supervise-scripts-4.0-r1.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="Starting and stopping daemontools managed services"
28 +HOMEPAGE="http://untroubled.org/supervise-scripts/"
29 +SRC_URI="http://untroubled.org/supervise-scripts/archive/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
34 +IUSE="doc"
35 +
36 +RDEPEND="virtual/daemontools"
37 +DEPEND="${RDEPEND}"
38 +
39 +src_prepare() {
40 + echo "/usr/bin" > conf-bin
41 + echo "/usr/share/man" > conf-man
42 + default
43 +}
44 +
45 +src_install() {
46 + emake PREFIX="${D}" install
47 + use doc && dodoc *.html
48 +}