Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-editors/ng: ng-1.5_beta1-r1.ebuild ChangeLog
Date: Tue, 08 Jul 2014 00:46:34
Message-Id: 20140708004630.43FCB2004E@flycatcher.gentoo.org
1 naota 14/07/08 00:46:30
2
3 Modified: ng-1.5_beta1-r1.ebuild ChangeLog
4 Log:
5 Use eautoconf #515410. Updated to EAPI=5
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key F8551514)
8
9 Revision Changes Path
10 1.4 app-editors/ng/ng-1.5_beta1-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ng-1.5_beta1-r1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ng-1.5_beta1-r1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ng-1.5_beta1-r1.ebuild?r1=1.3&r2=1.4
15
16 Index: ng-1.5_beta1-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/ng/ng-1.5_beta1-r1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ng-1.5_beta1-r1.ebuild 10 Jul 2011 16:40:38 -0000 1.3
23 +++ ng-1.5_beta1-r1.ebuild 8 Jul 2014 00:46:30 -0000 1.4
24 @@ -1,8 +1,10 @@
25 -# Copyright 1999-2011 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/ng/ng-1.5_beta1-r1.ebuild,v 1.3 2011/07/10 16:40:38 naota Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/ng/ng-1.5_beta1-r1.ebuild,v 1.4 2014/07/08 00:46:30 naota Exp $
30
31 -inherit eutils
32 +EAPI=5
33 +
34 +inherit eutils autotools
35
36 MY_P="${P/_beta/beta}"
37
38 @@ -23,23 +25,27 @@
39
40 S="${WORKDIR}/${MY_P}"
41
42 -src_unpack() {
43 - unpack ${A}
44 - cd "${S}"
45 +src_prepare() {
46 epatch "${FILESDIR}/${MY_P}-ncurses.patch"
47 epatch "${FILESDIR}/${MY_P}-configure.patch"
48 sed -i -e "/NO_BACKUP/s/undef/define/" config.h || die "sed failed"
49
50 - autoconf sys/unix/configure.in > configure
51 + pushd sys/unix || die
52 + eautoconf
53 + popd
54 + cp sys/unix/configure . || die
55 +}
56 +
57 +src_configure() {
58 + econf $(use_enable canna)
59 }
60
61 src_compile() {
62 - econf $(use_enable canna) || die
63 - emake CC="$(tc-getCC)" || die
64 + emake CC="$(tc-getCC)"
65 }
66
67 src_install() {
68 - dobin ng || die
69 + dobin ng
70 dodoc docs/* MANIFEST dot.ng
71
72 insinto /usr/share/ng
73
74
75
76 1.14 app-editors/ng/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ChangeLog?rev=1.14&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ChangeLog?rev=1.14&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/ng/ChangeLog?r1=1.13&r2=1.14
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/app-editors/ng/ChangeLog,v
85 retrieving revision 1.13
86 retrieving revision 1.14
87 diff -u -r1.13 -r1.14
88 --- ChangeLog 10 Jul 2011 16:40:38 -0000 1.13
89 +++ ChangeLog 8 Jul 2014 00:46:30 -0000 1.14
90 @@ -1,6 +1,9 @@
91 # ChangeLog for app-editors/ng
92 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ng/ChangeLog,v 1.13 2011/07/10 16:40:38 naota Exp $
94 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
95 +# $Header: /var/cvsroot/gentoo-x86/app-editors/ng/ChangeLog,v 1.14 2014/07/08 00:46:30 naota Exp $
96 +
97 + 08 Jul 2014; Naohiro Aota <naota@g.o> ng-1.5_beta1-r1.ebuild:
98 + Use eautoconf #515410. Updated to EAPI=5
99
100 10 Jul 2011; Naohiro Aota <naota@g.o> ng-1.5_beta1-r1.ebuild,
101 +files/ng-1.5beta1-configure.patch: