Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/shmux: ChangeLog shmux-1.0.2.ebuild
Date: Fri, 31 Oct 2014 11:11:07
Message-Id: 20141031111102.1689F922D@oystercatcher.gentoo.org
1 jer 14/10/31 11:11:02
2
3 Modified: ChangeLog shmux-1.0.2.ebuild
4 Log:
5 Fix building against sys-libs/ncurses[tinfo] (bug #459642).
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.33 net-misc/shmux/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/shmux/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 15 Mar 2014 13:53:44 -0000 1.32
23 +++ ChangeLog 31 Oct 2014 11:11:02 -0000 1.33
24 @@ -1,6 +1,10 @@
25 # ChangeLog for net-misc/shmux
26 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/shmux/ChangeLog,v 1.32 2014/03/15 13:53:44 mrueg Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/shmux/ChangeLog,v 1.33 2014/10/31 11:11:02 jer Exp $
29 +
30 + 31 Oct 2014; Jeroen Roovers <jer@g.o> shmux-1.0.2.ebuild,
31 + +files/shmux-1.0.2-tinfo.patch:
32 + Fix building against sys-libs/ncurses[tinfo] (bug #459642).
33
34 15 Mar 2014; Manuel RĂ¼ger <mrueg@g.o> metadata.xml:
35 Add Alice Ferrazzi as maintainer. Proxied by me.
36
37
38
39 1.7 net-misc/shmux/shmux-1.0.2.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild?rev=1.7&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild?rev=1.7&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild?r1=1.6&r2=1.7
44
45 Index: shmux-1.0.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild,v
48 retrieving revision 1.6
49 retrieving revision 1.7
50 diff -u -r1.6 -r1.7
51 --- shmux-1.0.2.ebuild 17 Apr 2013 07:59:47 -0000 1.6
52 +++ shmux-1.0.2.ebuild 31 Oct 2014 11:11:02 -0000 1.7
53 @@ -1,6 +1,9 @@
54 -# Copyright 1999-2013 Gentoo Foundation
55 +# Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild,v 1.6 2013/04/17 07:59:47 ulm Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/net-misc/shmux/shmux-1.0.2.ebuild,v 1.7 2014/10/31 11:11:02 jer Exp $
59 +
60 +EAPI="5"
61 +inherit autotools eutils
62
63 DESCRIPTION="Program for executing the same command on many hosts in parallel"
64 HOMEPAGE="http://web.taranis.org/shmux/"
65 @@ -19,13 +22,17 @@
66 DEPEND="${RDEPEND}
67 virtual/awk"
68
69 -src_compile() {
70 - econf $(use_with pcre) || die "econf failed"
71 - emake || die "emake failed"
72 +src_prepare() {
73 + epatch "${FILESDIR}"/${P}-tinfo.patch
74 + eautoreconf
75 +}
76 +
77 +src_configure() {
78 + econf $(use_with pcre)
79 }
80
81 src_install() {
82 - dobin src/shmux || die "dobin failed"
83 - doman shmux.1 || die "doman failed"
84 - dodoc CHANGES || die "dodoc failed"
85 + dobin src/shmux
86 + doman shmux.1
87 + dodoc CHANGES
88 }