From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A80B21395E2 for ; Thu, 24 Nov 2016 08:47:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5C1221C07D; Thu, 24 Nov 2016 08:47:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BC48521C07D for ; Thu, 24 Nov 2016 08:47:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7A14340EEA for ; Thu, 24 Nov 2016 08:47:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1940949E for ; Thu, 24 Nov 2016 08:47:25 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1479977186.11b9e5b1ff3925198dff61c48282e8993b418ad1.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/casting-spels-emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild X-VCS-Directories: app-doc/casting-spels-emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 11b9e5b1ff3925198dff61c48282e8993b418ad1 X-VCS-Branch: master Date: Thu, 24 Nov 2016 08:47:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 98dd67e5-f826-43e3-9336-8a6f5506499b X-Archives-Hash: 84533c31560b232c4684eca55afaf544 commit: 11b9e5b1ff3925198dff61c48282e8993b418ad1 Author: Ulrich Müller gentoo org> AuthorDate: Thu Nov 24 08:46:26 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Nov 24 08:46:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b9e5b1 app-doc/casting-spels-emacs: Bump to EAPI 6. Update HOMEPAGE. Package-Manager: portage-2.3.2 .../casting-spels-emacs-19-r2.ebuild | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild b/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild new file mode 100644 index 00000000..9f63d93 --- /dev/null +++ b/app-doc/casting-spels-emacs/casting-spels-emacs-19-r2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit elisp-common + +DESCRIPTION="Casting SPELs in Lisp - A Comic Book (Emacs Lisp Edition)" +HOMEPAGE="http://www.lisperati.com/casting-spels-emacs/html/casting-spels-emacs-1.html + https://www.gnu.org/software/emacs/casting-spels-emacs/" +SRC_URI="https://casting-spels-emacs.googlecode.com/files/${PN}-v${PV}.zip" + +LICENSE="GPL-2+ FDL-1.2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="virtual/emacs" +DEPEND="app-arch/unzip" + +S="${WORKDIR}/${PN}" + +src_prepare() { + sed -i 's/\r$//' *.txt html/*.html {lisp,test}/*.el || die + # needs cl extensions + eapply "${FILESDIR}/${P}-require-cl.patch" + eapply_user +} + +src_install() { + elisp-install ${PN} lisp/*.el + dodoc README.txt test/walk-through-commands.el + docinto html + dodoc html/*.html + docinto html/images + dodoc images/*.jpg images/*.png + dosym html/images /usr/share/doc/${PF}/images + dosym ${SITELISP}/${PN} /usr/share/doc/${PF}/lisp +}