Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/when: ChangeLog when-1.1.27.ebuild
Date: Wed, 02 Mar 2011 08:39:48
Message-Id: 20110302083938.928AA2004F@flycatcher.gentoo.org
1 radhermit 11/03/02 08:39:38
2
3 Modified: ChangeLog
4 Added: when-1.1.27.ebuild
5 Log:
6 Version bump and update to EAPI 4.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.45 app-misc/when/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/when/ChangeLog?rev=1.45&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/when/ChangeLog?rev=1.45&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/when/ChangeLog?r1=1.44&r2=1.45
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v
20 retrieving revision 1.44
21 retrieving revision 1.45
22 diff -u -r1.44 -r1.45
23 --- ChangeLog 12 Feb 2011 18:35:34 -0000 1.44
24 +++ ChangeLog 2 Mar 2011 08:39:38 -0000 1.45
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/when
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.44 2011/02/12 18:35:34 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/when/ChangeLog,v 1.45 2011/03/02 08:39:38 radhermit Exp $
30 +
31 +*when-1.1.27 (02 Mar 2011)
32 +
33 + 02 Mar 2011; Tim Harder <radhermit@g.o> +when-1.1.27.ebuild:
34 + Version bump and update to EAPI 4.
35
36 12 Feb 2011; Raúl Porcel <armin76@g.o> when-1.1.22.ebuild:
37 sparc stable wrt #350709
38
39
40
41 1.1 app-misc/when/when-1.1.27.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/when/when-1.1.27.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/when/when-1.1.27.ebuild?rev=1.1&content-type=text/plain
45
46 Index: when-1.1.27.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/when/when-1.1.27.ebuild,v 1.1 2011/03/02 08:39:38 radhermit Exp $
51
52 EAPI=4
53
54 DESCRIPTION="Extremely simple personal calendar program aimed at the Unix geek who wants something minimalistic"
55 HOMEPAGE="http://www.lightandmatter.com/when/when.html"
56 SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz"
57
58 LICENSE="Artistic"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
61 IUSE=""
62
63 DEPEND="dev-lang/perl"
64 RDEPEND="${DEPEND}"
65
66 S="${WORKDIR}"/when_dist
67
68 src_prepare() {
69 # Fix path for tests
70 sed -i 's,^ when, ./when,' Makefile
71 }
72
73 src_compile() { :; }
74
75 src_test() {
76 # The when command requires these files, or attempts to run setup function.
77 mkdir "${HOME}"/.when
78 touch "${HOME}"/.when/{calendar,preferences}
79 emake test
80 }
81
82 src_install() {
83 dobin ${PN}
84 doman ${PN}.1
85 dodoc README
86 }