diff options
author | Ulrich Müller <ulm@gentoo.org> | 2019-08-29 12:15:39 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2019-08-29 12:16:43 +0200 |
commit | 236c64669b7055ffb71af0b6cb43b4e0c8ac542f (patch) | |
tree | 1874d2ca43110b2578a317b2cc60632c99325655 /app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild | |
parent | app-emacs/muse: Update HOMEPAGE. (diff) | |
download | gentoo-236c64669b7055ffb71af0b6cb43b4e0c8ac542f.tar.gz gentoo-236c64669b7055ffb71af0b6cb43b4e0c8ac542f.tar.bz2 gentoo-236c64669b7055ffb71af0b6cb43b4e0c8ac542f.zip |
app-emacs/lookup: Version bump, snapshot from git.
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild')
-rw-r--r-- | app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild b/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild new file mode 100644 index 000000000000..83eb373c097b --- /dev/null +++ b/app-emacs/lookup/lookup-1.99.96_pre20180209.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools elisp + +COMMIT="c4f4986aac6c339e03b9e56a5dfc7c8f5c0bb5e0" +DESCRIPTION="An interface to search CD-ROM books and network dictionaries" +HOMEPAGE="https://lookup2.github.io/lookup2/" +SRC_URI="https://github.com/lookup2/lookup2/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="sys-apps/texinfo" + +S="${WORKDIR}/lookup2-${COMMIT}" +SITEFILE="50${PN}-gentoo.el" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --with-lispdir="${EPREFIX}${SITELISP}" +} + +src_compile() { + default +} + +src_install() { + emake DESTDIR="${D}" install + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + dodoc AUTHORS NEWS README.md +} |