blob: 02044c35b579ec759a39814ec0144766945e6581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/gentoo-init/gentoo-init-1.0.ebuild,v 1.3 2014/08/10 20:41:49 slyfox Exp $
EAPI=4
DESCRIPTION="Simple ASDF2 configuration for Gentoo Common Lisp ports"
HOMEPAGE="http://www.gentoo.org/proj/en/lisp/common-lisp/guide.xml"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lisp/asdf-2.0"
S="${WORKDIR}"
src_install() {
insinto /etc/common-lisp
newins "${FILESDIR}"/gentoo-init-1.lisp gentoo-init.lisp
doins "${FILESDIR}"/source-registry.conf
}
|