diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-07-07 16:07:25 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-07-07 16:07:25 +0000 |
commit | 6983bc3e84398cf32971819fdeb68436664b7e37 (patch) | |
tree | 99f24ab0af44e4e1f06342ae156b21007b3a9a7a /app-misc/when | |
parent | amd64 stable, bug #231041 (diff) | |
download | gentoo-2-6983bc3e84398cf32971819fdeb68436664b7e37.tar.gz gentoo-2-6983bc3e84398cf32971819fdeb68436664b7e37.tar.bz2 gentoo-2-6983bc3e84398cf32971819fdeb68436664b7e37.zip |
Version bump
(Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r8 i686)
Diffstat (limited to 'app-misc/when')
-rw-r--r-- | app-misc/when/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/when/when-1.1.13.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/when/ChangeLog b/app-misc/when/ChangeLog index fa7fac013773..44b02f40df33 100644 --- a/app-misc/when/ChangeLog +++ b/app-misc/when/ChangeLog @@ -1,6 +1,11 @@ # 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.25 2008/05/10 09:00:45 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.26 2008/07/07 16:07:25 armin76 Exp $ + +*when-1.1.13 (07 Jul 2008) + + 07 Jul 2008; Raúl Porcel <armin76@gentoo.org> +when-1.1.13.ebuild: + Version bump 10 May 2008; nixnut <nixnut@gentoo.org> when-1.1.11.ebuild: Stable on ppc wrt bug 220929 diff --git a/app-misc/when/when-1.1.13.ebuild b/app-misc/when/when-1.1.13.ebuild new file mode 100644 index 000000000000..779b6b8cd1ce --- /dev/null +++ b/app-misc/when/when-1.1.13.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/when/when-1.1.13.ebuild,v 1.1 2008/07/07 16:07:25 armin76 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 +} |