diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-12-22 01:11:13 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-12-22 01:11:13 +0000 |
commit | 5391db793bd7e95792f6fb9f5e47ccac8bdc0a4f (patch) | |
tree | 46ee6bbc0db3fc90e02ec9655b7c7584fc791f05 /app-misc/when | |
parent | Pull out the cross-compiler prefix handling into alt_prefix to simplify place... (diff) | |
download | gentoo-2-5391db793bd7e95792f6fb9f5e47ccac8bdc0a4f.tar.gz gentoo-2-5391db793bd7e95792f6fb9f5e47ccac8bdc0a4f.tar.bz2 gentoo-2-5391db793bd7e95792f6fb9f5e47ccac8bdc0a4f.zip |
Version bump.
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/when')
-rw-r--r-- | app-misc/when/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/when/when-1.1.29.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/when/ChangeLog b/app-misc/when/ChangeLog index c4e7e470bde6..a3a7f81b0aff 100644 --- a/app-misc/when/ChangeLog +++ b/app-misc/when/ChangeLog @@ -1,6 +1,11 @@ # 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.55 2011/09/05 07:09:31 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.56 2011/12/22 01:11:13 radhermit Exp $ + +*when-1.1.29 (22 Dec 2011) + + 22 Dec 2011; Tim Harder <radhermit@gentoo.org> +when-1.1.29.ebuild: + Version bump. 05 Sep 2011; Tim Harder <radhermit@gentoo.org> -when-1.1.23.ebuild: Remove old. diff --git a/app-misc/when/when-1.1.29.ebuild b/app-misc/when/when-1.1.29.ebuild new file mode 100644 index 000000000000..241d6a2e5af0 --- /dev/null +++ b/app-misc/when/when-1.1.29.ebuild @@ -0,0 +1,39 @@ +# 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.29.ebuild,v 1.1 2011/12/22 01:11:13 radhermit Exp $ + +EAPI=4 + +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 +} + +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 +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc README +} |