Code

b31393d00fc9f87cc7381c0b75a182da42db40dc
[gosa.git] / gosa-core / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # debian/rules file to build GOsa packages.
4 #
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
10 # Uncomment this to turn on verbose mode.
11 #export DH_VERBOSE=1
13 # This has to be exported to make some magic below work.
14 export DH_OPTIONS
16 configure: configure-stamp
17 configure-stamp:
18         dh_testdir
19         touch configure-stamp
21 build: patch build-indep
22         #*************************************************
23         #* Building GOsa into a Debian/GNU Linux Package *
24         #*                please stand by                *
25         #*************************************************
27 build-indep: build-indep-stamp
28 build-indep-stamp: configure-stamp 
29         touch $@
31 clean: clean-patched unpatch
32 clean-patched:
33         dh_testdir
34         dh_testroot
35         rm -f build-indep-stamp configure-stamp
37         dh_clean
39 unpatch:
40         dpatch deapply-all
41         rm -rf patch-stamp debian/patched
43 install: install-indep
44 install-indep:
45         dh_testdir
46         dh_testroot
47         dh_clean -k -i 
48         dh_installdirs -i
49         dh_install -i --exclude COPYING
51 binary-common:
52         dh_testdir
53         dh_testroot
54         install -D -m 644 debian/gosa.lintian-overrides debian/gosa/usr/share/lintian/overrides/gosa
55         dh_installchangelogs Changelog
56         dh_installdocs
57         dh_installexamples
58         dh_installmenu
59         dh_installdebconf       
60         dh_installman
61         dh_strip
62         dh_compress
63         # This is an ugly workaround to preserve gosa.conf from beeing compressed. Excluding it
64         # above does not work, because the manual page will match the expression, too.
65         gzip -d debian/gosa/usr/share/doc/gosa/gosa.conf.gz
66         dh_fixperms
67         dh_installdeb
68         dh_gencontrol
69         dh_md5sums
70         dh_builddeb
72 patch: patch-stamp
73 patch-stamp:
74         dpatch apply-all
75         dpatch cat-all >patch-stamp
77 binary-indep: build-indep install-indep
78         $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
80 binary: binary-indep
81 .PHONY: build clean binary-indep binary install install-indep configure