blob: 86b853ab012f7ec5b999c3d2b4f935d5aea96f26 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EDARCS_REPOSITORY="http://common-lisp.net/project/bese/repos/arnesi_dev/"
inherit eutils multilib darcs common-lisp
DESCRIPTION="arnesi is a Common Lisp utility suite used with bese projects"
HOMEPAGE="http://common-lisp.net/project/bese/arnesi.html"
SRC_URI=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~sparc ~ppc"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp"
CLPACKAGE=arnesi
src_install() {
common-lisp-install *.asd
common-lisp-system-symlink
insinto ${CLSOURCEROOT}/${CLPACKAGE}
doins -r src t
}
|