r2430: *** empty log message ***
[uffi.git] / uffi.asd
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          uffi.asd
6 ;;;; Purpose:       ASDF system definition file for UFFI package
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: uffi.asd,v 1.7 2002/08/28 03:29:01 kevin Exp $
11 ;;;;
12 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; UFFI users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
20 (in-package :asdf)
21
22 ;; For use with non-Common Lisp Controller installations
23 #-common-lisp-controller
24 (let ((path (make-pathname :name "set-logical" :type "cl"
25                                       :defaults *load-truename*)))
26   (when (probe-file path)
27     (load path)
28     (set-logical-host-for-pathname 
29      "uffi" 
30      (make-pathname :host (pathname-host *load-truename*)
31                     :device (pathname-device *load-truename*)
32                     :directory (pathname-directory *load-truename*)))))
33
34 (defconstant +uffi-logical-host+
35   #+common-lisp-controller "cl-library"
36   #-common-lisp-controller "uffi"
37   "Logical hostname for loading system")
38
39 (defmethod source-file-type  ((c cl-source-file) (s (eql (find-system 'uffi)))) 
40    "cl")
41
42 ;(defclass uffi-cl-source-file (cl-source-file) ())
43 ;(defmethod source-file-type ((c uffi-cl-source-file) (s module))  "cl")
44
45 (defsystem uffi
46   :name "cl-uffi"
47   :author "Kevin M. Rosenberg <kmr@debian.org"
48   :version "0.6.1"
49   :maintainer "Kevin M. Rosenberg <kmr@debian.org"
50   :licence "Lessor Lisp General Public License"
51   :description "Universal Foreign Function Library for Common Lisp"
52   :long-description "UFFI provides a universal foreign function interface (FFI) for Common Lisp. UFFI supports CMUCL, Lispworks, and AllegroCL."
53   
54   :default-component-class uffi-cl-source-file
55   :pathname 
56   #-mcl #.(format nil "~A:uffi;" +uffi-logical-host+)
57   #+mcl #.(format nil "~A:uffi;mcl;" +uffi-logical-host+)
58   :perform (load-op :after (op uffi)
59                     (pushnew :uffi cl:*features*))
60   :components 
61   ((:file "package")
62    (:file "primitives" :depends-on ("package"))
63    (:file "strings" :depends-on ("primitives"))
64    (:file "objects" :depends-on ("primitives"))
65    (:file "aggregates" :depends-on ("primitives"))
66    (:file "functions" :depends-on ("primitives"))
67    (:file "libraries" :depends-on ("package")))
68   )
69