3 # Makefile for installing, creating documentation etc.
4 # @author Roland Hieber (roland.hieber@wilhelm-gym.net)
6 # @package iserv_errorreporter
8 # Copyright © 2007 Roland Hieber
10 # Permission is hereby granted, free of charge, to any person obtaining
11 # copy of this software and associated documentation files (the "Software"),
12 # to deal in the Software without restriction, including without limitation
13 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 # and/or sell copies of the Software, and to permit persons to whom the
15 # Software is furnished to do so, subject to the following conditions:
17 # The above copyright notice and this permission notice shall be included in
18 # all copies or substantial portions of the Software.
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29 PACKAGENAME
=iserv-mod-error-reporter
30 VERSION
:=$(shell grep
"^$(PACKAGENAME)" debian
/changelog | head
-1 | sed
-e
"s/$(PACKAGENAME) (\([0-9.]\+\).*).*/\1/ ")
39 # hardlink the files to their destinations
42 $(MKDIR
) $(DESTDIR
)/usr
/share
/doc
/iserv-mod-error-reporter
/source
/
43 if
[ ! -d
$(DESTDIR
)/usr
/share
/doc
/iserv
/mod
/ ]; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/doc
/iserv
/mod
/; fi
44 $(LN
) doc
/{TODO
,changelog.old.html
} debian
/copyright
$(DESTDIR
)/usr
/share
/doc
/iserv-mod-error-reporter
45 $(LN
) doc
/source
/* $(DESTDIR
)/usr
/share
/doc
/iserv-mod-error-reporter
/source
/
46 $(RM
) $(DESTDIR
)/usr
/share
/doc
/iserv
/mod
/error-reporter
# remove old link
47 $(LN
) -s ..
/..
/iserv-mod-error-reporter
$(DESTDIR
)/usr
/share
/doc
/iserv
/mod
/error-reporter
50 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/16 ] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/16; fi
51 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/32 ] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/32; fi
52 $(LN
) img
/16/*.png
$(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/16
53 $(LN
) img
/32/*.png
$(DESTDIR
)/usr
/share
/iserv
/www
/img
/default
/32
56 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/locale
/de
] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/locale
/de
; fi
57 $(LN
) lang
/mod_error-reporter.po
$(DESTDIR
)/usr
/share
/iserv
/locale
/de
60 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/db
/log_module
] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/db
/log_module
; fi
61 $(LN
) sql
/mod_error-reporter.sql
$(DESTDIR
)/usr
/share
/iserv
/db
/
62 $(LN
) sql
/log_module
/mod_error-reporter
$(DESTDIR
)/usr
/share
/iserv
/db
/log_module
65 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/priv
] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/priv
; fi
66 $(LN
) priv
/mod_error-reporter
$(DESTDIR
)/usr
/share
/iserv
/priv
69 $(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
70 $(LN
) inc
/{class
*,init
,functions
}.inc
$(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
71 if
[ ! -e
$(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
/config.inc
] ; then touch
$(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
/config.inc
; fi
73 chmod u
+rw
$(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
/config.inc
74 chown www-data
$(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
/config.inc
78 if
[ ! -d
$(DESTDIR
)/usr
/share
/iserv
/www
/nav
/admin
] ; then
$(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/www
/nav
/admin
; fi
79 $(LN
) nav
/*.mod
$(DESTDIR
)/usr
/share
/iserv
/www
/nav
80 $(LN
) nav
/admin
/*.mod
$(DESTDIR
)/usr
/share
/iserv
/www
/nav
/admin
83 $(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/www
/mod_error-reporter
84 $(LN
) src
/{config
,detail
,index
}.php
$(DESTDIR
)/usr
/share
/iserv
/www
/mod_error-reporter
87 $(MKDIR
) $(DESTDIR
)/usr
/share
/iserv
/modules
/error-reporter
88 $(LN
) maint
/* $(DESTDIR
)/usr
/share
/iserv
/modules
/error-reporter
90 # build doxygen documentation from source
92 cat Doxyfile.in | sed
-e
"s/{{{VERSION}}}/$(VERSION)/" \
93 -e
"s/{{{PACKAGENAME}}}/$(PACKAGENAME)/" > Doxyfile
95 mv doc
/source
/html
/* doc
/source
/ && rm -rf doc
/source
/html
106 $(RM
) $(DESTDIR
)/usr
/share
/doc
/iserv
/mod
/error-reporter
107 $(RM
) $(DESTDIR
)/usr
/share
/doc
/iserv-mod-error-reporter
108 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/www
/img
/{16,32}/mod_error-reporter.png
109 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/sql
/mod_error-reporter.sql
110 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/sql
/log_module
/mod_error-reporter
111 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/priv
/mod_error-reporter
112 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/www
/inc
/mod_error-reporter
113 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/www
/nav
/79mod_error-reporter.mod
114 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/www
/nav
/admin
/99mod_error-reporter.mod
115 $(RM
) $(DESTDIR
)/usr
/share
/iserv
/www
/mod_error-reporter
120 psql
-c
"DELETE FROM log_module WHERE module='Error Report Wizard';"
124 @echo If you do not need the SQL tables anymore
, remove them by running
125 @echo
' psql -c "DROP TABLE mod_errorreports;"'
126 @echo After that
, all reported errors are unrecoverably deleted
!
131 if
[ -e Doxyfile
]; then
rm Doxyfile
; fi
;
136 .PHONY
: clean distclean install