summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2009-01-26 20:24:07 +0000
committerPeter Volkov <pva@gentoo.org>2009-01-26 20:24:07 +0000
commit7484a79709f28a3dc5cce047bf0cb748532a46e7 (patch)
tree4752c18abc3a4ae7a3059ed09d61573e9127b375 /app-misc/when
parentpam_mount bump (diff)
downloadgentoo-2-7484a79709f28a3dc5cce047bf0cb748532a46e7.tar.gz
gentoo-2-7484a79709f28a3dc5cce047bf0cb748532a46e7.tar.bz2
gentoo-2-7484a79709f28a3dc5cce047bf0cb748532a46e7.zip
Version bump, bug #252436, thank Arfrever Frehtes Taifersar Arahesis for report.
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'app-misc/when')
-rw-r--r--app-misc/when/ChangeLog10
-rw-r--r--app-misc/when/when-1.1.16.ebuild39
2 files changed, 47 insertions, 2 deletions
diff --git a/app-misc/when/ChangeLog b/app-misc/when/ChangeLog
index 44b02f40df33..9ffb333e6fd8 100644
--- a/app-misc/when/ChangeLog
+++ b/app-misc/when/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-misc/when
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.26 2008/07/07 16:07:25 armin76 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.27 2009/01/26 20:24:07 pva Exp $
+
+*when-1.1.16 (26 Jan 2009)
+
+ 26 Jan 2009; Peter Volkov <pva@gentoo.org> +when-1.1.16.ebuild:
+ Version bump, bug #252436, thank Arfrever Frehtes Taifersar Arahesis for
+ report.
*when-1.1.13 (07 Jul 2008)
diff --git a/app-misc/when/when-1.1.16.ebuild b/app-misc/when/when-1.1.16.ebuild
new file mode 100644
index 000000000000..36bfcccf8491
--- /dev/null
+++ b/app-misc/when/when-1.1.16.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/when/when-1.1.16.ebuild,v 1.1 2009/01/26 20:24:07 pva Exp $
+
+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="mirror://gentoo/${P}.tar.gz"
+
+LICENSE="Artistic"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+S=${WORKDIR}/when_dist
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ # Fix path for tests
+ sed -i 's,^ when, ./when,' Makefile
+}
+
+src_compile() {
+ return
+}
+
+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
+}