diff options
author | Jeroen Roovers <jer@gentoo.org> | 2009-09-28 01:11:39 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2009-09-28 01:11:39 +0000 |
commit | 27da07571335e1b8185af2320567f41ebaf8775f (patch) | |
tree | 3f480c935b4b1631137f4239c432358db4a40dc1 /x11-wm | |
parent | Version bump (diff) | |
download | gentoo-2-27da07571335e1b8185af2320567f41ebaf8775f.tar.gz gentoo-2-27da07571335e1b8185af2320567f41ebaf8775f.tar.bz2 gentoo-2-27da07571335e1b8185af2320567f41ebaf8775f.zip |
Use savedconfig on config.h.
(Portage version: 2.2_rc41/cvs/Linux i686)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/musca/ChangeLog | 5 | ||||
-rw-r--r-- | x11-wm/musca/musca-0.9.23.ebuild | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-wm/musca/ChangeLog b/x11-wm/musca/ChangeLog index 267e0c5b52b2..f33406b1830a 100644 --- a/x11-wm/musca/ChangeLog +++ b/x11-wm/musca/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-wm/musca # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.2 2009/09/26 16:13:16 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.3 2009/09/28 01:11:39 jer Exp $ + + 28 Sep 2009; Jeroen Roovers <jer@gentoo.org> musca-0.9.23.ebuild: + Use savedconfig on config.h. 26 Sep 2009; Jeroen Roovers <jer@gentoo.org> musca-0.9.23.ebuild: Use P in SRC_URI thanks to nightmorph. diff --git a/x11-wm/musca/musca-0.9.23.ebuild b/x11-wm/musca/musca-0.9.23.ebuild index 8b8c9f7e0643..5c5d46e247b9 100644 --- a/x11-wm/musca/musca-0.9.23.ebuild +++ b/x11-wm/musca/musca-0.9.23.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild,v 1.2 2009/09/26 16:13:16 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.23.ebuild,v 1.3 2009/09/28 01:11:39 jer Exp $ EAPI="2" -inherit eutils toolchain-funcs +inherit eutils savedconfig toolchain-funcs DESCRIPTION="A simple dynamic window manager for X, with features nicked from ratpoison and dwm" @@ -21,14 +21,17 @@ RDEPEND="${DEPEND} x11-misc/dmenu" src_prepare() { epatch "${FILESDIR}/${P}-flags.patch" + use savedconfig && restore_config config.h } src_compile() { + use savedconfig && msg=", please check the saved config file" tc-export CC - default_src_compile + emake || die "emake failed${msg}" } src_install() { dobin musca doman musca.1 + save_config config.h } |