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/mg: ChangeLog mg-20110905.ebuild
Date: Thu, 28 Feb 2013 01:02:55
Message-Id: 20130228010251.2752F2171D@flycatcher.gentoo.org
1 ulm 13/02/28 01:02:51
2
3 Modified: ChangeLog mg-20110905.ebuild
4 Log:
5 Fix build failure with separate tinfo library.
6
7 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
8
9 Revision Changes Path
10 1.46 app-editors/mg/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 22 Sep 2012 13:32:28 -0000 1.45
23 +++ ChangeLog 28 Feb 2013 01:02:50 -0000 1.46
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-editors/mg
26 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.45 2012/09/22 13:32:28 blueness Exp $
28 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.46 2013/02/28 01:02:50 ulm Exp $
30 +
31 + 28 Feb 2013; Ulrich Müller <ulm@g.o> mg-20110905.ebuild:
32 + Fix build failure with separate tinfo library.
33
34 22 Sep 2012; Anthony G. Basile <blueness@g.o> mg-20110905.ebuild:
35 keyword ~ppc64, bug #384639
36
37
38
39 1.13 app-editors/mg/mg-20110905.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?rev=1.13&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?rev=1.13&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?r1=1.12&r2=1.13
44
45 Index: mg-20110905.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v
48 retrieving revision 1.12
49 retrieving revision 1.13
50 diff -u -r1.12 -r1.13
51 --- mg-20110905.ebuild 22 Sep 2012 13:32:28 -0000 1.12
52 +++ mg-20110905.ebuild 28 Feb 2013 01:02:50 -0000 1.13
53 @@ -1,6 +1,6 @@
54 -# Copyright 1999-2012 Gentoo Foundation
55 +# Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v 1.12 2012/09/22 13:32:28 blueness Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v 1.13 2013/02/28 01:02:50 ulm Exp $
59
60 EAPI=4
61
62 @@ -15,8 +15,9 @@
63 KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
64 IUSE="livecd"
65
66 -DEPEND="sys-libs/ncurses"
67 -RDEPEND="${DEPEND}"
68 +RDEPEND="sys-libs/ncurses"
69 +DEPEND="${RDEPEND}
70 + virtual/pkgconfig"
71
72 src_configure() {
73 # econf won't work, as this script does not accept any parameters
74 @@ -24,7 +25,10 @@
75 }
76
77 src_compile() {
78 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
79 + emake CC="$(tc-getCC)" \
80 + CFLAGS="${CFLAGS}" \
81 + LDFLAGS="${LDFLAGS}" \
82 + LIBS="$(pkg-config --libs ncurses)"
83 }
84
85 src_install() {