blob: 5a66e138e5754716076a752b7621d1eedf32bc99 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-ltk/cl-ltk-0.8.7.8.6.ebuild,v 1.1 2005/08/05 20:58:34 mkennedy Exp $
inherit common-lisp eutils
MY_PV1=${PV:0:2}
MY_PV2=${PV:2}
MY_PV=${MY_PV1}${MY_PV2//./}
DESCRIPTION="LTK is a Common Lisp binding for the Tk graphics toolkit which does not require any Tk knowledge for its usage."
HOMEPAGE="http://www.peter-herth.de/ltk/"
SRC_URI="http://www.peter-herth.de/ltk/${PN#cl-}-${MY_PV}.tgz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp"
RDEPEND="${DEPEND}
dev-lang/tk"
CLPACKAGE=ltk
S=${WORKDIR}/${PN#cl-}
src_install() {
common-lisp-install *.lisp ltk.asd remote.tcl
common-lisp-system-symlink
dodoc *.{txt,pdf}
}
|