diff options
Diffstat (limited to 'dev-scheme/elk/elk-3.99.8.ebuild')
-rw-r--r-- | dev-scheme/elk/elk-3.99.8.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-scheme/elk/elk-3.99.8.ebuild b/dev-scheme/elk/elk-3.99.8.ebuild new file mode 100644 index 000000000000..ca3d86f3c3a0 --- /dev/null +++ b/dev-scheme/elk/elk-3.99.8.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +DESCRIPTION="Scheme implementation designed to be embeddable extension to C/C++ applications" +HOMEPAGE="http://sam.zoy.org/elk" +SRC_URI="http://sam.zoy.org/elk/${P}.tar.bz2" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" + +src_compile() { + # parallel build is broken + emake -j1 || die "Make failed!" +} + +# tests are run automatically during make and fail with default src_test +src_test() { + echo "Tests already run during compile" +} + +src_install() { + # parallel install is broken + emake -j1 DESTDIR="${D}" install || die "Install failed" +} |