summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/plod
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
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 <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/plod')
-rw-r--r--app-misc/plod/Manifest1
-rw-r--r--app-misc/plod/files/plodrc2
-rw-r--r--app-misc/plod/metadata.xml7
-rw-r--r--app-misc/plod/plod-1.9.ebuild35
4 files changed, 45 insertions, 0 deletions
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>maintainer-needed@gentoo.org</email>
+ </maintainer>
+</pkgmetadata>
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
+}