blob: 466d4e99d52fc7bee56bee95dd851eeb41d61b65 (
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
37
38
39
40
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-ncurses/cl-ncurses-0.1.1.ebuild,v 1.7 2005/05/24 18:48:34 mkennedy Exp $
inherit common-lisp eutils
DESCRIPTION="CL-NCURSES is a NCURSES interface for Common Lisp on Unix-platforms."
HOMEPAGE="http://www.common-lisp.net/project/cl-ncurses/"
SRC_URI="http://common-lisp.net/project/cl-ncurses/files/cl-ncurses_${PV}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp"
CLPACKAGE=cl-ncurses
S=${WORKDIR}/cl-ncurses_${PV}
src_unpack() {
unpack ${A}
cd ${S} && epatch ${FILESDIR}/cl-ncurses-${PV}-gentoo.patch
}
src_compile() {
make || die
}
src_install() {
common-lisp-install *.lisp cl-ncurses.asd
common-lisp-system-symlink
dodoc README
exeinto /usr/lib/cl-ncurses
doexe glue.so
insinto ${CLSOURCEROOT}/${PN}/tests
doins tests/*
}
|