From a643920fb67276702e003e4cc00b7581ad0d69aa Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Sat, 8 Jun 2024 19:03:43 +0200 Subject: dev-lisp/clx: Update EAPI from 6 to 7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ulrich Müller --- dev-lisp/clx/clx-0.7.5-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++ dev-lisp/clx/clx-0.7.5.ebuild | 36 ------------------------------------ 2 files changed, 35 insertions(+), 36 deletions(-) create mode 100644 dev-lisp/clx/clx-0.7.5-r1.ebuild delete mode 100644 dev-lisp/clx/clx-0.7.5.ebuild (limited to 'dev-lisp') diff --git a/dev-lisp/clx/clx-0.7.5-r1.ebuild b/dev-lisp/clx/clx-0.7.5-r1.ebuild new file mode 100644 index 000000000000..4f8c577096fe --- /dev/null +++ b/dev-lisp/clx/clx-0.7.5-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit common-lisp-3 + +DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL" +HOMEPAGE="https://www.cliki.net/CLX" +SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="sys-apps/texinfo + doc? ( virtual/texi2dvi )" + +src_compile() { + cd manual || die + makeinfo ${PN}.texinfo -o ${PN}.info || die + if use doc ; then + VARTEXFONTS="${T}"/fonts \ + texi2pdf ${PN}.texinfo -o ${PN}.pdf || die + fi +} + +src_install() { + common-lisp-install-sources *.lisp debug demo extensions tests + common-lisp-install-asdf + dodoc NEWS CHANGES README* + doinfo manual/${PN}.info + use doc && dodoc manual/${PN}.pdf +} diff --git a/dev-lisp/clx/clx-0.7.5.ebuild b/dev-lisp/clx/clx-0.7.5.ebuild deleted file mode 100644 index 06e69d160335..000000000000 --- a/dev-lisp/clx/clx-0.7.5.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 - -DESCRIPTION="CLX is the Common Lisp interface to the X11 protocol primarily for SBCL" -HOMEPAGE="http://www.cliki.net/CLX" -SRC_URI="https://github.com/sharplispers/clx/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="doc" - -DEPEND="sys-apps/texinfo - doc? ( virtual/texi2dvi )" -RDEPEND="!dev-lisp/cl-${PN}" - -src_compile() { - cd manual || die - makeinfo ${PN}.texinfo -o ${PN}.info || die - if use doc ; then - VARTEXFONTS="${T}"/fonts \ - texi2pdf ${PN}.texinfo -o ${PN}.pdf || die - fi -} - -src_install() { - common-lisp-install-sources *.lisp debug demo extensions tests - common-lisp-install-asdf - dodoc NEWS CHANGES README* - doinfo manual/${PN}.info - use doc && dodoc manual/${PN}.pdf -} -- cgit v1.2.3-65-gdbad