Fix log message of --server
[phoros.git] / phoros.asd
blob88f4051e680ee2457ab0e597f76ef1c751831580
1 (defsystem :phoros
3   :description                 ;goes with --version --verbose=1 output
4   "PHOROS (Photogrammetric Road Survey)"
6   :author "Bert Burgemeister <trebbu@googlemail.com>"
8   :maintainer "Bert Burgemeister <trebbu@googlemail.com>"
10   :long-description                     ;goes with --help output
11   "Phoros (http://phoros.boundp.org) is a tool for photogrammetric
12 road survey.  It stores data in a PostgreSQL database and then makes
13 it available over a web interface."
15   :version                              ;goes with --version output
16   ;; :version is MAJOR.MINOR.REVISION where
17   ;; - different MAJOR means data incompatibility,
18   ;; - different MINOR means changed feature set,
19   ;; - different REVISION means any other change.
20   ;; 
21   ;; There should be a corresponding git tag which marks the point this
22   ;; version number becomes official.
24   "13.8.0"
26   :licence                              ;goes with --licence output
27   "Copyright (C) 2010, 2011, 2012 Bert Burgemeister
29 This program is free software; you can redistribute it and/or modify
30 it under the terms of the GNU General Public License as published by
31 the Free Software Foundation; either version 2 of the License, or (at
32 your option) any later version.
34 This program is distributed in the hope that it will be useful, but
35 WITHOUT ANY WARRANTY; without even the implied warranty of
36 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
37 General Public License for more details.
39 You should have received a copy of the GNU General Public License along
40 with this program; if not, write to the Free Software Foundation, Inc.,
41 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA."
43   :serial t
45   :components ((:file "package")
46                (:file "util")
47                (:file "proj4-sh")
48                (:file "log")
49                (:file "photogrammetry")
50                (:file "indent-json")
51                (:file "phoros")
52                (:file "css")
53                (:file "cli")
54                (:file "phoros-js")
55                (:file "blurb")
56                (:file "db-tables")
57                (:file "stuff-db")
58                (:file "pictures-file"))
60   :depends-on (:phoml
61                :sb-daemon
62                :trivial-shell           ;for proj4-sh
63                :osicat
64                :cl-ppcre
65                :hunchentoot
66                :cl-who
67                :parenscript
68                :cl-json
69                :postmodern
70                :simple-date
71                :zpng
72                :drakma
73                :com.dvlsoft.clon
74                :cl-utilities
75                :parse-number
76                :named-readtables
77                :cl-log
78                :trivial-backtrace))