diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-03-14 02:19:34 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-03-14 02:19:34 +0000 |
commit | 02e84b2c1418b5e9e08d12ceeda92f360651e51f (patch) | |
tree | 458eb04f6a8d50d3780bedc931fc612e24713af0 /app-misc/when | |
parent | Add the correct version dependency for boost. (diff) | |
download | gentoo-2-02e84b2c1418b5e9e08d12ceeda92f360651e51f.tar.gz gentoo-2-02e84b2c1418b5e9e08d12ceeda92f360651e51f.tar.bz2 gentoo-2-02e84b2c1418b5e9e08d12ceeda92f360651e51f.zip |
Version bump.
(Portage version: 2.2.0_alpha26/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.28.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/when/ChangeLog b/app-misc/when/ChangeLog index 22508a18d66f..226bb064106e 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.47 2011/03/05 00:00:07 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.48 2011/03/14 02:19:34 radhermit Exp $ + +*when-1.1.28 (14 Mar 2011) + + 14 Mar 2011; Tim Harder <radhermit@gentoo.org> +when-1.1.28.ebuild: + Version bump. 04 Mar 2011; Michael Weber <xmw@gentoo.org> when-1.1.23.ebuild: ppc/sparc stable (bug 357069) diff --git a/app-misc/when/when-1.1.28.ebuild b/app-misc/when/when-1.1.28.ebuild new file mode 100644 index 000000000000..36af4f38913c --- /dev/null +++ b/app-misc/when/when-1.1.28.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.28.ebuild,v 1.1 2011/03/14 02:19:34 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 +} |