diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-05-12 16:41:23 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-05-12 16:41:23 +0000 |
commit | aaea1a0d1a273cdd53b1c4e75f2f33baa0c451fa (patch) | |
tree | bf03b0c6202ec4ce3dda4d4cb91ce338e3b94b17 /app-emacs | |
parent | alpha/ia64/sparc stable wrt #221063 (diff) | |
download | gentoo-2-aaea1a0d1a273cdd53b1c4e75f2f33baa0c451fa.tar.gz gentoo-2-aaea1a0d1a273cdd53b1c4e75f2f33baa0c451fa.tar.bz2 gentoo-2-aaea1a0d1a273cdd53b1c4e75f2f33baa0c451fa.zip |
Remove old.
(Portage version: 2.1.5_rc10)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/chess/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/chess/chess-2.0_beta6.ebuild | 47 | ||||
-rw-r--r-- | app-emacs/chess/files/51chess-gentoo.el | 39 |
3 files changed, 5 insertions, 87 deletions
diff --git a/app-emacs/chess/ChangeLog b/app-emacs/chess/ChangeLog index 093cd0b4f83e..e00d5b1b2cc8 100644 --- a/app-emacs/chess/ChangeLog +++ b/app-emacs/chess/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/chess # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/chess/ChangeLog,v 1.26 2008/05/12 16:05:08 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/chess/ChangeLog,v 1.27 2008/05/12 16:41:23 ulm Exp $ + + 12 May 2008; Ulrich Mueller <ulm@gentoo.org> -files/51chess-gentoo.el, + -chess-2.0_beta6.ebuild: + Remove old. 12 May 2008; Markus Meier <maekke@gentoo.org> chess-2.0_beta6-r1.ebuild: amd64 stable, bug #217514 diff --git a/app-emacs/chess/chess-2.0_beta6.ebuild b/app-emacs/chess/chess-2.0_beta6.ebuild deleted file mode 100644 index 7516beff0660..000000000000 --- a/app-emacs/chess/chess-2.0_beta6.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/chess/chess-2.0_beta6.ebuild,v 1.5 2007/10/26 17:29:32 nixnut Exp $ - -inherit elisp eutils - -DESCRIPTION="A chess client and library for Emacs" -HOMEPAGE="http://emacs-chess.sourceforge.net/" -SRC_URI="mirror://sourceforge/emacs-chess/${P/_beta/b}.tar.gz - mirror://gentoo/emacs-chess-sounds-2.0.tar.bz2 - mirror://gentoo/emacs-chess-pieces-2.0.tar.bz2" - -LICENSE="GPL-2 FDL-1.1" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -DEPEND="" -RDEPEND="games-board/gnuchess" - -S="${WORKDIR}/${PN}" - -SITEFILE=51${PN}-gentoo.el -DOCS="ChangeLog EPD.txt PGN.txt PLAN README TODO" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PV}-chess-pos-move-gentoo.patch" -} - -# this is needed; elisp.eclass redefines src_compile() from portage default -src_compile() { - emake || die "emake failed" -} - -src_install() { - elisp_src_install - - doinfo chess.info - einfo "Installing sound files ..." - insinto /usr/share/sounds/${PN} - doins "${WORKDIR}"/sounds/* - einfo "Installing pixmap files ..." - insinto /usr/share/pixmaps/${PN} - doins -r "${WORKDIR}"/pieces/* -} diff --git a/app-emacs/chess/files/51chess-gentoo.el b/app-emacs/chess/files/51chess-gentoo.el deleted file mode 100644 index 8067b1464c1c..000000000000 --- a/app-emacs/chess/files/51chess-gentoo.el +++ /dev/null @@ -1,39 +0,0 @@ - -;;; chess site-lisp configuration - -(add-to-list 'load-path "@SITELISP@") - -(autoload 'chess "chess" - "Start a game of chess, playing against ENGINE (a module name)." t) -(defalias 'chess-session 'chess) -(autoload 'chess-create-display "chess" - "Create a display, letting the user's customization decide the style.") -(autoload 'chess-link "chess-link" - "Play out a game between two engines, and watch the progress." t) -(autoload 'chess-pgn-read "chess-pgn" - "Read and display a PGN game after point." t) -(autoload 'chess-pgn-mode "chess-pgn" - "A mode for editing chess PGN files." t) -(defalias 'pgn-mode 'chess-pgn-mode) -(autoload 'chess-puzzle "chess-puzzle" - "Pick a random puzzle from FILE, and solve it against the default engine." t) -(autoload 'chess-fischer-random-position "chess-random" - "Generate a Fischer Random style position.") -(autoload 'chess-tutorial "chess-tutorial" - "A simple chess training display." t) -(autoload 'chess-ics "chess-ics" - "Connect to an Internet Chess Server." t) - -(add-to-list 'auto-mode-alist '("\\.pgn\\'" . chess-pgn-mode)) - -(custom-set-variables - '(chess-images-directory "/usr/share/pixmaps/chess/xboard") - '(chess-sound-directory "/usr/share/sounds/chess")) - -;; Change the engine preference order -- gnuchess is a dependency -;; (we depend on app-games/gnuchess explicitly). We make crafty and -;; phalanx optional. The user can override this anytime using M-x -;; customize-group RET chess RET - -(custom-set-variables - '(chess-default-engine (quote (chess-gnuchess chess-crafty chess-phalanx)))) |