67 lines
1.5 KiB
Bash
67 lines
1.5 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.92.2.1.ebuild,v 1.8 2013/04/09 13:26:53 naota Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit eutils multilib elisp-common
|
|
|
|
DESCRIPTION="Shared library implementing a Lisp dialect"
|
|
HOMEPAGE="http://librep.sourceforge.net/"
|
|
SRC_URI="http://download.tuxfamily.org/librep/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
|
|
IUSE="emacs readline"
|
|
|
|
RDEPEND=">=sys-libs/gdbm-1.8.0
|
|
emacs? ( virtual/emacs )
|
|
readline? ( sys-libs/readline )"
|
|
DEPEND="${RDEPEND}
|
|
sys-apps/texinfo
|
|
app-arch/xz-utils"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PN}-0.92.0-disable-elisp.patch
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--libexecdir=/usr/$(get_libdir) \
|
|
--without-gmp \
|
|
--without-ffi \
|
|
--disable-static \
|
|
$(use_with readline)
|
|
}
|
|
|
|
src_compile() {
|
|
emake
|
|
|
|
if use emacs; then
|
|
elisp-compile rep-debugger.el || die "elisp-compile failed"
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
|
|
|
|
dodoc ChangeLog MAINTAINERS NEWS README TODO
|
|
docinto doc
|
|
dodoc doc/*
|
|
|
|
if use emacs; then
|
|
elisp-install ${PN} rep-debugger.{el,elc} || die "elisp-install failed"
|
|
elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" \
|
|
|| die "elisp-site-file-install failed"
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
use emacs && elisp-site-regen
|
|
}
|
|
|
|
pkg_postrm() {
|
|
use emacs && elisp-site-regen
|
|
}
|