[noctool-devel] image.asd fixes

Jim Prewett download at hpc.unm.edu
Thu Jun 12 14:12:31 UTC 2008


Hi Ingvar,

While using ASDF-INSTALL to get a new noctool setup going, I found that 
the image package used strings instead of symbols for the packages that it 
depends on.  This confuses the heck out of asdf-install (but seems to work 
OK for ASDF - HMMM... sounds like it might be a bug in ASDF-INSTALL, 
but... well, I don't want to spend the time reading the spec to determine 
that ;P :)

I've attached a modified version of image.asd from image-0.6 - the changes 
are by no means profound :)

Using the attached image.asd made my asdf-install go very smoothly. :)

hth,
Jim

James E. Prewett                    Jim at Prewett.org download at hpc.unm.edu 
Systems Team Leader           LoGS: http://www.hpc.unm.edu/~download/LoGS/ 
Designated Security Officer         OpenPGP key: pub 1024D/31816D93    
HPC Systems Engineer III   UNM HPC  505.277.8210
-------------- next part --------------
(in-package #:cl-user)

(asdf:defsystem "image"
  :version "0.6"
  :author "Ingvar Mattsson"
  :license "MIT"
  :depends-on (:skippy :clx :zpng) 
  :components ((:file "package")
	       (:file "helpers" :depends-on ("package"))
	       (:file "image" :depends-on ("package"))
	       (:file "image-text" :depends-on ("package" "image"))
	       (:file "x11" :depends-on ("package" "image"))
	       (:file "imports" :depends-on ("package" "image" "helpers"))
	       (:file "exports" :depends-on ("package" "image" "x11"))))


More information about the Noctool-devel mailing list