Ticket 2916 Debian packages
[freeside.git] / debian / rules
index 71016c4..d82978c 100755 (executable)
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper. 
-# GNU copyright 1997 by Joey Hess.
-#
-# This version is for a hypothetical package that builds an
-# architecture-dependant package, as well as an architecture-independent
-# package.
-
-# Uncomment this to turn on verbose mode. 
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-# This is the debhelper compatability version to use.
-export DH_COMPAT=3
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+#export PERL_MM_USE_DEFAULT=1
+
+PERL   ?= /usr/bin/perl
+#PACKAGE = $(shell dh_listpackages)
+PACKAGE = freeside
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+#DBC_SCRIPTS = $(TMP)/usr/share/dbconfig-common/scripts/freeside
+
+##this is gotten from dbconfig-common
+#DB_TYPE = db_type_is_configured_during_pkg_install_by_dbconfig-common_not_at_build_time
+
+#Data source
+DATASOURCE = DBI:${DB_TYPE}:dbname=freeside
+
+#no chance, it doesn't get backslash-interpolted now...
+##DEBVERSION                    = `head -1 debian/changelog | cut -d')' -f1 | cut -c11-`
+#DEBVERSION                    = 1.7.3~rc2-1
+#export VERSION                = $(DEBVERSION) (Debian)
+
+#export FREESIDE_CONF          = /etc/freeside
+#export FREESIDE_LOG           = /var/log/freeside
+#export FREESIDE_LOCK          = /var/lock/freeside
+#export FREESIDE_CACHE         = $(TMP)/var/cache/freeside
+#FREESIDE_CACHE         = $(TMP)/var/cache/freeside
+
+#XXX huh?
+#export FREESIDE_EXPORT        = /var/spool/freeside
+
+export FREESIDE_CONF = $(TMP)/usr/local/etc/freeside
+export FREESIDE_LOG = $(TMP)/usr/local/etc/freeside
+export FREESIDE_LOCK = $(TMP)/usr/local/etc/freeside
+export FREESIDE_CACHE = $(TMP)/usr/local/etc/freeside
+export FREESIDE_EXPORT = $(TMP)/usr/local/etc/freeside
+export FREESIDE_SS = $(TMP)/usr/share/docs/freeside
+export DIST_CONF = ${FREESIDE_CONF}/default_conf
+
+#XXX own subdir?
+#export MASON_HANDLER          = /usr/share/freeside/handler.pl
+export MASON_HANDLER=$(TMP)-webui/usr/local/etc/freeside/handler.pl
+
+#export FREESIDE_DOCUMENT_ROOT = /usr/share/freeside/www
+export FREESIDE_DOCUMENT_ROOT = $(TMP)-webui/var/www/freeside
+export INIT_FILE              = $(TMP).init
+export INIT_INSTALL           = /bin/true
+export HTTPD_RESTART          = /bin/true
+#export APACHE_CONF           = /etc/apache2/conf.d
+export APACHE_CONF            = $(TMP)-webui/etc/freeside/apache2
+export FREESIDE_RESTART       = /bin/true
+
+#XXX root?
+export INSTALLGROUP           = adm
+
+export SELFSERVICE_MACHINES   = 
+
+#prompt ?   XXX these are runtime, not buildtime :/
+export RT_DOMAIN              =  freeside.biz
+export RT_TIMEZONE            = US/Eastern
+export HOSTNAME               = localhost
+export FREESIDE_URL           = http://$(HOSTNAME)/freeside/
+
+#specific to deb pkg, for purposes of saving off a permanent copy of default
+#config for postinst and that sort of thing
+#export DIST_CONF           = /usr/share/freeside/default_conf
+
+#XXX yuck.  proper RT layout is entirely necessary
+#this seems to infect way to much of RT with the build location, requiring
+# a kludge to hack it out afterwords.  look into using fakeroot (didn't
+# realize it would need to be explicit argh)
+# (but leaving it for now, otherwise can't get RT to put files where we need em)
+export RT_PATH                = $(TMP)/opt/rt3
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
 
 configure: configure-stamp
 configure-stamp:
        dh_testdir
        # Add here commands to configure the package.
        
-
        touch configure-stamp
 
-build: configure-stamp build-stamp
-build-stamp:
+
+build: build-stamp
+build-stamp: 
        dh_testdir
+       # Add commands to compile the package here
+       
+       ( cd FS/ && $(PERL) Makefile.PL INSTALLDIRS=vendor && [ -e Makefile ] || perl Makefile.PL && make )
+       
+       #install this for freeside-setup
+       install -d $(DIST_CONF)
+       install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
 
-       # Add here commands to compile the package.
-       $(MAKE)
+       #TEST#
 
-       touch build-stamp
+       touch $@
 
 clean:
        dh_testdir
        dh_testroot
-       rm -f build-stamp configure-stamp
+       dh_clean build-stamp install-stamp
 
        # Add here commands to clean up after the build process.
-       -$(MAKE) clean
+       $(MAKE) -e clean
+       #|| true #XXX freeside clean target fucked
 
-       dh_clean
+       dh_clean 
 
-install: DH_OPTIONS=
-install: build
+install: install-stamp
+install-stamp: build-stamp
        dh_testdir
        dh_testroot
        dh_clean -k
        dh_installdirs
 
-       # Add here commands to install the package into debian/freeside.
-       $(MAKE) install DESTDIR=$(CURDIR)/debian/freeside
+       # Add here commands to install package into
+       # debian/<package>-whatever.
+
+       install -d $(FREESIDE_DOCUMENT_ROOT)
+       install -d $(TMP)-lib/usr/bin/
+       install -d $(TMP)-webui/usr/local/etc/freeside/
+       install -d $(TMP)/usr/local/etc/freeside/
+       install -d $(FREESIDE_CACHE)/masondata #MASONDATA
+
+       ( cd FS/ && $(MAKE) -e DESTDIR=${TMP}-lib install)
+
+        # Install configuration files
+       install -d -o freeside ${FREESIDE_CONF}
+
+       touch ${FREESIDE_CONF}/secrets
+       chown freeside ${FREESIDE_CONF}/secrets
+       chmod 600 ${FREESIDE_CONF}/secrets
 
-       dh_movefiles
+       /bin/echo -e "${DATASOURCE}\n${DB_USER}\n${DB_PASSWORD}" >${FREESIDE_CONF}/secrets
+       chmod 600 ${FREESIDE_CONF}/secrets
+       chown freeside ${FREESIDE_CONF}/secrets
+
+       mkdir "${FREESIDE_CACHE}/counters.${DATASOURCE}"
+       chown freeside "${FREESIDE_CACHE}/counters.${DATASOURCE}"
+
+       mkdir "${FREESIDE_CACHE}/cache.${DATASOURCE}"
+       chown freeside "${FREESIDE_CACHE}/cache.${DATASOURCE}"
+
+       mkdir "${FREESIDE_EXPORT}/export.${DATASOURCE}"
+       chown freeside "${FREESIDE_EXPORT}/export.${DATASOURCE}"
+
+       #install this for freeside-setup
+       install -d $(DIST_CONF)
+       #install conf/[a-z]* $(DEFAULT_CONF)
+       #CVS is not [a-z]
+       install `ls -d conf/[a-z]* | grep -v CVS | grep -v '^conf/registries'` $(DIST_CONF)
+
+       # Install interfaces
+       $(MAKE) -e DESTDIR=$(TMP)-webui install-docs
+
+       # Create Apache configurations
+       install -d $(APACHE_CONF)
+       $(MAKE) -e DESTDIR=$(APACHE_CONF) install-apache
+
+        #Hack the build dir out of apache config
+
+       perl -p -i -e "\
+         s'${TMP}(-webui)?''g;\
+        "  $(TMP)-webui/etc/freeside/apache2/*
+
+       # Install init
+       $(MAKE) -e DESTDIR=$(TMP) install-init
+
+       #hack the build dir out of Freeside too.  oh yeah, sucky.
+       perl -p -i -e "\
+         s'${TMP}(-webui)?''g;\
+       " ${TMP}/usr/local/etc/freeside/handler.pl \
+         ${TMP}/usr/share/perl5/FS/* \
+         ${TMP}/usr/share/perl5/FS/*/* \
+         ${TMP}/usr/bin/*
+
+       #hack the build dur out of lib
+       perl -p -i -e "\
+          s'${TMP}-lib?''g;\
+         s'${TMP}(-webui)?''g;\
+        " ${TMP}/usr/local/etc/freeside/handler.pl \
+         ${TMP}-lib/usr/share/perl5/FS/*.pm \
+         ${TMP}-lib/usr/share/perl5/FS/*/*.pm 
+        
+        #hack the build dir out of Freeside binaries
+
+       perl -p -i -e "\
+          s'${TMP}?''g;\
+        " ${TMP}-lib/usr/bin/* \
+
+       #RT Config
+
+       ( cd rt; \
+          cp config.layout.in config.layout; \
+          perl -p -i -e "\
+            s'%%%FREESIDE_DOCUMENT_ROOT%%%'${FREESIDE_DOCUMENT_ROOT}'g;\
+            s'%%%MASONDATA%%%'${FREESIDE_CACHE}/masondata'g;\
+          " config.layout; \
+          ./configure --prefix=${RT_PATH} \
+               --enable-layout=Freeside \
+               --with-db-type=Pg \
+               --with-db-dba=freeside \
+               --with-db-database=freeside \
+               --with-db-rt-user=freeside \
+               --with-db-rt-pass="" \
+               --with-web-user=freeside \
+               --with-web-group=freeside \
+               --with-rt-group=freeside \
+               --with-web-handler=modperl2 )
+
+        ##(create-rt)
+       #$(MAKE) -e DESTDIR=${TMP}-lib create-rt
+       install -d $(RT_PATH)
+       install -d $(RT_PATH)/share
+
+       ( cd rt; $(MAKE) install )
+       
+       ##hack the build dir out of RT.  yeah, sucky.
+
+       perl -p -i -e "\
+       s'${TMP}(-webui)''g;\
+       s'${TMP}''g;\
+       " ${TMP}/opt/rt3/etc/*.pm \
+               ${TMP}/opt/rt3/lib/*.pm \
+               ${TMP}/opt/rt3/lib/RT/*.pm \
+               ${TMP}/opt/rt3/etc/upgrade/* \
+               ${TMP}/opt/rt3/sbin/* \
+               ${TMP}/opt/rt3/bin/* \
+
+       # Default RT Settings
+       perl -p -i -e "\
+               s'%%%RT_DOMAIN%%%'${RT_DOMAIN}'g;\
+               s'%%%RT_TIMEZONE%%%'${RT_TIMEZONE}'g;\
+               s'%%%FREESIDE_URL%%%'${FREESIDE_URL}'g;\
+               " ${RT_PATH}/etc/RT_SiteConfig.pm
+
+       dh_install
+
+       #touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
 
-# Build architecture-independent files here.
-# Pass -i to all debhelper commands in this target to reduce clutter.
 binary-indep: build install
-       dh_testdir -i
-       dh_testroot -i
-#      dh_installdebconf -i
-       dh_installdocs -i
-       dh_installexamples -i
-       dh_installmenu -i
-#      dh_installlogrotate -i
-#      dh_installemacsen -i
-#      dh_installpam -i
-#      dh_installmime -i
-#      dh_installinit -i
-       dh_installcron -i
-#      dh_installman -i
-       dh_installinfo -i
-#      dh_undocumented -i
-       dh_installchangelogs  -i
-       dh_link -i
-       dh_compress -i
-       dh_fixperms -i
-       dh_installdeb -i
-#      dh_perl -i
-       dh_gencontrol -i
-       dh_md5sums -i
-       dh_builddeb -i
-
-# Build architecture-dependent files here.
-binary-arch: build install
-       dh_testdir -a
-       dh_testroot -a
-#      dh_installdebconf -a
-       dh_installdocs -a
-       dh_installexamples -a
-       dh_installmenu -a
-#      dh_installlogrotate -a
-#      dh_installemacsen -a
-#      dh_installpam -a
-#      dh_installmime -a
-#      dh_installinit -a
-       dh_installcron -a
-#      dh_installman -a
-       dh_installinfo -a
-#      dh_undocumented -a
-       dh_installchangelogs  -a
-       dh_strip -a
-       dh_link -a
-       dh_compress -a
-       dh_fixperms -a
-#      dh_makeshlibs -a
-       dh_installdeb -a
-#      dh_perl -a
-       dh_shlibdeps -a
-       dh_gencontrol -a
-       dh_md5sums -a
-       dh_builddeb -a
+       dh_testdir
+       dh_testroot
+       dh_installdeb install
+       dh_installdocs #freeside.docs README AGPL
+       dh_installexamples eg/*
+#      dh_installmenu
+       dh_installdebconf       
+#      dh_installlogrotate     
+       dh_installinit --no-start 
+       dh_installcron
+#      dh_installinfo
+       dh_installman
+       dh_perl
+       dh_link
+       dh_compress 
+       dh_fixperms
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure
+.PHONY: build clean binary-indep binary-arch binary install