Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/chess/files: 50chess-gentoo.el 50chess-gentoo-2.0_beta6.el
Date: Thu, 10 Sep 2009 13:07:41
Message-Id: E1MljND-0002FS-J1@stork.gentoo.org
1 ulm 09/09/10 13:07:39
2
3 Modified: 50chess-gentoo.el
4 Added: 50chess-gentoo-2.0_beta6.el
5 Log:
6 Install sounds and pixmaps for pieces under SITEETC.
7 (Portage version: 2.2_rc40/cvs/Linux i686)
8
9 Revision Changes Path
10 1.4 app-emacs/chess/files/50chess-gentoo.el
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/50chess-gentoo.el?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/50chess-gentoo.el?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/50chess-gentoo.el?r1=1.3&r2=1.4
15
16 Index: 50chess-gentoo.el
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/chess/files/50chess-gentoo.el,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- 50chess-gentoo.el 14 Mar 2008 21:54:07 -0000 1.3
23 +++ 50chess-gentoo.el 10 Sep 2009 13:07:39 -0000 1.4
24 @@ -1,6 +1,3 @@
25 -
26 -;;; chess site-lisp configuration
27 -
28 (add-to-list 'load-path "@SITELISP@")
29
30 (autoload 'chess "chess"
31 @@ -26,8 +23,8 @@
32
33 (add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode))
34
35 -(setq chess-images-directory "/usr/share/pixmaps/chess/xboard")
36 -(setq chess-sound-directory "/usr/share/sounds/chess")
37 +(setq chess-images-directory "@SITEETC@/pieces/xboard")
38 +(setq chess-sound-directory "@SITEETC@/sounds")
39
40 ;; Change the order of the engine preference list to coincide with the order
41 ;; of our dependencies: games-board/gnuchess, crafty, phalanx, and sjeng.
42
43
44
45 1.1 app-emacs/chess/files/50chess-gentoo-2.0_beta6.el
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/50chess-gentoo-2.0_beta6.el?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/chess/files/50chess-gentoo-2.0_beta6.el?rev=1.1&content-type=text/plain
49
50 Index: 50chess-gentoo-2.0_beta6.el
51 ===================================================================
52 (add-to-list 'load-path "@SITELISP@")
53
54 (autoload 'chess "chess"
55 "Start a game of chess, playing against ENGINE (a module name)." t)
56 (defalias 'chess-session 'chess)
57 (autoload 'chess-create-display "chess"
58 "Create a display, letting the user's customization decide the style.")
59 (autoload 'chess-link "chess-link"
60 "Play out a game between two engines, and watch the progress." t)
61 (autoload 'chess-pgn-read "chess-pgn"
62 "Read and display a PGN game after point." t)
63 (autoload 'chess-pgn-mode "chess-pgn"
64 "A mode for editing chess PGN files." t)
65 (defalias 'pgn-mode 'chess-pgn-mode)
66 (autoload 'chess-puzzle "chess-puzzle"
67 "Pick a random puzzle from FILE, and solve it against the default engine." t)
68 (autoload 'chess-fischer-random-position "chess-random"
69 "Generate a Fischer Random style position.")
70 (autoload 'chess-tutorial "chess-tutorial"
71 "A simple chess training display." t)
72 (autoload 'chess-ics "chess-ics"
73 "Connect to an Internet Chess Server." t)
74
75 (add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode))
76
77 (setq chess-images-directory "/usr/share/pixmaps/chess/xboard")
78 (setq chess-sound-directory "/usr/share/sounds/chess")
79
80 ;; Change the order of the engine preference list to coincide with the order
81 ;; of our dependencies: games-board/gnuchess, crafty, phalanx, and sjeng.
82 ;; The user can override this using M-x customize-group RET chess RET
83 (setq chess-default-engine
84 '(chess-gnuchess chess-crafty chess-phalanx chess-sjeng))