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 17:04:13
Message-Id: 20130228170408.BA35F2171D@flycatcher.gentoo.org
1 ulm 13/02/28 17:04:08
2
3 Modified: ChangeLog mg-20110905.ebuild
4 Log:
5 Don't call pkg-config directly, in order not to break cross compilation.
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.47 app-editors/mg/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 28 Feb 2013 01:02:50 -0000 1.46
23 +++ ChangeLog 28 Feb 2013 17:04:08 -0000 1.47
24 @@ -1,6 +1,9 @@
25 # ChangeLog for app-editors/mg
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.46 2013/02/28 01:02:50 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/ChangeLog,v 1.47 2013/02/28 17:04:08 ulm Exp $
29 +
30 + 28 Feb 2013; Ulrich Müller <ulm@g.o> mg-20110905.ebuild:
31 + Don't call pkg-config directly, in order not to break cross compilation.
32
33 28 Feb 2013; Ulrich Müller <ulm@g.o> mg-20110905.ebuild:
34 Fix build failure with separate tinfo library.
35
36
37
38 1.14 app-editors/mg/mg-20110905.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?rev=1.14&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?rev=1.14&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/mg/mg-20110905.ebuild?r1=1.13&r2=1.14
43
44 Index: mg-20110905.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v
47 retrieving revision 1.13
48 retrieving revision 1.14
49 diff -u -r1.13 -r1.14
50 --- mg-20110905.ebuild 28 Feb 2013 01:02:50 -0000 1.13
51 +++ mg-20110905.ebuild 28 Feb 2013 17:04:08 -0000 1.14
52 @@ -1,12 +1,12 @@
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v 1.13 2013/02/28 01:02:50 ulm Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/app-editors/mg/mg-20110905.ebuild,v 1.14 2013/02/28 17:04:08 ulm Exp $
57
58 EAPI=4
59
60 inherit toolchain-funcs
61
62 -DESCRIPTION="Micro GNU/emacs, a port from the BSDs"
63 +DESCRIPTION="MicroGnuEmacs, a port from the BSDs"
64 HOMEPAGE="http://homepage.boetes.org/software/mg/"
65 SRC_URI="http://homepage.boetes.org/software/mg/${P}.tar.gz"
66
67 @@ -28,7 +28,7 @@
68 emake CC="$(tc-getCC)" \
69 CFLAGS="${CFLAGS}" \
70 LDFLAGS="${LDFLAGS}" \
71 - LIBS="$(pkg-config --libs ncurses)"
72 + LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
73 }
74
75 src_install() {