diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-06-10 19:28:42 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-06-10 19:29:31 +0200 |
commit | c17f069e0fc9ae8095cfa63850a09a76d0987951 (patch) | |
tree | b83b6273ac20c91df7d345c44c8dd1306bee2374 /app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild | |
parent | dev-perl/gtk2-traymanager: x86 stable (bug #657634) (diff) | |
download | gentoo-c17f069e0fc9ae8095cfa63850a09a76d0987951.tar.gz gentoo-c17f069e0fc9ae8095cfa63850a09a76d0987951.tar.bz2 gentoo-c17f069e0fc9ae8095cfa63850a09a76d0987951.zip |
app-emacs/lyskom-elisp-client: New snapshot.
Fixes build with Emacs 26.1.
Closes: https://bugs.gentoo.org/657746
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild')
-rw-r--r-- | app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild new file mode 100644 index 000000000000..ad8068bd1ab9 --- /dev/null +++ b/app-emacs/lyskom-elisp-client/lyskom-elisp-client-0.48_p20180410.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp readme.gentoo-r1 + +DESCRIPTION="Elisp client for the LysKOM conference system" +HOMEPAGE="http://www.lysator.liu.se/lyskom/klienter/emacslisp/index.en.html" +# snapshot of git://git.lysator.liu.se/${PN}/${PN}.git +SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="l10n_sv" + +S="${WORKDIR}/${PN}" +ELISP_PATCHES="${PN}-0.48_p20161231-no-git.patch" +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + elisp_src_prepare + local d=${PV#*_p} + sed -i "s/@@DATE@@/${d:0:4}-${d:4:2}-${d:6:2}/" src/Makefile || die +} + +src_compile() { + emake -C src EMACS=emacs + # Info page is in Swedish only + use l10n_sv && emake -C doc elisp-client +} + +src_install() { + elisp-install ${PN} src/lyskom.{el,elc} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + dodoc src/{ChangeLog*,README,TODO} doc/NEWS* + use l10n_sv && doinfo doc/elisp-client + + DOC_CONTENTS="If you prefer an English language environment, add the + following line to your ~/.emacs file: + \n\t(setq-default kom-default-language 'en)" + readme.gentoo_create_doc +} |