blob: c00bac8c14f61befbb3189c3dceac21b43953741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit common-lisp-3
DESCRIPTION="General Utilities for Common Lisp Programs from Kevin Rosenberg"
HOMEPAGE="http://www.cliki.net/kmrcl"
SRC_URI="http://files.kpe.io/${PN}/${PF}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="!dev-lisp/cl-${PN}
dev-lisp/rt"
CLSYSTEMS="${PN} ${PN}-tests"
run_test() {
local lisp="${1}"
if has_version "dev-lisp/${lisp}" ; then
emake test-"${lisp}"
fi
}
src_compile() { :; }
src_test() {
for l in sbcl cmucl clisp ; do
run_test "${l}"
done
}
|