Bonehead fix: add missing doc/arc.png.
[vecto.git] / vecto.asd
blob207d2ee4c31f816ff0ebf0bbfa0084653af654fd
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.2.1"
34   :components ((:file "package")
35                (:file "utils"
36                       :depends-on ("package"))
37                (:file "copy"
38                       :depends-on ("package"))
39                (:file "color"
40                       :depends-on ("package"
41                                    "copy"))
42                (:file "paths"
43                       :depends-on ("package"))
44                (:file "transform-matrix"
45                       :depends-on ("package"))
46                (:file "clipping-paths"
47                       :depends-on ("package"
48                                    "copy"))
49                (:file "graphics-state"
50                       :depends-on ("package"
51                                    "color"
52                                    "clipping-paths"
53                                    "transform-matrix"
54                                    "copy"))
55                (:file "drawing"
56                       :depends-on ("package"
57                                    "utils"
58                                    "paths"
59                                    "graphics-state"
60                                    "transform-matrix"))
61                (:file "text"
62                       :depends-on ("package"
63                                    "transform-matrix"
64                                    "graphics-state"
65                                    "drawing"))
66                (:file "arc"
67                       :depends-on ("package"))
68                (:file "user-drawing"
69                       :depends-on ("package"
70                                    "utils"
71                                    "clipping-paths"
72                                    "graphics-state"
73                                    "transform-matrix"
74                                    "text"
75                                    "arc"))
76                (:file "user-shortcuts"
77                       :depends-on ("user-drawing"))))