Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/zoinks: zoinks-0.4.1.ebuild ChangeLog
Date: Sat, 28 Jun 2014 20:55:04
Message-Id: 20140628205500.8AAB02004E@flycatcher.gentoo.org
1 jer 14/06/28 20:55:00
2
3 Modified: zoinks-0.4.1.ebuild ChangeLog
4 Log:
5 Bump EAPI (bug #515622 by Jonas Stein).
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.8 app-editors/zoinks/zoinks-0.4.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild?r1=1.7&r2=1.8
15
16 Index: zoinks-0.4.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- zoinks-0.4.1.ebuild 23 Jul 2009 22:42:10 -0000 1.7
23 +++ zoinks-0.4.1.ebuild 28 Jun 2014 20:55:00 -0000 1.8
24 @@ -1,8 +1,9 @@
25 -# Copyright 1999-2009 Gentoo Foundation
26 +# Copyright 1999-2014 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v 1.7 2009/07/23 22:42:10 vostorga Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.1.ebuild,v 1.8 2014/06/28 20:55:00 jer Exp $
30
31 -inherit eutils
32 +EAPI=5
33 +inherit eutils toolchain-funcs
34
35 DESCRIPTION="programmer's text editor and development environment"
36 HOMEPAGE="http://zoinks.mikelockwood.com"
37 @@ -20,18 +21,17 @@
38 DEPEND="${RDEPEND}
39 nls? ( sys-devel/gettext )"
40
41 -src_unpack() {
42 - unpack ${A}
43 - sed -i -e 's:-g -Werror::g' "${S}"/configure*
44 +src_prepare() {
45 + sed -i -e 's:-g -Werror::g' configure* || die
46 + tc-export CXX
47 }
48
49 -src_compile() {
50 +src_configure() {
51 econf $(use_enable nls) --disable-imlib
52 - emake CXX=$(tc-getCXX) || die "emake failed"
53 }
54
55 src_install() {
56 - emake DESTDIR="${D}" install || die "emake install failed."
57 + default
58 dodoc AUTHORS ChangeLog NEWS README
59 doicon ide/Pixmaps/${PN}.xpm
60 make_desktop_entry ${PN} "Zoinks!" ${PN} "Utility;TextEditor"
61
62
63
64 1.28 app-editors/zoinks/ChangeLog
65
66 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?rev=1.28&view=markup
67 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?rev=1.28&content-type=text/plain
68 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/zoinks/ChangeLog?r1=1.27&r2=1.28
69
70 Index: ChangeLog
71 ===================================================================
72 RCS file: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v
73 retrieving revision 1.27
74 retrieving revision 1.28
75 diff -u -r1.27 -r1.28
76 --- ChangeLog 23 Jul 2009 22:42:10 -0000 1.27
77 +++ ChangeLog 28 Jun 2014 20:55:00 -0000 1.28
78 @@ -1,6 +1,9 @@
79 # ChangeLog for app-editors/zoinks
80 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
81 -# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v 1.27 2009/07/23 22:42:10 vostorga Exp $
82 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
83 +# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/ChangeLog,v 1.28 2014/06/28 20:55:00 jer Exp $
84 +
85 + 28 Jun 2014; Jeroen Roovers <jer@g.o> zoinks-0.4.1.ebuild:
86 + Bump EAPI (bug #515622 by Jonas Stein).
87
88 23 Jul 2009; VĂ­ctor Ostorga <vostorga@g.o> zoinks-0.4.1.ebuild:
89 Fixing CXX variable, closes bug #243574