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