From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-misc/plod/Manifest | 1 + app-misc/plod/files/plodrc | 2 ++ app-misc/plod/metadata.xml | 7 +++++++ app-misc/plod/plod-1.9.ebuild | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 app-misc/plod/Manifest create mode 100644 app-misc/plod/files/plodrc create mode 100644 app-misc/plod/metadata.xml create mode 100644 app-misc/plod/plod-1.9.ebuild (limited to 'app-misc/plod') diff --git a/app-misc/plod/Manifest b/app-misc/plod/Manifest new file mode 100644 index 000000000000..ba155b1d7930 --- /dev/null +++ b/app-misc/plod/Manifest @@ -0,0 +1 @@ +DIST plod-1.9.tar.gz 29551 SHA256 e8f33c1d039ea52593365877ece67013438f7888a80306012ed89666ab8e2535 SHA512 0cf1365963ee0f5a8db445c16ce37890429a4c951ce547560e845316950b4f485ecdc0885e2d35cb240bf9d7bec587c0d913774b05cfca8a145c1837281cad88 WHIRLPOOL 32918454f2c4f8ee4335a8cb49ee19e7f7dcdbed83fad45f831e36b35866bd4d67804143017dce6f97433ead1103e125a9f1368d2c12a8b6b9abbd80caa6a9fc diff --git a/app-misc/plod/files/plodrc b/app-misc/plod/files/plodrc new file mode 100644 index 000000000000..9185f36eed5c --- /dev/null +++ b/app-misc/plod/files/plodrc @@ -0,0 +1,2 @@ +# We don't use CRYPTCMD at default +$CRYPTCMD = undef; diff --git a/app-misc/plod/metadata.xml b/app-misc/plod/metadata.xml new file mode 100644 index 000000000000..7d16b6208690 --- /dev/null +++ b/app-misc/plod/metadata.xml @@ -0,0 +1,7 @@ + + + + + maintainer-needed@gentoo.org + + diff --git a/app-misc/plod/plod-1.9.ebuild b/app-misc/plod/plod-1.9.ebuild new file mode 100644 index 000000000000..076913aba586 --- /dev/null +++ b/app-misc/plod/plod-1.9.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="PLOD is a tool designed to help administrators (and others) 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" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + + cd "${S}" + + # Get rid of this nasty /usr/local paths + einfo "Patching paths" + sed -e 's#/usr/local#/usr#' -i plod +} + +src_install() { + dobin plod + dodoc README + doman plod.1.gz + + insinto /etc + doins "${FILESDIR}"/plodrc +} -- cgit v1.2.3-65-gdbad