Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/watchpid/
Date: Tue, 03 May 2016 07:25:00
Message-Id: 1462259412.6790c2cd8ce20b3b9ac7935a3cd4756ec69225ef.monsieurp@gentoo
1 commit: 6790c2cd8ce20b3b9ac7935a3cd4756ec69225ef
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 22:23:45 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue May 3 07:10:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6790c2cd
7
8 sys-process/watchpid: Version bump.
9
10 Package-Manager: portage-2.2.26
11
12 sys-process/watchpid/watchpid-0.1-r2.ebuild | 32 +++++++++++++++++++++++++++++
13 1 file changed, 32 insertions(+)
14
15 diff --git a/sys-process/watchpid/watchpid-0.1-r2.ebuild b/sys-process/watchpid/watchpid-0.1-r2.ebuild
16 new file mode 100644
17 index 0000000..3cbda3f
18 --- /dev/null
19 +++ b/sys-process/watchpid/watchpid-0.1-r2.ebuild
20 @@ -0,0 +1,32 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit multilib-minimal
28 +
29 +DESCRIPTION="Watches a process for termination"
30 +SRC_URI="mirror://gentoo/${PN}_${PV}.tar.gz"
31 +HOMEPAGE="http://www.codepark.org/"
32 +KEYWORDS="~amd64 -ppc ~x86"
33 +
34 +IUSE=""
35 +SLOT="0"
36 +LICENSE="GPL-2"
37 +
38 +RDEPEND=""
39 +DEPEND="${RDEPEND}"
40 +
41 +multilib_src_configure() {
42 + ECONF_SOURCE="${S}" econf
43 +}
44 +
45 +src_compile() {
46 + multilib-minimal_src_compile
47 +}
48 +
49 +src_install() {
50 + multilib-minimal_src_install
51 + dodoc README AUTHORS
52 +}