diff options
Diffstat (limited to 'dev-scheme/bigloo/bigloo-2.9a.ebuild')
-rw-r--r-- | dev-scheme/bigloo/bigloo-2.9a.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dev-scheme/bigloo/bigloo-2.9a.ebuild b/dev-scheme/bigloo/bigloo-2.9a.ebuild index 18a05ea36ff5..29cc93103c87 100644 --- a/dev-scheme/bigloo/bigloo-2.9a.ebuild +++ b/dev-scheme/bigloo/bigloo-2.9a.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v 1.6 2007/06/27 06:53:18 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/bigloo/bigloo-2.9a.ebuild,v 1.7 2008/08/28 17:49:25 ulm Exp $ inherit elisp-common multilib @@ -24,7 +24,9 @@ IUSE="emacs" # fullbee" src_compile() { - use emacs && elisp-comp etc/*.el + if use emacs; then + elisp-compile etc/*.el || die "elisp-compile failed" + fi # Bigloo doesn't use autoconf and consequently a lot of options used by econf give errors # Manuel Serrano says: "Please, dont talk to me about autoconf. I simply dont want to hear about it..." @@ -62,7 +64,7 @@ src_install () { emake DESTDIR=${D} install || die "install failed" if use emacs; then - elisp-install ${PN} etc/*.el + elisp-install ${PN} etc/*.{el,elc} || die "elisp-install failed" elisp-site-file-install "${FILESDIR}/${SITEFILE}" fi |