Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3
4 # Uncomment this to turn on verbose mode.
5 #export DH_VERBOSE=1
6
7 # If set to a true value then MakeMaker's prompt function will
8 # always return the default without waiting for user input.
9 #export PERL_MM_USE_DEFAULT=1
10
11 PERL   ?= /usr/bin/perl
12 #PACKAGE = $(shell dh_listpackages)
13 PACKAGE = freeside
14 TMP     = $(CURDIR)/debian/$(PACKAGE)
15 #DBC_SCRIPTS = $(TMP)/usr/share/dbconfig-common/scripts/freeside
16
17 ##this is gotten from dbconfig-common
18 DB_TYPE = Pg
19
20 #Data source
21 DATASOURCE = DBI:${DB_TYPE}:dbname=freeside
22
23 #no chance, it doesn't get backslash-interpolted now...
24 ##DEBVERSION                    = `head -1 debian/changelog | cut -d')' -f1 | cut -c11-`
25 #DEBVERSION                    = 1.7.3~rc2-1
26 #export VERSION                = $(DEBVERSION) (Debian)
27
28 #export FREESIDE_CONF          = /etc/freeside
29 #export FREESIDE_LOG           = /var/log/freeside
30 #export FREESIDE_LOCK          = /var/lock/freeside
31 #export FREESIDE_CACHE         = $(TMP)/var/cache/freeside
32 #FREESIDE_CACHE         = $(TMP)/var/cache/freeside
33
34 #XXX huh?
35 #export FREESIDE_EXPORT        = /var/spool/freeside
36
37 export FREESIDE_CONF = $(TMP)/usr/local/etc/freeside
38 export FREESIDE_LOG = $(TMP)/usr/local/etc/freeside
39 export FREESIDE_LOCK = $(TMP)/usr/local/etc/freeside
40 export FREESIDE_CACHE = $(TMP)/usr/local/etc/freeside
41 export FREESIDE_EXPORT = $(TMP)/usr/local/etc/freeside
42
43 export DIST_CONF = ${FREESIDE_CONF}/default_conf
44
45 #XXX own subdir?
46 #export MASON_HANDLER          = /usr/share/freeside/handler.pl
47 export MASON_HANDLER=$(TMP)-webui/usr/local/etc/freeside/handler.pl
48
49 export APACHE_VERSION        := $(shell /usr/sbin/apache2 -v | grep -q '\/2\.4\.' && echo '2.4' || echo '2')
50 export APACHE_DOCUMENT_ROOT  := $(shell [ ${APACHE_VERSION} = '2.4' ] && echo '/var/www/html' || echo '/var/www')
51 export FREESIDE_DOCUMENT_ROOT = $(TMP)$(APACHE_DOCUMENT_ROOT)/freeside
52 export INIT_FILE              = $(TMP).init
53 export INIT_INSTALL           = /bin/true
54 export HTTPD_RESTART          = /bin/true
55 export APACHE_CONF           := $(shell [ ${APACHE_VERSION} = '2.4' ] && echo "$(TMP)-webui/etc/apache2/conf-available" || echo "$(TMP)-webui/etc/apache2/conf.d")
56 export TORRUS_CONF           := $(shell [ ${APACHE_VERSION} = '2.4' ] && echo "$(TMP)-torrus/etc/apache2/conf-available" || echo "$(TMP)-torrus/etc/apache2/conf.d")
57 export FREESIDE_RESTART       = /bin/true
58
59 #XXX root?
60 export INSTALLGROUP           = adm
61
62 export SELFSERVICE_MACHINES   = 
63
64 #prompt ?   XXX these are runtime, not buildtime :/
65 export RT_DOMAIN              =  freeside.biz
66 export RT_TIMEZONE            = US/Eastern
67 export HOSTNAME               = localhost
68 export FREESIDE_URL           = http://$(HOSTNAME)/freeside/
69
70 #specific to deb pkg, for purposes of saving off a permanent copy of default
71 #config for postinst and that sort of thing
72 #export DIST_CONF           = /usr/share/freeside/default_conf
73
74 #XXX yuck.  proper RT layout is entirely necessary
75 #this seems to infect way to much of RT with the build location, requiring
76 # a kludge to hack it out afterwords.  look into using fakeroot (didn't
77 # realize it would need to be explicit argh)
78 # (but leaving it for now, otherwise can't get RT to put files where we need em)
79 export RT_PATH                = $(TMP)/opt/rt3
80
81 # This has to be exported to make some magic below work.
82 export DH_OPTIONS
83
84 configure: configure-stamp
85 configure-stamp:
86         dh_testdir
87         # Add here commands to configure the package.
88         
89         touch configure-stamp
90
91
92 build: build-stamp
93 build-stamp: 
94         dh_testdir
95         # Add commands to compile the package here
96         
97         ( cd FS/ && $(PERL) Makefile.PL INSTALLDIRS=vendor && $(MAKE) )
98         $(MAKE) perl-modules
99         
100         ( cd fs_selfservice/FS-SelfService/ && $(PERL) Makefile.PL && $(MAKE) )
101         
102         #install this for freeside-setup
103         install -d $(DIST_CONF)
104         install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
105
106         #TEST#
107
108         touch $@
109
110 clean:
111         dh_testdir
112         dh_testroot
113         dh_clean build-stamp install-stamp
114
115         # Add here commands to clean up after the build process.
116         $(MAKE) -e clean
117         #|| true #XXX freeside clean target fucked
118
119         dh_clean 
120
121 install: install-stamp
122 install-stamp: build-stamp
123         dh_testdir
124         dh_testroot
125         dh_clean -k
126         dh_installdirs
127
128         # Add here commands to install package into
129         # debian/<package>-whatever.
130
131         install -d $(FREESIDE_DOCUMENT_ROOT)
132         install -d $(TMP)-webui/usr/local/etc/freeside/
133         install -d $(TMP)-webui/etc/insserv/overrides/
134         install -d $(TMP)/usr/local/etc/freeside/
135         install -d $(FREESIDE_CACHE)/masondata #MASONDATA
136 #       install -d $(TMP)-lib/usr/bin
137
138         ( cd FS/ && $(MAKE) -e DESTDIR=${TMP}-lib install)
139
140         # Install configuration files
141         install -d -o freeside ${FREESIDE_CONF}
142
143         touch ${FREESIDE_CONF}/secrets
144         chown freeside ${FREESIDE_CONF}/secrets
145         chmod 600 ${FREESIDE_CONF}/secrets
146
147         /bin/echo -e "${DATASOURCE}\n${DB_USER}\n${DB_PASSWORD}" >${FREESIDE_CONF}/secrets
148         chmod 600 ${FREESIDE_CONF}/secrets
149         chown freeside ${FREESIDE_CONF}/secrets
150
151         mkdir "${FREESIDE_CACHE}/counters.${DATASOURCE}"
152         chown freeside "${FREESIDE_CACHE}/counters.${DATASOURCE}"
153
154         mkdir "${FREESIDE_CACHE}/cache.${DATASOURCE}"
155         chown freeside "${FREESIDE_CACHE}/cache.${DATASOURCE}"
156
157         mkdir "${FREESIDE_EXPORT}/export.${DATASOURCE}"
158         chown freeside "${FREESIDE_EXPORT}/export.${DATASOURCE}"
159
160         #install this for freeside-setup
161         install -d $(DIST_CONF)
162         #install conf/[a-z]* $(DEFAULT_CONF)
163         #CVS is not [a-z]
164         install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
165
166         # Install interfaces
167         $(MAKE) -e DESTDIR=$(TMP)-webui install-docs
168         
169         # Install tex
170         install -D -o freeside -m 444 etc/longtable.sty \
171         $(TMP)-lib/usr/local/share/texmf/tex/latex/longtable.sty
172         texhash $(TMP)-lib/usr/local/share/texmf
173
174         # Create Apache configurations
175         install -d $(APACHE_CONF)
176         $(MAKE) -e DESTDIR=$(APACHE_CONF) install-apache
177         install -o root -m 755 init.d/insserv-override-apache2 $(TMP)-webui/etc/insserv/overrides/apache2
178
179         #Hack the build dir out of apache config
180
181         perl -p -i -e "\
182          s'${TMP}(-webui)?''g;\
183         " $(APACHE_CONF)/*
184
185         # Install init
186         $(MAKE) -e DESTDIR=$(TMP) install-init
187
188         #hack the build dir out of Freeside too.  oh yeah, sucky.
189         perl -p -i -e "\
190           s'${TMP}(-webui)?''g;\
191         " ${TMP}/usr/local/etc/freeside/handler.pl \
192           ${TMP}/usr/share/perl5/FS/* \
193           ${TMP}/usr/share/perl5/FS/*/* \
194           ${TMP}/usr/bin/*
195
196         #hack the build dur out of lib
197         perl -p -i -e "\
198           s'${TMP}-lib?''g;\
199           s'${TMP}(-webui)?''g;\
200         " ${TMP}/usr/local/etc/freeside/handler.pl \
201           ${TMP}-lib/usr/share/perl5/FS/*.pm \
202           ${TMP}-lib/usr/share/perl5/FS/*/*.pm 
203         
204         #hack the build dir out of Freeside binaries
205
206         perl -p -i -e "\
207           s'${TMP}?''g;\
208         " ${TMP}-lib/usr/bin/* \
209           ${TMP}-webui/usr/local/etc/freeside/handler.pl
210
211         # Self-service
212         
213         ( cd fs_selfservice/FS-SelfService/; $(MAKE) -e DESTDIR=${TMP}-selfservice-lib install ) 
214         install -d -o freeside -g freeside ${TMP}-selfservice-lib/usr/local/freeside
215         touch ${TMP}-selfservice-lib/usr/local/freeside/selfservice_socket 
216         chown -R freeside ${TMP}-selfservice-lib/usr/local/freeside
217         chmod 600 ${TMP}-selfservice-lib/usr/local/freeside/selfservice_socket
218         
219         install -d -o freeside -g freeside ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/
220         cp -R fs_selfservice/FS-SelfService/cgi ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/selfservice-DIST
221         chown freeside.freeside ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/selfservice-DIST/*.cgi ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/selfservice-DIST/*/*.cgi;
222         chmod 755 ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/selfservice-DIST/*.cgi ${TMP}-selfservice-ui$(APACHE_DOCUMENT_ROOT)/selfservice-DIST/*/*.cgi
223
224         # NG-selfservice
225
226         install -d ${TMP}-ng-selfservice$(APACHE_DOCUMENT_ROOT)/
227         cp -R ng_selfservice ${TMP}-ng-selfservice$(APACHE_DOCUMENT_ROOT)/ng_selfservice-DIST/
228
229         # Torrus 
230         
231         install -d ${TORRUS_CONF}
232         install -o root -m 755 htetc/freeside-torrus.conf $(TORRUS_CONF)/
233
234         ( cd torrus; \
235         torrus_user=freeside var_user=freeside var_group=freeside ./configure; \
236         $(MAKE) -e DESTDIR=${TMP}-torrus/; \
237         $(MAKE) -e DESTDIR=${TMP}-torrus/ install; \
238         perl -p -i -e "\
239             s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\
240         " ${TMP}-torrus/usr/local/etc/torrus/conf/torrus-siteconfig.pl )
241
242         #RT Config
243
244         ( cd rt; \
245           cp config.layout.in config.layout; \
246           perl -p -i -e "\
247             s'%%%FREESIDE_DOCUMENT_ROOT%%%'${FREESIDE_DOCUMENT_ROOT}'g;\
248             s'%%%MASONDATA%%%'${FREESIDE_CACHE}/masondata'g;\
249           " config.layout; \
250           ./configure --prefix=${RT_PATH} \
251                 --enable-layout=Freeside \
252                 --with-db-type=Pg \
253                 --with-db-dba=freeside \
254                 --with-db-database=freeside \
255                 --with-db-rt-user=freeside \
256                 --with-db-rt-pass="" \
257                 --with-web-user=freeside \
258                 --with-web-group=freeside \
259                 --with-rt-group=freeside \
260                 --with-web-handler=modperl2 )
261
262         ##(create-rt)
263         #$(MAKE) -e DESTDIR=${TMP}-lib create-rt
264         install -d $(RT_PATH)
265         install -d $(RT_PATH)/share
266
267         ( cd rt; $(MAKE) config-install dirs files-install fixperms instruct )
268         
269         ##hack the build dir out of RT.  yeah, sucky.
270
271         perl -p -i -e "\
272         s'${TMP}(-webui)''g;\
273         s'${TMP}''g;\
274         " ${TMP}/opt/rt3/etc/*.pm \
275                 ${TMP}/opt/rt3/lib/*.pm \
276                 ${TMP}/opt/rt3/lib/RT/*.pm \
277                 ${TMP}/opt/rt3/etc/upgrade/* \
278                 ${TMP}/opt/rt3/sbin/* \
279                 ${TMP}/opt/rt3/bin/* \
280
281         # Default RT Settings
282         perl -p -i -e "\
283                 s'%%%RT_DOMAIN%%%'${RT_DOMAIN}'g;\
284                 s'%%%RT_TIMEZONE%%%'${RT_TIMEZONE}'g;\
285                 s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\
286                 " ${RT_PATH}/etc/RT_SiteConfig.pm
287
288         dh_install
289
290         #touch $@
291
292 binary-arch:
293 # We have nothing to do here for an architecture-independent package
294
295 binary-indep: build install
296         dh_testdir
297         dh_testroot
298         dh_installdeb install
299         dh_installdocs #freeside.docs README AGPL
300         dh_installexamples eg/*
301 #       dh_installmenu
302         dh_installdebconf       
303 #       dh_installlogrotate     
304         dh_installinit --no-start 
305         dh_installcron
306 #       dh_installinfo
307         dh_installman
308         dh_perl
309         dh_link
310         dh_compress 
311         dh_fixperms -X/var/www/selfservice-DIST -X/usr/local/freeside
312         dh_gencontrol
313         dh_md5sums
314         dh_builddeb
315
316 binary: binary-indep binary-arch
317 .PHONY: build clean binary-indep binary-arch binary install