r2914: rename .cl files
[clsql.git] / clsql.asd
index 2890db90e0f67c83b3d0196f440408fca124d1d9..f4a609d36fee469bd94c61991d18a9b7e5f85041 100644 (file)
--- a/clsql.asd
+++ b/clsql.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql.asd,v 1.8 2002/09/18 07:50:01 kevin Exp $
+;;;; $Id: clsql.asd,v 1.13 2002/09/30 10:19:23 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 
 (in-package :asdf)
 
-(defsystem clsql
+#+(or allegro lispworks cmu openmcl mcl)
+(defsystem :clsql
+  :name "cl-sql"
+  :author "Kevin M. Rosenberg <kmr@debian.org>"
+  :version "0.9.2"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "Lessor Lisp General Public License"
+  :description "Common Lisp SQL Interface Library"
+  :long-description "cl-sql package provides the high-level interface for the CLSQL system."
+  
   :perform (load-op :after (op clsql)
                    (pushnew :clsql cl:*features*))
   :components
@@ -34,6 +43,8 @@
   :depends-on (:clsql-base)
   )
 
-(defmethod source-file-type  ((c cl-source-file)
-e                            (s (eql (find-system :clsql)))) 
-   "cl")
+#+(or allegro lispworks cmu openmcl mcl)
+(when (ignore-errors (find-class 'load-compiled-op))
+  (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :clsql))))
+    (pushnew :clsql cl:*features*)))
+