# # @file Makefile # Makefile for installing, creating documentation etc. # @author Roland Hieber (roland.hieber@wilhelm-gym.net) # @date 06.10.2007 # @package iserv_errorreporter # # Copyright © 2007 Roland Hieber # # Permission is hereby granted, free of charge, to any person obtaining # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # INSTALLDIR=/opt/iserv LN=ln -f RM=rm -rf CHOWN=chown -f MKDIR=mkdir -p # hardlink the files to their destinations links: sourcedoc # documentation $(MKDIR) $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/source/ if [ ! -d $(DESTDIR)/usr/share/doc/iserv/mod/ ]; then $(MKDIR) $(DESTDIR)/usr/share/doc/iserv/mod/; fi $(LN) doc/{TODO,changelog.old.html} debian/copyright $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter $(LN) doc/source/* $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/source/ $(RM) $(DESTDIR)/usr/share/doc/iserv/mod/error-reporter # remove old link $(LN) -s ../../iserv-mod-error-reporter $(DESTDIR)/usr/share/doc/iserv/mod/error-reporter # images if [ ! -d $(DESTDIR)/usr/share/iserv/www/img/default/16 ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/img/default/16; fi if [ ! -d $(DESTDIR)/usr/share/iserv/www/img/default/32 ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/img/default/32; fi $(LN) img/16/*.png $(DESTDIR)/usr/share/iserv/www/img/default/16 $(LN) img/32/*.png $(DESTDIR)/usr/share/iserv/www/img/default/32 # localization if [ ! -d $(DESTDIR)/usr/share/iserv/locale/de ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/locale/de; fi $(LN) lang/mod_error-reporter.po $(DESTDIR)/usr/share/iserv/locale/de # SQL data if [ ! -d $(DESTDIR)/usr/share/iserv/db/log_module ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/db/log_module; fi $(LN) sql/mod_error-reporter.sql $(DESTDIR)/usr/share/iserv/db/ $(LN) sql/log_module/mod_error-reporter $(DESTDIR)/usr/share/iserv/db/log_module # privileges if [ ! -d $(DESTDIR)/usr/share/iserv/priv ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/priv; fi $(LN) priv/mod_error-reporter $(DESTDIR)/usr/share/iserv/priv # includes $(MKDIR) $(DESTDIR)/usr/share/iserv/www/inc/mod_error-reporter $(LN) inc/{class*,init,functions}.inc $(DESTDIR)/usr/share/iserv/www/inc/mod_error-reporter 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 ifeq ($(USER),root) chmod u+rw $(DESTDIR)/usr/share/iserv/www/inc/mod_error-reporter/config.inc chown www-data $(DESTDIR)/usr/share/iserv/www/inc/mod_error-reporter/config.inc endif # navigation if [ ! -d $(DESTDIR)/usr/share/iserv/www/nav/admin ] ; then $(MKDIR) $(DESTDIR)/usr/share/iserv/www/nav/admin; fi $(LN) nav/*.mod $(DESTDIR)/usr/share/iserv/www/nav $(LN) nav/admin/*.mod $(DESTDIR)/usr/share/iserv/www/nav/admin # web pages $(MKDIR) $(DESTDIR)/usr/share/iserv/www/mod_error-reporter $(LN) src/{config,detail,index}.php $(DESTDIR)/usr/share/iserv/www/mod_error-reporter # maintenance files $(MKDIR) $(DESTDIR)/usr/share/iserv/modules/error-reporter $(LN) maint/* $(DESTDIR)/usr/share/iserv/modules/error-reporter # build doxygen documentation from source sourcedoc: doxygen mv doc/source/html/* doc/source/ && rm -rf doc/source/html install: links ifeq ($(USER),root) chklocale chkpriv chkdb -r endif # uninstalling uninstall: $(RM) $(DESTDIR)/usr/share/doc/iserv/mod/error-reporter $(RM) $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter $(RM) $(DESTDIR)/usr/share/iserv/www/img/{16,32}/mod_error-reporter.png $(RM) $(DESTDIR)/usr/share/iserv/sql/mod_error-reporter.sql $(RM) $(DESTDIR)/usr/share/iserv/sql/log_module/mod_error-reporter $(RM) $(DESTDIR)/usr/share/iserv/priv/mod_error-reporter $(RM) $(DESTDIR)/usr/share/iserv/www/inc/mod_error-reporter $(RM) $(DESTDIR)/usr/share/iserv/www/nav/79mod_error-reporter.mod $(RM) $(DESTDIR)/usr/share/iserv/www/nav/admin/99mod_error-reporter.mod $(RM) $(DESTDIR)/usr/share/iserv/www/mod_error-reporter ifeq ($(USER),root) chklocale chkpriv psql -c "DELETE FROM log_module WHERE module='Error Report Wizard';" endif @echo @echo If you do not need the SQL tables anymore, remove them by running @echo ' psql -c "DROP TABLE mod_errorreports;"' @echo After that, all reported errors are unrecoverably deleted! @echo # clean up clean: distclean distclean: $(RM) doc/source .PHONY: clean distclean install