blob: 4caf53417590cf28f41e50e32bf48f2214a6ac31 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2 eutils
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/${P}.tgz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="!dev-lisp/cl-${PN}
dev-lang/tk"
CLSYSTEMS="ltk ltk-mw ltk-remote"
src_install() {
common-lisp-install *.{lisp,asd} remote.tcl
common-lisp-symlink-asdf
dodoc changenotes.txt troubleshooting.txt ltkdoc.pdf
}
|