diff options
author | Ulrich Müller <ulm@gentoo.org> | 2022-12-01 19:34:30 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2022-12-01 19:36:43 +0100 |
commit | 981f97a69b0de7e20c5df196e18379702bfaf8ad (patch) | |
tree | 0938831afd2e7ebaafef2af1ea347c49abb94946 /app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild | |
parent | app-emacs/ebuild-mode: drop 1.56 (diff) | |
download | gentoo-981f97a69b0de7e20c5df196e18379702bfaf8ad.tar.gz gentoo-981f97a69b0de7e20c5df196e18379702bfaf8ad.tar.bz2 gentoo-981f97a69b0de7e20c5df196e18379702bfaf8ad.zip |
app-xemacs/ebuild-mode: add 1.61
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild')
-rw-r--r-- | app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild b/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild new file mode 100644 index 000000000000..44559c96c2ab --- /dev/null +++ b/app-xemacs/ebuild-mode/ebuild-mode-1.61.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs" +SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86" + +RDEPEND=">=app-editors/xemacs-21.4.20-r5 + app-xemacs/sh-script" +BDEPEND="${RDEPEND}" + +src_compile() { + local XEMACS="${EPREFIX}/usr/bin/xemacs" + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(add-to-list 'load-path \".\")" \ + -f batch-byte-compile \ + ebuild-mode.el gentoo-newsitem-mode.el || die + + "${XEMACS}" -batch -q --no-site-file \ + -eval "(setq autoload-package-name \"${PN}\")" \ + -eval "(setq generated-autoload-file \"${S}/auto-autoloads.el\")" \ + -l autoload -f batch-update-autoloads \ + ebuild-mode.el gentoo-newsitem-mode.el || die +} + +src_install() { + insinto /usr/share/xemacs/site-packages/lisp/${PN} + doins *.el *.elc +} |