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 = db_type_is_configured_during_pkg_install_by_dbconfig-common_not_at_build_time
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 export FREESIDE_SS = $(TMP)/usr/share/docs/freeside
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 FREESIDE_DOCUMENT_ROOT = /usr/share/freeside/www
50 export FREESIDE_DOCUMENT_ROOT = $(TMP)-webui/var/www/freeside
51 export INIT_FILE              = $(TMP).init
52 export INIT_INSTALL           = /bin/true
53 export HTTPD_RESTART          = /bin/true
54 #export APACHE_CONF           = /etc/apache2/conf.d
55 export APACHE_CONF            = $(TMP)-webui/etc/freeside/apache2
56 export FREESIDE_RESTART       = /bin/true
57
58 #XXX root?
59 export INSTALLGROUP           = adm
60
61 export SELFSERVICE_MACHINES   = 
62
63 #prompt ?   XXX these are runtime, not buildtime :/
64 export RT_DOMAIN              =  freeside.biz
65 export RT_TIMEZONE            = US/Eastern
66 export HOSTNAME               = localhost
67 export FREESIDE_URL           = http://$(HOSTNAME)/freeside/
68
69 #specific to deb pkg, for purposes of saving off a permanent copy of default
70 #config for postinst and that sort of thing
71 #export DIST_CONF           = /usr/share/freeside/default_conf
72
73 #XXX yuck.  proper RT layout is entirely necessary
74 #this seems to infect way to much of RT with the build location, requiring
75 # a kludge to hack it out afterwords.  look into using fakeroot (didn't
76 # realize it would need to be explicit argh)
77 # (but leaving it for now, otherwise can't get RT to put files where we need em)
78 export RT_PATH                = $(TMP)/opt/rt3
79
80 # This has to be exported to make some magic below work.
81 export DH_OPTIONS
82
83 configure: configure-stamp
84 configure-stamp:
85         dh_testdir
86         # Add here commands to configure the package.
87         
88         touch configure-stamp
89
90
91 build: build-stamp
92 build-stamp: 
93         dh_testdir
94         # Add commands to compile the package here
95         
96         ( cd FS/ && $(PERL) Makefile.PL INSTALLDIRS=vendor && [ -e Makefile ] || perl Makefile.PL && make )
97         
98         #install this for freeside-setup
99         install -d $(DIST_CONF)
100         install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
101
102         #TEST#
103
104         touch $@
105
106 clean:
107         dh_testdir
108         dh_testroot
109         dh_clean build-stamp install-stamp
110
111         # Add here commands to clean up after the build process.
112         $(MAKE) -e clean
113         #|| true #XXX freeside clean target fucked
114
115         dh_clean 
116
117 install: install-stamp
118 install-stamp: build-stamp
119         dh_testdir
120         dh_testroot
121         dh_clean -k
122         dh_installdirs
123
124         # Add here commands to install package into
125         # debian/<package>-whatever.
126
127         install -d $(FREESIDE_DOCUMENT_ROOT)
128         install -d $(TMP)-webui/usr/local/etc/freeside/
129         install -d $(TMP)/usr/local/etc/freeside/
130         install -d $(FREESIDE_CACHE)/masondata #MASONDATA
131
132         ( cd FS/ && $(MAKE) -e DESTDIR=${TMP} install)
133
134         # Install configuration files
135         install -d -o freeside ${FREESIDE_CONF}
136
137         touch ${FREESIDE_CONF}/secrets
138         chown freeside ${FREESIDE_CONF}/secrets
139         chmod 600 ${FREESIDE_CONF}/secrets
140
141         /bin/echo -e "${DATASOURCE}\n${DB_USER}\n${DB_PASSWORD}" >${FREESIDE_CONF}/secrets
142         chmod 600 ${FREESIDE_CONF}/secrets
143         chown freeside ${FREESIDE_CONF}/secrets
144
145         mkdir "${FREESIDE_CACHE}/counters.${DATASOURCE}"
146         chown freeside "${FREESIDE_CACHE}/counters.${DATASOURCE}"
147
148         mkdir "${FREESIDE_CACHE}/cache.${DATASOURCE}"
149         chown freeside "${FREESIDE_CACHE}/cache.${DATASOURCE}"
150
151         mkdir "${FREESIDE_EXPORT}/export.${DATASOURCE}"
152         chown freeside "${FREESIDE_EXPORT}/export.${DATASOURCE}"
153
154         #install this for freeside-setup
155         install -d $(DIST_CONF)
156         #install conf/[a-z]* $(DEFAULT_CONF)
157         #CVS is not [a-z]
158         install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
159
160         # Install interfaces
161         $(MAKE) -e DESTDIR=$(TMP)-webui install-docs
162
163         # Create Apache configurations
164         install -d $(APACHE_CONF)
165         $(MAKE) -e DESTDIR=$(APACHE_CONF) install-apache
166
167         #Hack the build dir out of apache config
168
169         perl -p -i -e "\
170          s'${TMP}(-webui)?''g;\
171         "  $(TMP)-webui/etc/freeside/apache2/*
172
173         # Install init
174         $(MAKE) -e DESTDIR=$(TMP) install-init
175
176         #hack the build dir out of Freeside too.  oh yeah, sucky.
177         perl -p -i -e "\
178           s'${TMP}(-webui)?''g;\
179         " ${TMP}/usr/local/etc/freeside/handler.pl \
180           ${TMP}/usr/share/perl5/FS/* \
181           ${TMP}/usr/share/perl5/FS/*/* \
182           ${TMP}/usr/bin/*
183
184         #hack the build dur out of lib
185         perl -p -i -e "\
186           s'${TMP}-lib?''g;\
187           s'${TMP}(-webui)?''g;\
188         " ${TMP}/usr/local/etc/freeside/handler.pl \
189           ${TMP}-lib/usr/share/perl5/FS/*.pm \
190           ${TMP}-lib/usr/share/perl5/FS/*/*.pm 
191         
192         #hack the build dir out of Freeside binaries
193
194         perl -p -i -e "\
195           s'${TMP}?''g;\
196         " ${TMP}-lib/usr/bin/* \
197
198         #RT Config
199
200         ( cd rt; \
201           cp config.layout.in config.layout; \
202           perl -p -i -e "\
203             s'%%%FREESIDE_DOCUMENT_ROOT%%%'${FREESIDE_DOCUMENT_ROOT}'g;\
204             s'%%%MASONDATA%%%'${FREESIDE_CACHE}/masondata'g;\
205           " config.layout; \
206           ./configure --prefix=${RT_PATH} \
207                 --enable-layout=Freeside \
208                 --with-db-type=Pg \
209                 --with-db-dba=freeside \
210                 --with-db-database=freeside \
211                 --with-db-rt-user=freeside \
212                 --with-db-rt-pass="" \
213                 --with-web-user=freeside \
214                 --with-web-group=freeside \
215                 --with-rt-group=freeside \
216                 --with-web-handler=modperl2 )
217
218         ##(create-rt)
219         #$(MAKE) -e DESTDIR=${TMP}-lib create-rt
220         install -d $(RT_PATH)
221         install -d $(RT_PATH)/share
222
223         ( cd rt; $(MAKE) install )
224         
225         ##hack the build dir out of RT.  yeah, sucky.
226
227         perl -p -i -e "\
228         s'${TMP}(-webui)''g;\
229         s'${TMP}''g;\
230         " ${TMP}/opt/rt3/etc/*.pm \
231                 ${TMP}/opt/rt3/lib/*.pm \
232                 ${TMP}/opt/rt3/lib/RT/*.pm \
233                 ${TMP}/opt/rt3/etc/upgrade/* \
234                 ${TMP}/opt/rt3/sbin/* \
235                 ${TMP}/opt/rt3/bin/* \
236
237         # Default RT Settings
238         perl -p -i -e "\
239                 s'%%%RT_DOMAIN%%%'${RT_DOMAIN}'g;\
240                 s'%%%RT_TIMEZONE%%%'${RT_TIMEZONE}'g;\
241                 s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\
242                 " ${RT_PATH}/etc/RT_SiteConfig.pm
243
244         dh_install
245
246         #touch $@
247
248 binary-arch:
249 # We have nothing to do here for an architecture-independent package
250
251 binary-indep: build install
252         dh_testdir
253         dh_testroot
254         dh_installdeb install
255         dh_installdocs #freeside.docs README AGPL
256         dh_installexamples eg/*
257 #       dh_installmenu
258         dh_installdebconf       
259 #       dh_installlogrotate     
260         dh_installinit --no-start 
261         dh_installcron
262 #       dh_installinfo
263         dh_installman
264         dh_perl
265         dh_link
266         dh_compress 
267         dh_fixperms
268         dh_gencontrol
269         dh_md5sums
270         dh_builddeb
271
272 binary: binary-indep binary-arch
273 .PHONY: build clean binary-indep binary-arch binary install