Gentoo Archives: gentoo-commits

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