--- /dev/null
+iserv-room-reservation (3.0-1) stable; urgency=low
+
+ * Initial release
+
+ -- Roland Hieber <roland.hieber@wilhelm-gym.net> Sun, 20 Jul 2008 02:53:53 +0200
+
--- /dev/null
+Source: iserv-room-reservation
+Section: non-free/web
+Priority: optional
+Maintainer: Roland Hieber <roland.hieber@wilhelm-gym.net>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: iserv-room-reservation
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, iserv-portal (>= 8.07.11)
+Description: Raumbelegungsplan-Modul für IServ
+ Das Raumbelegungsplan-Modul für den IDesk bietet eine effektive Nutzungs-
+ verwaltung der Räume innerhalb öffentlicher Institutionen. IServ-Benutzer
+ können Räume buchen, wenn sie diese benötigen und ebenso alle bisher gebuchten
+ Räume einsehen. Administratoren ist es möglich, Buchungen zu löschen sowie
+ wiederkehrende Buchungen zu erstellen.
--- /dev/null
+== License ==\r
+\r
+The module has been released under the terms of the MIT License, as printed \r
+following in its original version. Some images which have been used have been\r
+released under the terms of the GNU Lesser General Public License (see\r
+http://www.fsf.org/licensing/licenses/lgpl.html). These are in particular:\r
+ * /usr/share/iserv/www/img/default/16/mod_room-reservation_config.png\r
+ * /usr/share/iserv/www/img/default/16/mod_room-reservation_index.png\r
+ * /usr/share/iserv/www/img/default/32/mod_room-reservation_config.png\r
+ * /usr/share/iserv/www/img/default/32/mod_room-reservation_index.png\r
+\r
+If you enjoy this software, you are free to support his author with a small\r
+donation:\r
+\r
+ Roland Hieber\r
+ IBAN: DE98 250 500 000 150 2141 79\r
+ BIC: NOLADE2HXXX (Braunschweigische Landessparkasse)\r
+\r
+You can also send material donations to\r
+ Roland Hieber\r
+ 21944471\r
+ Packstation 103\r
+ 38106 Braunschweig\r
+ GERMANY\r
+\r
+\r
+=== License terms ===\r
+Copyright (c) 2007 Roland Hieber\r
+\r
+Permission is hereby granted, free of charge, to any person obtaining\r
+a copy of this software and associated documentation files (the "Software"),\r
+to deal in the Software without restriction, including without limitation\r
+the rights to use, copy, modify, merge, publish, distribute, sublicense,\r
+and/or sell copies of the Software, and to permit persons to whom the\r
+Software is furnished to do so, subject to the following conditions:\r
+\r
+The above copyright notice and this permission notice shall be included in\r
+all copies or substantial portions of the Software.\r
+\r
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
+THE SOFTWARE.\r
--- /dev/null
+usr/share/doc/iserv/mod/room-reservation/
+usr/share/iserv/www/inc/mod_room-reservation/
+usr/share/iserv/www/mod_room-reservation/
+usr/share/iserv/modules/
+usr/share/iserv/modules/room-reservation/
--- /dev/null
+#!/bin/sh
+chkdb -r
+chkpriv
+chklocale
+
--- /dev/null
+#!/bin/sh
+psql -c "DELETE FROM log_module WHERE module='Room Reservation Schedule';"
+chklocale
+
+@echo
+@echo If you do not need the SQL tables anymore, remove them by running
+@echo ' psql -c "DROP TABLE mod_roomreservation_bookings;"'
+@echo After that, all bookings are unrecoverably deleted!
+@echo
--- /dev/null
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+#configure: configure-stamp
+#configure-stamp:
+# dh_testdir
+# # Add here commands to configure the package.
+#
+# touch configure-stamp
+#
+
+build: build-stamp
+
+build-stamp:
+ #configure-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ $(MAKE)
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ # Add here commands to clean up after the build process.
+ #-$(MAKE) clean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ # Add here commands to install the package into debian/iserv-room-reservation.
+ $(MAKE) DESTDIR=$(CURDIR)/debian/iserv-room-reservation install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# dh_testdir
+# dh_testroot
+# dh_installchangelogs
+# dh_installdocs
+# dh_installexamples
+## dh_install
+## dh_installmenu
+## dh_installdebconf
+## dh_installlogrotate
+## dh_installemacsen
+## dh_installpam
+## dh_installmime
+## dh_python
+## dh_installinit
+## dh_installcron
+## dh_installinfo
+# dh_installman
+# dh_link
+# dh_strip
+# dh_compress
+# dh_fixperms
+## dh_perl
+## dh_makeshlibs
+# dh_installdeb
+# dh_shlibdeps
+# dh_gencontrol
+# dh_md5sums
+# dh_builddeb
+
+binary: binary-indep
+ #binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure