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 0D981139695 for ; Mon, 10 Apr 2017 23:41:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1135221C099; Mon, 10 Apr 2017 23:41:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E467921C097 for ; Mon, 10 Apr 2017 23:41: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 41CC234106E for ; Mon, 10 Apr 2017 23:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A135073E6 for ; Mon, 10 Apr 2017 23:41:38 +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: <1491867695.a7a1615973204381a7e2b762453a71452bf655ce.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/plod/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/plod/plod-1.9-r1.ebuild X-VCS-Directories: app-misc/plod/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: a7a1615973204381a7e2b762453a71452bf655ce X-VCS-Branch: master Date: Mon, 10 Apr 2017 23:41:38 +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: 0dd9aeb9-5231-4b74-8fbe-363358c86d1a X-Archives-Hash: 01fab7b159935161c08b3f3e5d04aa4c commit: a7a1615973204381a7e2b762453a71452bf655ce Author: Patrice Clement gentoo org> AuthorDate: Mon Apr 10 23:40:56 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Apr 10 23:41:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a16159 app-misc/plod: EAPI 6 bump. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-misc/plod/plod-1.9-r1.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/app-misc/plod/plod-1.9-r1.ebuild b/app-misc/plod/plod-1.9-r1.ebuild new file mode 100644 index 00000000000..645191a637e --- /dev/null +++ b/app-misc/plod/plod-1.9-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A tool designed to help administrators keep track of their daily activities" +HOMEPAGE="http://www.deer-run.com/~hal/" +SRC_URI="http://www.far2wise.net/plod/${P}.tar.gz" + +LICENSE="|| ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="dev-lang/perl" + +DOCS=( README ) + +src_prepare() { + default + sed -i -e 's#/usr/local#/usr#' "${PN}" || die +} + +src_compile() { + :; +} + +src_install() { + dobin "${PN}" + doman "${PN}.1.gz" + + insinto /etc + doins "${FILESDIR}/${PN}rc" + einstalldocs +}