Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/climacs/
Date: Sat, 02 Apr 2022 15:35:06
Message-Id: 1648912389.c5edbf7f7419b38aca621e669d26349c2de0753e.ulm@gentoo
1 commit: c5edbf7f7419b38aca621e669d26349c2de0753e
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 15:13:09 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 15:13:09 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=c5edbf7f
7
8 dev-lisp/climacs: Remove package
9
10 SRC_URI is gone.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 dev-lisp/climacs/climacs-20080209-r1.ebuild | 52 -----------------------------
15 1 file changed, 52 deletions(-)
16
17 diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild
18 deleted file mode 100644
19 index 092a7d74..00000000
20 --- a/dev-lisp/climacs/climacs-20080209-r1.ebuild
21 +++ /dev/null
22 @@ -1,52 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit common-lisp-3 elisp-common eutils
29 -
30 -DESCRIPTION="Climacs is an Emacs-like text editor written in Common Lisp."
31 -HOMEPAGE="http://common-lisp.net/project/climacs"
32 -SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
37 -IUSE="doc"
38 -
39 -DEPEND="sys-apps/texinfo
40 - doc? ( virtual/texi2dvi )"
41 -RDEPEND=">=dev-lisp/flexichain-0.4.1
42 - >=dev-lisp/mcclim-0.9.5_p20080209"
43 -
44 -src_compile() {
45 - cd Doc || die
46 - makeinfo --force ${PN}-internals.texi -o ${PN}-internals.info || die
47 - [[ -e ${PN}-internals.info ]] || die "Cannot build info docs(internals)"
48 - makeinfo --force ${PN}-user.texi -o ${PN}-user.info || die
49 - [[ -e ${PN}-user.info ]] || die "Cannot build info docs(user manual)"
50 - if use doc ; then
51 - VARTEXFONTS="${T}"/fonts \
52 - texi2pdf ${PN}-internals.texi -o ${PN}-internals.pdf \
53 - || die "Cannot build PDF docs(internals)"
54 - VARTEXFONTS="${T}"/fonts \
55 - texi2pdf ${PN}-user.texi -o ${PN}-user.pdf \
56 - || die "Cannot build PDF docs(user manual)"
57 - fi
58 -}
59 -
60 -src_install() {
61 - common-lisp-install-sources *.lisp
62 - common-lisp-install-asdf
63 - dodoc INSTALL* README TODO
64 - doinfo Doc/${PN}-{internals,user}.info
65 - use doc && dodoc Doc/${PN}-{internals,user}.pdf
66 -}
67 -
68 -pkg_postinst() {
69 - use emacs && elisp-site-regen
70 -}
71 -
72 -pkg_postrm() {
73 - use emacs && elisp-site-regen
74 -}