]> git.donarmstrong.com Git - roundcube.git/blob - debian/rules
Imported Debian patch 0.3.1-4
[roundcube.git] / debian / rules
1 #!/usr/bin/make -f
2
3 include /usr/share/cdbs/1/rules/debhelper.mk
4
5 DEB_INSTALL_CHANGELOGS_ALL=CHANGELOG
6
7 # In order to regenerate 'debian/control' :
8 #    DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
9 # Then check manually if everything's ok
10
11 binary-install/roundcube-core::
12         # Remove plugins
13         rm -rf $(CURDIR)/debian/roundcube-core/usr/share/roundcube/plugins
14
15         # Symlink all that is in /usr/share/roundcube to /var/lib/roundcube
16         find debian/roundcube-core/usr/share/roundcube -maxdepth 1 -mindepth 1 | \
17         while read i; do \
18                 if [ ! -L "$$i" ]; then \
19                   dh_link -proundcube-core "`echo "$$i" | sed -e s#debian/roundcube-core/##`" \
20                   "`echo "$$i" | sed -e s#debian/roundcube-core/usr/share/roundcube/#var/lib/roundcube/#`"; \
21                 fi \
22         done
23         # Install config files
24         install -m 0640 $(CURDIR)/config/db.inc.php.dist $(CURDIR)/debian/roundcube-core/etc/roundcube/db.inc.php
25         install -m 0640 $(CURDIR)/config/main.inc.php.dist $(CURDIR)/debian/roundcube-core/usr/share/roundcube
26         for c in $(CURDIR)/debian/roundcube-core/etc/roundcube/*.php; do \
27                 dh_link -proundcube-core etc/roundcube/$$(basename $$c) var/lib/roundcube/config/$$(basename $$c) ; \
28         done
29
30         # Database related files
31         # Install empty tables and updates for each db type
32         install -m 0644 $(CURDIR)/SQL/mysql.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/mysql
33         install -m 0644 $(CURDIR)/SQL/postgres.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/pgsql
34         install -m 0644 $(CURDIR)/SQL/sqlite.initial.sql $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/install/sqlite
35
36         # Old database upgrades
37         cp -r $(CURDIR)/debian/sql/* $(CURDIR)/debian/roundcube-core/usr/share/dbconfig-common/data/roundcube/upgrade/.
38
39         # Some files are executable while not being scripts or binary...
40         find $(CURDIR)/debian/roundcube-core/usr/share/roundcube -type f -print0 | xargs -r0 chmod -x
41         # Remove useless file
42         rm $(CURDIR)/debian/roundcube-core/usr/share/roundcube/bin/*.sh
43         rm $(CURDIR)/debian/roundcube-core/usr/share/roundcube/bin/decrypt.php
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