]> git.donarmstrong.com Git - roundcube.git/blob - debian/rules
Ship back htaccess since it is needed to set some php_value
[roundcube.git] / debian / rules
1 #!/usr/bin/make -f
2
3 include /usr/share/cdbs/1/rules/debhelper.mk
4 include /usr/share/cdbs/1/rules/patchsys-quilt.mk
5
6 DEB_INSTALL_CHANGELOGS_ALL=CHANGELOG
7
8 # In order to regenerate 'debian/control' :
9 #    DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
10 # Then check manually if everything's ok
11
12 binary-install/roundcube-core::
13         # Remove plugins
14         rm -rf $(CURDIR)/debian/roundcube-core/usr/share/roundcube/plugins
15
16         # Symlink all that is in /usr/share/roundcube to /var/lib/roundcube
17         find debian/roundcube-core/usr/share/roundcube -maxdepth 1 -mindepth 1 | \
18         while read i; do \
19                 if [ ! -L "$$i" ]; then \
20                   dh_link -proundcube-core "`echo "$$i" | sed -e s#debian/roundcube-core/##`" \
21                   "`echo "$$i" | sed -e s#debian/roundcube-core/usr/share/roundcube/#var/lib/roundcube/#`"; \
22                 fi \
23         done
24         # Install config files
25         install -m 0640 $(CURDIR)/config/db.inc.php.dist $(CURDIR)/debian/roundcube-core/etc/roundcube/db.inc.php
26         install -m 0640 $(CURDIR)/config/main.inc.php.dist $(CURDIR)/debian/roundcube-core/usr/share/roundcube
27         for c in $(CURDIR)/debian/roundcube-core/etc/roundcube/*.php; do \
28                 dh_link -proundcube-core etc/roundcube/$$(basename $$c) var/lib/roundcube/config/$$(basename $$c) ; \
29         done
30
31         # Database related files
32         # Install empty tables and updates for each db type
33         install -m 0644 $(CURDIR)/SQL/mysql.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/mysql
34         install -m 0644 $(CURDIR)/SQL/postgres.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/pgsql
35         install -m 0644 $(CURDIR)/SQL/sqlite.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/sqlite
36
37         # Old database upgrades
38         cp -r $(CURDIR)/debian/sql/* $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/upgrade/.
39
40         # Some files are executable while not being scripts or binary...
41         find $(CURDIR)/debian/roundcube-core/usr/share/roundcube/program -type f -print0 | xargs -r0 chmod -x
42         # Remove useless file
43         rm $(CURDIR)/debian/roundcube-core/usr/share/roundcube/bin/*.sh
44         find $(CURDIR)/debian/roundcube-core -name '._*' -print0 | xargs -r0 rm
45         find $(CURDIR)/debian/roundcube-core -name '*.js.src' -print0 | xargs -r0 rm
46         # Remove files shipped in tinymce package
47         rm -rf $(CURDIR)/debian/roundcube-core/usr/share/roundcube/program/js/tiny_mce
48         dh_link -proundcube-core usr/share/tinymce/www usr/share/roundcube/program/js/tiny_mce
49         # Remove jquery as well
50         rm $(CURDIR)/debian/roundcube-core/usr/share/roundcube/program/js/jquery-1.3.min.js
51         dh_link -proundcube-core usr/share/javascript/jquery/jquery.min.js usr/share/roundcube/program/js/jquery-1.3.min.js
52
53 $(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/% :
54         install -d $(CURDIR)/debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)
55         install -m 644 $(CURDIR)/debian/bug.control $(CURDIR)/debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/control
56
57 clean::
58         debconf-updatepo