diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-09-07 04:23:21 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-09-07 04:28:56 +0200 |
commit | d0fdbc3c6f78598a3c2d9925d4ba4be13b7baac6 (patch) | |
tree | 27276d3efe1057cafe5f3528cf3973d66c76a8ef /app-emacs/geiser/geiser-0.26.1.ebuild | |
parent | media-gfx/inkscape: Keyword 1.2.1-r2 arm, #859184 (diff) | |
download | gentoo-d0fdbc3c6f78598a3c2d9925d4ba4be13b7baac6.tar.gz gentoo-d0fdbc3c6f78598a3c2d9925d4ba4be13b7baac6.tar.bz2 gentoo-d0fdbc3c6f78598a3c2d9925d4ba4be13b7baac6.zip |
app-emacs/geiser: bump to 0.26.1
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/geiser/geiser-0.26.1.ebuild')
-rw-r--r-- | app-emacs/geiser/geiser-0.26.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-emacs/geiser/geiser-0.26.1.ebuild b/app-emacs/geiser/geiser-0.26.1.ebuild new file mode 100644 index 000000000000..0ef6d6918771 --- /dev/null +++ b/app-emacs/geiser/geiser-0.26.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=25.1 + +inherit elisp + +DESCRIPTION="Generic interaction mode between Emacs and different Scheme implementations" +HOMEPAGE="https://gitlab.com/emacs-geiser/geiser/" +SRC_URI="https://gitlab.com/emacs-geiser/${PN}/-/archive/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-emacs/transient" +BDEPEND=" + ${RDEPEND} + app-text/texi2html + sys-apps/texinfo +" + +DOCS=( readme.org news.org doc/html ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + BYTECOMPFLAGS="-L elisp" elisp-compile elisp/*.el + + emake -C doc info web +} + +src_install() { + elisp-install ${PN} elisp/*.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + + doinfo doc/*.info + einstalldocs +} |