Gentoo Archives: gentoo-commits

From: "Eray Aslan (eras)" <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/mailutils: mailutils-2.99.97.ebuild ChangeLog
Date: Thu, 28 Feb 2013 13:03:33
Message-Id: 20130228130329.2C4E92171D@flycatcher.gentoo.org
1 eras 13/02/28 13:03:29
2
3 Modified: mailutils-2.99.97.ebuild ChangeLog
4 Log:
5 Use tc-getPKG_CONFIG instead of calling pkg-config directly
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
8
9 Revision Changes Path
10 1.8 net-mail/mailutils/mailutils-2.99.97.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild?r1=1.7&r2=1.8
15
16 Index: mailutils-2.99.97.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- mailutils-2.99.97.ebuild 28 Feb 2013 11:48:53 -0000 1.7
23 +++ mailutils-2.99.97.ebuild 28 Feb 2013 13:03:29 -0000 1.8
24 @@ -1,11 +1,11 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild,v 1.7 2013/02/28 11:48:53 eras Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/mailutils-2.99.97.ebuild,v 1.8 2013/02/28 13:03:29 eras Exp $
29
30 EAPI=4
31 PYTHON_DEPEND="python? 2"
32
33 -inherit eutils python
34 +inherit eutils python toolchain-funcs
35
36 DESCRIPTION="A useful collection of mail servers, clients, and filters."
37 HOMEPAGE="http://www.gnu.org/software/mailutils/mailutils.html"
38 @@ -61,7 +61,7 @@
39 # maildir is the Gentoo default
40 # but fails tests. So set it in config file instead.
41 #econf MU_DEFAULT_SCHEME=maildir \
42 - econf CURSES_LIBS="$(pkg-config --libs ncurses)" \
43 + econf CURSES_LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)" \
44 $(use_with berkdb berkeley-db) \
45 $(use_with bidi fribidi) \
46 $(use_enable ipv6) \
47
48
49
50 1.64 net-mail/mailutils/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.64&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/ChangeLog?rev=1.64&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/mailutils/ChangeLog?r1=1.63&r2=1.64
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v
59 retrieving revision 1.63
60 retrieving revision 1.64
61 diff -u -r1.63 -r1.64
62 --- ChangeLog 28 Feb 2013 11:48:53 -0000 1.63
63 +++ ChangeLog 28 Feb 2013 13:03:29 -0000 1.64
64 @@ -1,6 +1,9 @@
65 # ChangeLog for net-mail/mailutils
66 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.63 2013/02/28 11:48:53 eras Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailutils/ChangeLog,v 1.64 2013/02/28 13:03:29 eras Exp $
69 +
70 + 28 Feb 2013; Eray Aslan <eras@g.o> mailutils-2.99.97.ebuild:
71 + Use tc-getPKG_CONFIG instead of calling pkg-config directly
72
73 28 Feb 2013; Eray Aslan <eras@g.o> mailutils-2.99.97.ebuild:
74 Fix building with ncurses[tinfo] - bug #459526