diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-04-02 17:13:09 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-04-02 17:13:09 +0200 |
commit | c5edbf7f7419b38aca621e669d26349c2de0753e (patch) | |
tree | 779930a58e1bbc5da1a8269d04a63a4978823a4d | |
parent | dev-lisp/cl-recaptcha: Drop ~sparc because of unkeyworded dependencies (diff) | |
download | lisp-c5edbf7f7419b38aca621e669d26349c2de0753e.tar.gz lisp-c5edbf7f7419b38aca621e669d26349c2de0753e.tar.bz2 lisp-c5edbf7f7419b38aca621e669d26349c2de0753e.zip |
dev-lisp/climacs: Remove package
SRC_URI is gone.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | dev-lisp/climacs/Manifest | 1 | ||||
-rw-r--r-- | dev-lisp/climacs/climacs-20080209-r1.ebuild | 52 |
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-lisp/climacs/Manifest b/dev-lisp/climacs/Manifest deleted file mode 100644 index cbe96bba..00000000 --- a/dev-lisp/climacs/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST climacs-20080209.tar.bz2 90494 BLAKE2B d2d760b00e9c5e13f693aafd3ccaa2553131f96ed998e7593ecf54f3f335888ba38465d0b41121e74c85c56f401e94cc5d691836602be230ac9e93ee89a0e904 SHA512 e656d82c88cebc49e6a13a2f1d6ebd29bbc113eb41108c1a8c68681af2afa91cdd7defd034a10f46e32b13ce4ebade3dc28b2ec1e5ee1e6d4bce5d2328ad33c0 diff --git a/dev-lisp/climacs/climacs-20080209-r1.ebuild b/dev-lisp/climacs/climacs-20080209-r1.ebuild deleted file mode 100644 index 092a7d74..00000000 --- a/dev-lisp/climacs/climacs-20080209-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 elisp-common eutils - -DESCRIPTION="Climacs is an Emacs-like text editor written in Common Lisp." -HOMEPAGE="http://common-lisp.net/project/climacs" -SRC_URI="http://common-lisp.net/~sionescu/files/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc" - -DEPEND="sys-apps/texinfo - doc? ( virtual/texi2dvi )" -RDEPEND=">=dev-lisp/flexichain-0.4.1 - >=dev-lisp/mcclim-0.9.5_p20080209" - -src_compile() { - cd Doc || die - makeinfo --force ${PN}-internals.texi -o ${PN}-internals.info || die - [[ -e ${PN}-internals.info ]] || die "Cannot build info docs(internals)" - makeinfo --force ${PN}-user.texi -o ${PN}-user.info || die - [[ -e ${PN}-user.info ]] || die "Cannot build info docs(user manual)" - if use doc ; then - VARTEXFONTS="${T}"/fonts \ - texi2pdf ${PN}-internals.texi -o ${PN}-internals.pdf \ - || die "Cannot build PDF docs(internals)" - VARTEXFONTS="${T}"/fonts \ - texi2pdf ${PN}-user.texi -o ${PN}-user.pdf \ - || die "Cannot build PDF docs(user manual)" - fi -} - -src_install() { - common-lisp-install-sources *.lisp - common-lisp-install-asdf - dodoc INSTALL* README TODO - doinfo Doc/${PN}-{internals,user}.info - use doc && dodoc Doc/${PN}-{internals,user}.pdf -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} |