summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2011-09-05 07:09:31 +0000
committerTim Harder <radhermit@gentoo.org>2011-09-05 07:09:31 +0000
commitb9c621fce930cdc4c190a43d5099f59e974832a3 (patch)
tree04ef8c695f0af44894d81e87327f01d15c40322a /app-misc/when
parentBump to 4.1.0. This fixes #311317. (diff)
downloadgentoo-2-b9c621fce930cdc4c190a43d5099f59e974832a3.tar.gz
gentoo-2-b9c621fce930cdc4c190a43d5099f59e974832a3.tar.bz2
gentoo-2-b9c621fce930cdc4c190a43d5099f59e974832a3.zip
Remove old.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/when')
-rw-r--r--app-misc/when/ChangeLog5
-rw-r--r--app-misc/when/when-1.1.23.ebuild39
2 files changed, 4 insertions, 40 deletions
diff --git a/app-misc/when/ChangeLog b/app-misc/when/ChangeLog
index eed2db265e04..c4e7e470bde6 100644
--- a/app-misc/when/ChangeLog
+++ b/app-misc/when/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/when
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.54 2011/08/22 11:15:45 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.55 2011/09/05 07:09:31 radhermit Exp $
+
+ 05 Sep 2011; Tim Harder <radhermit@gentoo.org> -when-1.1.23.ebuild:
+ Remove old.
22 Aug 2011; Michael Weber <xmw@gentoo.org> when-1.1.28.ebuild:
ppc/sparc stable (bug 376857)
diff --git a/app-misc/when/when-1.1.23.ebuild b/app-misc/when/when-1.1.23.ebuild
deleted file mode 100644
index 441882569a52..000000000000
--- a/app-misc/when/when-1.1.23.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/when/when-1.1.23.ebuild,v 1.4 2011/03/19 21:34:29 tomka Exp $
-
-EAPI=3
-
-DESCRIPTION="Extremely simple personal calendar program aimed at the Unix geek who wants something minimalistic"
-HOMEPAGE="http://www.lightandmatter.com/when/when.html"
-SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Artistic"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"/when_dist
-
-src_prepare() {
- # Fix path for tests
- sed -i 's,^ when, ./when,' Makefile || die
-}
-
-src_compile() { :; }
-
-src_test() {
- # The when command requires these files, or attempts to run setup function.
- mkdir "${HOME}"/.when
- touch "${HOME}"/.when/{calendar,preferences}
- emake test || die "emake test failed"
-}
-
-src_install() {
- dobin ${PN} || die "dobin failed"
- doman ${PN}.1 || die "doman failed"
- dodoc README || die
-}