diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-02-26 18:19:50 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-02-26 18:19:50 +0000 |
commit | 7647a3bd353f043f0709984d218f063d3719a1fe (patch) | |
tree | ae673f857f0dd67842f62fcfb6ff9027a451f4ea /x11-wm/musca | |
parent | Stable for HPPA (bug #306793). (diff) | |
download | gentoo-2-7647a3bd353f043f0709984d218f063d3719a1fe.tar.gz gentoo-2-7647a3bd353f043f0709984d218f063d3719a1fe.tar.bz2 gentoo-2-7647a3bd353f043f0709984d218f063d3719a1fe.zip |
Version bump using bzr snapshot (r270 from 03 Nov 2009).
(Portage version: 2.2_rc63/cvs/Linux i686)
Diffstat (limited to 'x11-wm/musca')
-rw-r--r-- | x11-wm/musca/ChangeLog | 8 | ||||
-rw-r--r-- | x11-wm/musca/musca-0.9.24_p20100226.ebuild | 53 |
2 files changed, 60 insertions, 1 deletions
diff --git a/x11-wm/musca/ChangeLog b/x11-wm/musca/ChangeLog index 70425562adc3..322b148b7907 100644 --- a/x11-wm/musca/ChangeLog +++ b/x11-wm/musca/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-wm/musca # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.12 2010/02/18 05:41:24 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/ChangeLog,v 1.13 2010/02/26 18:19:50 jer Exp $ + +*musca-0.9.24_p20100226 (26 Feb 2010) + + 26 Feb 2010; Jeroen Roovers <jer@gentoo.org> + +musca-0.9.24_p20100226.ebuild: + Version bump using bzr snapshot (r270 from 03 Nov 2009). 18 Feb 2010; Jeroen Roovers <jer@gentoo.org> musca-0.9.24.ebuild: restore_config has its own USE check. diff --git a/x11-wm/musca/musca-0.9.24_p20100226.ebuild b/x11-wm/musca/musca-0.9.24_p20100226.ebuild new file mode 100644 index 000000000000..e84968317f70 --- /dev/null +++ b/x11-wm/musca/musca-0.9.24_p20100226.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/musca/musca-0.9.24_p20100226.ebuild,v 1.1 2010/02/26 18:19:50 jer Exp $ + +EAPI="2" + +inherit eutils savedconfig toolchain-funcs + +DESCRIPTION="A simple dynamic window manager for X, with features nicked from +ratpoison and dwm" +HOMEPAGE="http://aerosuidae.net/musca/" +SRC_URI="mirror://gentoo/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86" +IUSE="apis xlisten" + +COMMON="x11-libs/libX11" +DEPEND="${COMMON} sys-apps/sed" +RDEPEND=" + ${COMMON} x11-misc/dmenu + apis? ( x11-misc/xbindkeys ) +" + +src_prepare() { + epatch "${FILESDIR}"/${P/_p*}-make.patch + + local i + for i in apis xlisten; do + use ${i} || sed -e "s|${i}||g" -i Makefile + done + + restore_config config.h +} + +src_compile() { + tc-export CC + emake || die "emake failed" +} + +src_install() { + dobin musca || die "dobin failed" + + local i + for i in xlisten apis; do + if use ${i}; then + dobin ${i} || die "dobin ${i} failed" + fi + done + doman musca.1 || die "doman failed" + save_config config.h +} |