Gentoo Archives: gentoo-commits

From: "Josh Glover (jmglov)" <jmglov@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-wm/stumpwm/files: README.Gentoo
Date: Sun, 04 May 2008 01:32:34
Message-Id: E1JsT5b-0005xN-W1@stork.gentoo.org
1 jmglov 08/05/04 01:32:31
2
3 Added: README.Gentoo
4 Log:
5 This package was submitted by Nguyen Thai Ngoc Duy <pclouds@g.o> in bug #219832
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 x11-wm/stumpwm/files/README.Gentoo
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/stumpwm/files/README.Gentoo?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-wm/stumpwm/files/README.Gentoo?rev=1.1&content-type=text/plain
13
14 Index: README.Gentoo
15 ===================================================================
16
17 This file is installed in /usr/share/doc/stumpwm-cvs-*/README.Gentoo.gz
18
19 Stumpwm notes for Gentoo
20 ------------------------
21
22 As always with CVS ebuilds, DO NOT report problems to upstream.
23 Always report problems to the Gentoo Bugzilla at
24 http://bugs.gentoo.org/.
25
26 This is a live CVS port of Stumpwm therefore every time you emerge
27 x11-wm/stumpwm-cvs you will be installing the most recent Stumpwm.
28 You may not always get a working Stumpwm. The ebuild supports setting
29 ECVS_BRANCH from outside the ebuild so you can select Stumpwm CVS
30 source from the past.
31
32 Starting Stumpwm
33 ----------------
34
35 For the moment, actually starting Stumpwm is left as an exercise for
36 the user. Some users may prefer to load SLIME (via SWANK) support
37 into the image with Stumpwm and some users may prefer not to.
38 Deciding on SLIME TCP port numbers is also a user decision. Users may
39 wish to experiment with Stumpwm in different Common Lisp
40 implementations or just use a particular implementation.
41
42 Here are some hints to get you started:
43
44 (asdf:oos 'asdf:load-op :stumpwm)
45
46 Start a SLIME listener:
47
48 (asdf:oos 'asdf:load-op :swank)
49 (swank:create-swank-server 4005 :spawn)
50
51 Then you can connect your Emacs to the Stumpwm image later using the
52 following from Emacs:
53
54 M-x slime-connect RET 127.0.0.1 RET 4005 RET
55
56 Isn't SLIME wonderful?. You might consider app-misc/detachtty or
57 app-misc/screen for recovering the REPL if not using SLIME.
58
59 Start Stumpwm:
60
61 (stumpwm:stumpwm ":0")
62
63 You might also consider dev-lisp/cl-launch which is an excellent way
64 to wrap up Common Lisp systems into a single, portable shell script.
65 For example, the following creates a ~/bin/mystumpwm script which will
66 try to load the stumpwm system definition into SBCL. If that fails,
67 it will try CLISP:
68
69 cl-launch --output ~/bin/mystumpwm --lisp "sbcl clisp" \
70 --system stumpwm --init '(stumpwm:stumpwm ":0")'
71
72
73
74
75 --
76 gentoo-commits@l.g.o mailing list