Gentoo Archives: gentoo-commits

From: "William Hubbs (williamh)" <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-accessibility/emacspeak: ChangeLog emacspeak-9999.ebuild
Date: Thu, 02 Dec 2010 16:12:11
Message-Id: 20101202161202.1308320054@flycatcher.gentoo.org
1 williamh 10/12/02 16:12:02
2
3 Modified: ChangeLog emacspeak-9999.ebuild
4 Log:
5 Rework live ebuild and give credit to Ulrich Muller for the greader patch for emacspeak 33.0.
6
7 (Portage version: 2.2.0_alpha6/cvs/Linux i686)
8
9 Revision Changes Path
10 1.45 app-accessibility/emacspeak/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/ChangeLog?rev=1.45&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/ChangeLog?rev=1.45&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/ChangeLog?r1=1.44&r2=1.45
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v
19 retrieving revision 1.44
20 retrieving revision 1.45
21 diff -u -r1.44 -r1.45
22 --- ChangeLog 2 Dec 2010 15:31:41 -0000 1.44
23 +++ ChangeLog 2 Dec 2010 16:12:01 -0000 1.45
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-accessibility/emacspeak
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.44 2010/12/02 15:31:41 williamh Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/ChangeLog,v 1.45 2010/12/02 16:12:01 williamh Exp $
29 +
30 + 02 Dec 2010; William Hubbs <williamh@g.o> emacspeak-9999.ebuild:
31 + Rework live ebuild so that it can be a template for future ebuilds and
32 + allow user patches.
33 + I would also like to thank Ulrich Muller for the greader patch for
34 + emacspeak 33.0.
35
36 *emacspeak-33.0 (02 Dec 2010)
37
38 @@ -91,7 +97,7 @@
39 emacspeak-23.ebuild, emacspeak-24.ebuild, emacspeak-25.ebuild:
40 Fix the quotation.
41
42 - 02 Jul 2007; Piotr Jaroszyński <peper@g.o> emacspeak-22.ebuild:
43 + 02 Jul 2007; Piotr Jaroszyński <peper@g.o> emacspeak-22.ebuild:
44 (QA) RESTRICT clean up.
45
46 21 Feb 2007; <peper@g.o> ChangeLog:
47
48
49
50 1.4 app-accessibility/emacspeak/emacspeak-9999.ebuild
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild?rev=1.4&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild?rev=1.4&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild?r1=1.3&r2=1.4
55
56 Index: emacspeak-9999.ebuild
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild,v
59 retrieving revision 1.3
60 retrieving revision 1.4
61 diff -u -r1.3 -r1.4
62 --- emacspeak-9999.ebuild 1 Nov 2009 18:46:55 -0000 1.3
63 +++ emacspeak-9999.ebuild 2 Dec 2010 16:12:01 -0000 1.4
64 @@ -1,19 +1,24 @@
65 -# Copyright 1999-2009 Gentoo Foundation
66 +# Copyright 1999-2010 Gentoo Foundation
67 # Distributed under the terms of the GNU General Public License v2
68 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild,v 1.3 2009/11/01 18:46:55 eva Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/emacspeak/emacspeak-9999.ebuild,v 1.4 2010/12/02 16:12:01 williamh Exp $
70
71 EAPI="2"
72
73 inherit eutils
74 -ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk"
75 -inherit subversion
76 +
77 +if [[ ${PV} == "9999" ]] ; then
78 + ESVN_REPO_URI="http://${PN}.googlecode.com/svn/trunk"
79 + inherit subversion
80 + KEYWORDS=""
81 +else
82 + SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
83 + KEYWORDS="~ppc ~x86"
84 +fi
85
86 DESCRIPTION="the emacspeak audio desktop"
87 HOMEPAGE="http://emacspeak.sourceforge.net/"
88 -SRC_URI=""
89 LICENSE="BSD GPL-2"
90 SLOT="0"
91 -KEYWORDS=""
92 IUSE="+espeak"
93
94 DEPEND=">=virtual/emacs-22
95 @@ -22,6 +27,11 @@
96 RDEPEND="${DEPEND}
97 >=dev-tcltk/tclx-8.4"
98
99 +src_prepare() {
100 + # Allow user patches to be applied without modifying the ebuild
101 + epatch_user
102 +}
103 +
104 src_configure() {
105 make config || die
106 }