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 CAA4C138334 for ; Thu, 26 Jul 2018 23:34:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23D4AE08FF; Thu, 26 Jul 2018 23:34:43 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C88EBE08FF for ; Thu, 26 Jul 2018 23:34:41 +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 62788335CCA for ; Thu, 26 Jul 2018 23:34:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 960D2365 for ; Thu, 26 Jul 2018 23:34:37 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1532648073.93ad12b81b953fb125220fdb7dad32ab0903aeeb.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/restartd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/restartd/restartd-0.2.2-r1.ebuild X-VCS-Directories: sys-apps/restartd/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 93ad12b81b953fb125220fdb7dad32ab0903aeeb X-VCS-Branch: master Date: Thu, 26 Jul 2018 23:34:37 +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: bd253b31-3a5d-41a1-b449-0ca4b73dbf72 X-Archives-Hash: e4f8496505d4f8f0c406df77edde2ea5 commit: 93ad12b81b953fb125220fdb7dad32ab0903aeeb Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 26 23:33:31 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Jul 26 23:34:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ad12b8 sys-apps/restartd: revision bump (EAPI=7) Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-apps/restartd/restartd-0.2.2-r1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sys-apps/restartd/restartd-0.2.2-r1.ebuild b/sys-apps/restartd/restartd-0.2.2-r1.ebuild new file mode 100644 index 00000000000..dadb97c5f33 --- /dev/null +++ b/sys-apps/restartd/restartd-0.2.2-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_PV=${PV/_alpha/.a-} +DESCRIPTION="A daemon for checking your running and not running processes" +HOMEPAGE="https://packages.debian.org/unstable/utils/restartd" +SRC_URI="mirror://debian/pool/main/r/restartd/${PN}_${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_prepare() { + default + sed -i Makefile -e 's|-o restartd|$(LDFLAGS) &|g' || die "sed Makefile" +} + +src_compile() { + emake CC=$(tc-getCC) C_ARGS="${CFLAGS}" +} + +src_install() { + dodir /etc /usr/sbin /usr/share/man/man8 /usr/share/man/fr/man8/ + default +}