Merge pull request #10 from phoe-trash/master
[vecto.git] / vecto.asd
blob0cf295b47ac20b45e752827de85c0b9caa63ec76
1 ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved
2 ;;;
3 ;;; Redistribution and use in source and binary forms, with or without
4 ;;; modification, are permitted provided that the following conditions
5 ;;; are met:
6 ;;;
7 ;;;   * Redistributions of source code must retain the above copyright
8 ;;;     notice, this list of conditions and the following disclaimer.
9 ;;;
10 ;;;   * Redistributions in binary form must reproduce the above
11 ;;;     copyright notice, this list of conditions and the following
12 ;;;     disclaimer in the documentation and/or other materials
13 ;;;     provided with the distribution.
14 ;;;
15 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
16 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 ;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
19 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
21 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
24 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 ;;;
27 ;;; $Id: vecto.asd,v 1.10 2007/10/01 16:24:50 xach Exp $
29 (asdf:defsystem #:vecto
30   :depends-on (#:cl-vectors
31                #:zpng
32                #:zpb-ttf)
33   :version "1.6"
34   :author "Zach Beane <xach@xach.com>"
35   :description "Create vector graphics in PNG files."
36   :license "BSD"
37   :components ((:file "package")
38                (:file "utils"
39                       :depends-on ("package"))
40                (:file "copy"
41                       :depends-on ("package"))
42                (:file "color"
43                       :depends-on ("package"
44                                    "copy"))
45                (:file "paths"
46                       :depends-on ("package"))
47                (:file "transform-matrix"
48                       :depends-on ("package"))
49                (:file "clipping-paths"
50                       :depends-on ("package"
51                                    "copy"))
52                (:file "graphics-state"
53                       :depends-on ("package"
54                                    "color"
55                                    "clipping-paths"
56                                    "transform-matrix"
57                                    "copy"))
58                (:file "drawing"
59                       :depends-on ("package"
60                                    "utils"
61                                    "paths"
62                                    "graphics-state"
63                                    "transform-matrix"))
64                (:file "text"
65                       :depends-on ("package"
66                                    "transform-matrix"
67                                    "graphics-state"
68                                    "drawing"))
69                (:file "arc"
70                       :depends-on ("package"))
71                (:file "user-drawing"
72                       :depends-on ("package"
73                                    "utils"
74                                    "clipping-paths"
75                                    "graphics-state"
76                                    "transform-matrix"
77                                    "text"
78                                    "arc"))
79                (:file "gradient"
80                       :depends-on ("package"
81                                    "graphics-state"))
82                (:file "user-shortcuts"
83                       :depends-on ("user-drawing"))))