root/trunk/thirdparty/cl-gd-0.5.6/cl-gd.asd

Revision 2476, 2.2 kB (checked in by hhubner, 1 year ago)

ignore .so file, fix conflict

Line 
1 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
2 ;;; $Header: /usr/local/cvsrep/gd/cl-gd.asd,v 1.18 2007/07/29 16:37:13 edi Exp $
3
4 ;;; Copyright (c) 2003-2007, Dr. Edmund Weitz.  All rights reserved.
5
6 ;;; Redistribution and use in source and binary forms, with or without
7 ;;; modification, are permitted provided that the following conditions
8 ;;; are met:
9
10 ;;;   * Redistributions of source code must retain the above copyright
11 ;;;     notice, this list of conditions and the following disclaimer.
12
13 ;;;   * Redistributions in binary form must reproduce the above
14 ;;;     copyright notice, this list of conditions and the following
15 ;;;     disclaimer in the documentation and/or other materials
16 ;;;     provided with the distribution.
17
18 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
19 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30 (in-package :cl-user)
31
32 (defpackage :cl-gd.system
33   (:use :cl :asdf)
34   (:export :*cl-gd-directory*))
35
36 (in-package :cl-gd.system)
37
38 (defparameter *cl-gd-directory*
39   (make-pathname :name nil :type nil :version nil
40                  :defaults (parse-namestring *load-truename*)))
41
42 (defsystem :cl-gd
43   :version "0.5.6"
44   :serial t
45   :components ((:file "packages")
46                (:file "util")
47                (:file "specials")
48                (:file "init")
49                (:file "gd-uffi")
50                (:file "transform")
51                (:file "images")
52                (:file "colors-aux")
53                (:file "colors")
54                (:file "drawing")
55                (:file "strings")
56                (:file "misc"))
57   :depends-on (#-clisp :uffi
58                #+clisp :cffi-uffi-compat))
Note: See TracBrowser for help on using the browser.