r4147: Auto commit for Debian build
[clsql.git] / clsql-oracle.asd
index 922772111e6e202995e695bea6d72797fa2dec7c..d7834573d0bacffd2a74266d34697201377bd18b 100644 (file)
@@ -1,15 +1,24 @@
 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; This is copyrighted software.  See interfaces/oracle/* files for terms.
 ;;;; 
-;;;; $Id: clsql-oracle.asd,v 1.6 2002/09/17 17:16:43 kevin Exp $
+;;;; $Id: clsql-oracle.asd,v 1.12 2002/10/16 11:51:04 kevin Exp $
 
 (in-package :asdf)
 
 ;;; System definition
 
+#+(or allegro lispworks cmu sbcl openmcl mcl scl)
 (defsystem :clsql-oracle
-    :components
-    ((:module :clsql-oracle
+  :name "cl-sql-oracle"
+  :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 Oracle Driver"
+  :long-description "cl-sql-oracle package provides a database driver to the Oracle database system."
+
+  :components
+    ((:module :db-oracle
              :components
              ((:file "oracle-package")
               (:file "oracle-loader" :depends-on ("oracle-package"))
               (:file "oracle-sql" :depends-on ("oracle" "alien-resources"))
               (:file "oracle-objects" :depends-on ("oracle-sql")))))
     :depends-on (:clsql-base))
-
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql-oracle)))) 
-   "cl")
-
-
-