Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 56955 - cl-ltk needs tk as a dependency.
Summary: cl-ltk needs tk as a dependency.
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Gentoo Lisp Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-07-13 13:34 UTC by Dirk Gerrits
Modified: 2004-07-14 09:53 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dirk Gerrits 2004-07-13 13:34:58 UTC
Doing 'emerge cl-ltk' and then trying to use Ltk doesn't work if 'tk' isn't installed.  More specifically, after installation, running the code below in CMUCL produces the error: 'No such program: "wish"'.  I suggest that 'tk' is added as a dependency of 'cl-ltk'.

(require :ltk)
(use-package :ltk)
(with-ltk
   (let ((b (make-instance 'button 
                           :master nil
                           :text "Press Me"
                           :command (lambda ()
                                      (format t "Hello World!~&")))))
     (pack b)))
Comment 1 Matthew Kennedy (RETIRED) gentoo-dev 2004-07-14 09:53:32 UTC
Fixed in CVS.  Thanks for the note.