Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm/
Date: Mon, 28 Apr 2014 14:00:00
Message-Id: 1398693641.5d3d635ed96564855ecb0352abd99dc47b6ab2ac.nimiux@gentoo
1 commit: 5d3d635ed96564855ecb0352abd99dc47b6ab2ac
2 Author: Chema Alonso <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 28 14:00:41 2014 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 28 14:00:41 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=5d3d635e
7
8 x11-wm/stumpwm: install stumpwm binary
9
10 ---
11 x11-wm/stumpwm/stumpwm-9999.ebuild | 11 ++++++++++-
12 1 file changed, 10 insertions(+), 1 deletion(-)
13
14 diff --git a/x11-wm/stumpwm/stumpwm-9999.ebuild b/x11-wm/stumpwm/stumpwm-9999.ebuild
15 index e611911..9a0e054 100644
16 --- a/x11-wm/stumpwm/stumpwm-9999.ebuild
17 +++ b/x11-wm/stumpwm/stumpwm-9999.ebuild
18 @@ -4,7 +4,7 @@
19
20 EAPI=5
21
22 -inherit common-lisp-3 git-2
23 +inherit autotools common-lisp-3 git-2
24
25 DESCRIPTION="Stumpwm is a tiling, keyboard driven X11 Window Manager written entirely in Common Lisp."
26 HOMEPAGE="http://www.nongnu.org/stumpwm/index.html"
27 @@ -34,8 +34,17 @@ do_doc() {
28 texi2pdf -o "${pdffile}" "${PN}.texi.in" && dodoc "${pdffile}" || die
29 }
30
31 +src_prepare() {
32 + eautoreconf
33 +}
34 +
35 +src_compile() {
36 + emake -j1
37 +}
38 +
39 src_install() {
40 common-lisp-install-sources *.lisp
41 common-lisp-install-asdf
42 + dobin "${PN}"
43 use doc && do_doc
44 }