Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/e3: ChangeLog e3-2.8.ebuild e3-2.7.1.ebuild
Date: Wed, 01 Jan 2014 16:42:16
Message-Id: 20140101164211.EE0732004C@flycatcher.gentoo.org
1 ulm 14/01/01 16:42:11
2
3 Modified: ChangeLog e3-2.8.ebuild
4 Removed: e3-2.7.1.ebuild
5 Log:
6 Specify LICENSE more precisely. Bump EAPI to 5. Remove old.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
9
10 Revision Changes Path
11 1.38 app-editors/e3/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 9 Jun 2012 14:47:27 -0000 1.37
24 +++ ChangeLog 1 Jan 2014 16:42:11 -0000 1.38
25 @@ -1,6 +1,9 @@
26 # ChangeLog for app-editors/e3
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.37 2012/06/09 14:47:27 jlec Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/ChangeLog,v 1.38 2014/01/01 16:42:11 ulm Exp $
31 +
32 + 01 Jan 2014; Ulrich Müller <ulm@g.o> -e3-2.7.1.ebuild, e3-2.8.ebuild:
33 + Specify LICENSE more precisely. Bump EAPI to 5. Remove old.
34
35 09 Jun 2012; Justin Lecher <jlec@g.o> e3-2.8.ebuild, metadata.xml:
36 Add -- to emake so that -l doesn't get confused by [number]* make targets,
37
38
39
40 1.6 app-editors/e3/e3-2.8.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/e3-2.8.ebuild?rev=1.6&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/e3-2.8.ebuild?rev=1.6&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/e3/e3-2.8.ebuild?r1=1.5&r2=1.6
45
46 Index: e3-2.8.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v
49 retrieving revision 1.5
50 retrieving revision 1.6
51 diff -u -r1.5 -r1.6
52 --- e3-2.8.ebuild 9 Jun 2012 14:47:27 -0000 1.5
53 +++ e3-2.8.ebuild 1 Jan 2014 16:42:11 -0000 1.6
54 @@ -1,17 +1,16 @@
55 -# Copyright 1999-2012 Gentoo Foundation
56 +# Copyright 1999-2014 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v 1.5 2012/06/09 14:47:27 jlec Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/app-editors/e3/e3-2.8.ebuild,v 1.6 2014/01/01 16:42:11 ulm Exp $
60
61 -EAPI=3
62 +EAPI=5
63
64 DESCRIPTION="Very tiny editor in ASM with emacs, pico, wordstar, and vi keybindings"
65 HOMEPAGE="http://sites.google.com/site/e3editor/"
66 SRC_URI="http://sites.google.com/site/e3editor/Home/${P}.tgz"
67
68 -LICENSE="GPL-2"
69 +LICENSE="GPL-2+"
70 SLOT="0"
71 KEYWORDS="-* amd64 x86"
72 -IUSE=""
73 RESTRICT="strip"
74
75 DEPEND=">=dev-lang/nasm-2.09.04"
76 @@ -22,22 +21,18 @@
77 }
78
79 src_compile() {
80 - if use amd64; then
81 - emake -- 64 || die
82 - else
83 - emake -- 32 || die
84 - fi
85 + emake -- $(usex amd64 64 32)
86 }
87
88 src_install() {
89 - dobin e3 || die
90 + dobin e3
91 dosym e3 /usr/bin/e3em
92 dosym e3 /usr/bin/e3ne
93 dosym e3 /usr/bin/e3pi
94 dosym e3 /usr/bin/e3vi
95 dosym e3 /usr/bin/e3ws
96
97 - newman e3.man e3.1 || die
98 - dohtml e3.html || die
99 + newman e3.man e3.1
100 + dohtml e3.html
101 dodoc ChangeLog README README_OLD
102 }