Bugfix, http phoros-handler
[phoros.git] / phoros.asd
blob0e847e97c938d8a1c591e97b9b558216ad9983d1
1 (eval-when (:compile-toplevel :load-toplevel :execute)
2   ;; There are two alternative means of image creation:
3   ;; zpng and cl-png.
4   ;; zpng is faster and has no dependencies, but it makes images twice
5   ;; as big as cl-png.  cl-png depends on libpng.so.
6   ;; 
7   ;; To choose zpng, leave *features* alone.  To choose cl-png, do:
8   ;; (pushnew :phoros-uses-cl-png *features*)
9   )
11 (defsystem :phoros
13   :description                 ;goes with --version --verbose=1 output
14   "PHOROS (Photogrammetric Road Survey)"
16   :author "Bert Burgemeister <trebbu@googlemail.com>"
18   :maintainer "Bert Burgemeister <trebbu@googlemail.com>"
20   :long-description                     ;goes with --help output
21   "Phoros (http://phoros.boundp.org) is a tool for photogrammetric
22 road survey.  It stores data in a PostgreSQL database and then makes
23 it available over a web interface."
25   :version                              ;goes with --version output
26   ;; :version is MAJOR.MINOR.REVISION where
27   ;; - different MAJOR means data incompatibility,
28   ;; - different MINOR means changed feature set,
29   ;; - different REVISION means any other change.
30   ;; 
31   ;; There should be a corresponding git tag which marks the point this
32   ;; version number becomes official.
34   "13.8.2"
36   :licence                              ;goes with --licence output
37   "Copyright (C) 2010, 2011, 2012 Bert Burgemeister
39 This program is free software; you can redistribute it and/or modify
40 it under the terms of the GNU General Public License as published by
41 the Free Software Foundation; either version 2 of the License, or (at
42 your option) any later version.
44 This program is distributed in the hope that it will be useful, but
45 WITHOUT ANY WARRANTY; without even the implied warranty of
46 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
47 General Public License for more details.
49 You should have received a copy of the GNU General Public License along
50 with this program; if not, write to the Free Software Foundation, Inc.,
51 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."
53   :serial t
55   :components ((:file "package")
56                (:file "util")
57                (:file "proj4-sh")
58                (:file "log")
59                (:file "photogrammetry")
60                (:file "indent-json")
61                (:file "phoros")
62                (:file "css")
63                (:file "cli")
64                (:file "phoros-js")
65                (:file "blurb")
66                (:file "db-tables")
67                (:file "stuff-db")
68                (:file "image-reader"))
70   :depends-on (:phoml
71                :sb-daemon
72                :trivial-shell           ;for proj4-sh
73                :cl-ppcre
74                :hunchentoot
75                :cl-who
76                :parenscript
77                :cl-json
78                :postmodern
79                :simple-date
80                #-phoros-uses-cl-png :zpng
81                #+phoros-uses-cl-png :png
82                :drakma
83                :com.dvlsoft.clon
84                :cl-utilities
85                :parse-number
86                :named-readtables
87                :cl-log
88                :trivial-backtrace))