r2572: Auto commit for Debian build
[uffi.git] / uffi.asd
index fd51b51e89318dfdf7e3d8606cf81a82049e2576..a170bde945566bcd4dad7faeb14c82378ea79d1c 100644 (file)
--- a/uffi.asd
+++ b/uffi.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: uffi.asd,v 1.3 2002/08/18 02:26:01 kevin Exp $
+;;;; $Id: uffi.asd,v 1.8 2002/09/06 11:00:49 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; *************************************************************************
 
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
-(in-package :cl-user)
+(in-package :asdf)
 
-;; For use with non-Debian installations
-(let ((helper-pathname (make-pathname :name "set-cl-library" :type "cl"
+;; For use with non-Common Lisp Controller installations
+#-common-lisp-controller
+(let ((path (make-pathname :name "set-logical" :type "cl"
                                      :defaults *load-truename*)))
-  (when (probe-file helper-pathname)
-      (load helper-pathname)))
-
-(in-package :asdf)
+  (when (probe-file path)
+    (load path)
+    (set-logical-host-for-pathname 
+     "uffi" 
+     (make-pathname :host (pathname-host *load-truename*)
+                   :device (pathname-device *load-truename*)
+                   :directory (pathname-directory *load-truename*)))))
 
-(defclass uffi-cl-source-file (cl-source-file) ())
-(defmethod source-file-type ((c uffi-cl-source-file) (s module)) 
-  "cl")
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (defconstant +uffi-logical-host+
+    #+common-lisp-controller "cl-library"
+    #-common-lisp-controller "uffi"
+    "Logical hostname for loading system"))
 
 (defsystem uffi
   :name "cl-uffi"
@@ -41,8 +47,9 @@
   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
   
   :default-component-class uffi-cl-source-file
-  :pathname #-mcl "cl-library:uffi;"
-  #+mcl "cl-library:uffi;mcl;"
+  :pathname 
+  #-mcl #.(format nil "~A:uffi;" +uffi-logical-host+)
+  #+mcl #.(format nil "~A:uffi;mcl;" +uffi-logical-host+)
   :perform (load-op :after (op uffi)
                    (pushnew :uffi cl:*features*))
   :components 
@@ -55,3 +62,7 @@
    (:file "libraries" :depends-on ("package")))
   )
 
+
+(defmethod source-file-type  ((c cl-source-file) (s (eql (find-system 'uffi)))) 
+   "cl")
+