r10077: * multiple: Apply patch from Joerg Hoehle with multiple
[clsql.git] / clsql-mysql.asd
index 9e17055ffeb2bcc5fa8eee15e4e28f7f2c249d31..378082763c040675a8d23860eb0df24e2847e065 100644 (file)
@@ -1,40 +1,93 @@
-;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-\r
-;;;; *************************************************************************\r
-;;;; FILE IDENTIFICATION\r
-;;;;\r
-;;;; Name:          clsql-mysql.asd\r
-;;;; Purpose:       ASDF definition file for CLSQL MySQL backend\r
-;;;; Programmer:    Kevin M. Rosenberg\r
-;;;; Date Started:  Aug 2002\r
-;;;;\r
-;;;; $Id: clsql-mysql.asd,v 1.5 2002/09/06 10:56:13 kevin Exp $\r
-;;;;\r
-;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
-;;;;\r
-;;;; CLSQL users are granted the rights to distribute and use this software\r
-;;;; as governed by the terms of the Lisp Lesser GNU Public License\r
-;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
-;;;; *************************************************************************\r
-\r
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))\r
-\r
-(in-package :asdf)\r
-\r
-;;; System definition\r
-\r
-(defsystem clsql-mysql\r
-    :pathname #.(format nil "~A:clsql-mysql;"\r
-                       #+common-lisp-controller "cl-library"\r
-                       #-common-lisp-controller "clsql")\r
-    :components ((:file "mysql-package")\r
-                (:file "mysql-loader" :depends-on ("mysql-package"))\r
-                (:file "mysql-api" :depends-on ("mysql-loader"))\r
-                (:file "mysql-sql" :depends-on ("mysql-api"))\r
-                (:file "mysql-usql" :depends-on ("mysql-sql")))\r
-    :depends-on (:uffi :clsql-base :clsql-uffi))\r
-\r
-\r
-(defmethod source-file-type  ((c cl-source-file)\r
-                             (s (eql (find-system 'clsql-mysql)))) \r
-   "cl")\r
-\r
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          clsql-mysql.asd
+;;;; Purpose:       ASDF definition file for CLSQL MySQL backend
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Aug 2002
+;;;;
+;;;; $Id$
+;;;;
+;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; CLSQL users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the Lisp Lesser GNU Public License
+;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
+;;;; *************************************************************************
+
+(defpackage #:clsql-mysql-system (:use #:asdf #:cl))
+(in-package #:clsql-mysql-system)
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (unless (find-package 'uffi)
+    (asdf:operate 'asdf:load-op 'uffi)))
+
+(defvar *library-file-dir* (append (pathname-directory *load-truename*)
+                                  (list "db-mysql")))
+
+(defclass clsql-mysql-source-file (c-source-file)
+  ())
+
+(defmethod output-files ((o compile-op) (c clsql-mysql-source-file))
+  (let* ((library-file-type
+         (funcall (intern (symbol-name'#:default-foreign-library-type)
+                          (symbol-name '#:uffi))))
+         (found (some #'(lambda (dir)
+                           (probe-file (make-pathname :directory dir
+                                                      :name (component-name c)
+                                                      :type library-file-type)))
+                       '((:absolute "usr" "lib" "clsql"))))) 
+    (list (if found
+             found
+             (make-pathname :name (component-name c)
+                            :type library-file-type
+                            :directory *library-file-dir*)))))
+
+(defmethod perform ((o load-op) (c clsql-mysql-source-file))
+  t)
+
+(defmethod operation-done-p ((o load-op) (c clsql-mysql-source-file))
+  (and (symbol-function (intern (symbol-name '#:mysql-get-client-info)
+                               (find-package '#:mysql)))
+       t)) 
+
+(defmethod perform ((o compile-op) (c clsql-mysql-source-file))
+  (unless (operation-done-p o c)
+    #-(or win32 mswindows)
+    (unless (zerop (run-shell-command
+                   #-freebsd "cd ~A; make"
+                   #+freebsd "cd ~A; gmake"
+                   (namestring (make-pathname :name nil
+                                              :type nil
+                                              :directory *library-file-dir*))))
+      (error 'operation-error :component c :operation o))))
+
+(defmethod operation-done-p ((o compile-op) (c clsql-mysql-source-file))
+  (or (and (probe-file #p"/usr/lib/clsql/mysql.so") t)
+      (let ((lib (make-pathname :defaults (component-pathname c)
+                               :type (uffi:default-foreign-library-type))))
+       (and (probe-file lib)
+            (> (file-write-date lib) (file-write-date (component-pathname c)))))))
+
+;;; System definition
+
+(defsystem :clsql-mysql
+  :name "cl-sql-mysql"
+  :author "Kevin M. Rosenberg <kmr@debian.org>"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "Lessor Lisp General Public License"
+  :description "Common Lisp SQL MySQL Driver"
+  :long-description "cl-sql-mysql package provides a database driver to the MySQL database system."
+
+  :depends-on (uffi clsql clsql-uffi)
+  :components
+  ((:module :db-mysql
+           :components
+           ((:file "mysql-package")
+            (:clsql-mysql-source-file "mysql" :depends-on ("mysql-package"))
+            (:file "mysql-loader" :depends-on ("mysql-package" "mysql"))
+            (:file "mysql-client-info" :depends-on ("mysql-loader"))
+            (:file "mysql-api" :depends-on ("mysql-client-info"))
+            (:file "mysql-sql" :depends-on ("mysql-api"))
+            (:file "mysql-objects" :depends-on ("mysql-sql"))))))