Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/musca: ChangeLog musca-0.9.23.ebuild
Date: Mon, 28 Sep 2009 01:11:42
Message-Id: E1Ms4mC-0005In-0K@stork.gentoo.org
1 jer 09/09/28 01:11:40
2
3 Modified: ChangeLog musca-0.9.23.ebuild
4 Log:
5 Use savedconfig on config.h.
6 (Portage version: 2.2_rc41/cvs/Linux i686)
7
8 Revision Changes Path
9 1.3 x11-wm/musca/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/ChangeLog?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/ChangeLog?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/ChangeLog?r1=1.2&r2=1.3
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- ChangeLog 26 Sep 2009 16:13:16 -0000 1.2
22 +++ ChangeLog 28 Sep 2009 01:11:39 -0000 1.3
23 @@ -1,6 +1,9 @@
24 # ChangeLog for x11-wm/musca
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.2 2009/09/26 16:13:16 jer Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.3 2009/09/28 01:11:39 jer Exp $
28 +
29 + 28 Sep 2009; Jeroen Roovers <jer@g.o> musca-0.9.23.ebuild:
30 + Use savedconfig on config.h.
31
32 26 Sep 2009; Jeroen Roovers <jer@g.o> musca-0.9.23.ebuild:
33 Use P in SRC_URI thanks to nightmorph.
34
35
36
37 1.3 x11-wm/musca/musca-0.9.23.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild?rev=1.3&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild?rev=1.3&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild?r1=1.2&r2=1.3
42
43 Index: musca-0.9.23.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild,v
46 retrieving revision 1.2
47 retrieving revision 1.3
48 diff -u -r1.2 -r1.3
49 --- musca-0.9.23.ebuild 26 Sep 2009 16:13:16 -0000 1.2
50 +++ musca-0.9.23.ebuild 28 Sep 2009 01:11:39 -0000 1.3
51 @@ -1,10 +1,10 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild,v 1.2 2009/09/26 16:13:16 jer Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild,v 1.3 2009/09/28 01:11:39 jer Exp $
56
57 EAPI="2"
58
59 -inherit eutils toolchain-funcs
60 +inherit eutils savedconfig toolchain-funcs
61
62 DESCRIPTION="A simple dynamic window manager for X, with features nicked from
63 ratpoison and dwm"
64 @@ -21,14 +21,17 @@
65
66 src_prepare() {
67 epatch "${FILESDIR}/${P}-flags.patch"
68 + use savedconfig && restore_config config.h
69 }
70
71 src_compile() {
72 + use savedconfig && msg=", please check the saved config file"
73 tc-export CC
74 - default_src_compile
75 + emake || die "emake failed${msg}"
76 }
77
78 src_install() {
79 dobin musca
80 doman musca.1
81 + save_config config.h
82 }