#!/usr/bin/make -f # GNU copyright 1997 to 1999 by Joey Hess (sample file) # Copyright 2000 to 2002 by Roland Mas and Christian Bayle for the Sourceforge package # Copyright 2002 to 2008 by Roland Mas and Christian Bayle for the Gforge package # Copyright 2008 to 2010 by Roland Mas and Christian Bayle for the FusionForge package OLDPACKAGE=gforge PACKAGE=fusionforge SRCPACKAGE=fusionforge FORGENAME=FusionForge SED_REPLACE=sed -e 's/@PACKAGE@/$(PACKAGE)/g' -e 's/@SRCPACKAGE@/$(SRCPACKAGE)/g' -e 's/@OLDPACKAGE@/$(OLDPACKAGE)/g' -e 's/@FORGENAME@/$(FORGENAME)/g' default: @echo $(PACKAGE) include /usr/share/dpatch/dpatch.make # The substitutions bellow can be quite tricky, so use 'debian/rules testpat' to check if it's OK # generate a list of all .postinst filenames for all plugins which contain a 'NAME' file PPOSTINST=$(patsubst plugins/%/NAME, debian/$(PACKAGE)-plugin-%.postinst, $(wildcard plugins/*/NAME)) # generate a list of all .prerm filenames for all plugins which contain a 'NAME' file PPRERM=$(patsubst plugins/%/NAME, debian/$(PACKAGE)-plugin-%.prerm, $(wildcard plugins/*/NAME)) CRONDFILES=$(patsubst packaging/cron.d/%, debian/$(OLDPACKAGE)-%.cron.d, $(wildcard packaging/cron.d/[a-z]*)) PCRONDFILES=$(patsubst %, debian/$(PACKAGE)-%.cron.d, $(shell ls plugins/*/packaging/cron.d/[a-z]* | sed 's,.*/,,')) DIRSFILES=$(patsubst packaging/dirs/%, debian/$(OLDPACKAGE)-%.dirs, $(wildcard packaging/dirs/[a-z]*)) PDIRSFILES=$(patsubst %, debian/$(PACKAGE)-%.dirs, $(shell ls plugins/*/packaging/dirs/[a-z]* | sed 's,.*/,,')) LINKSFILES=$(patsubst packaging/links/%, debian/$(OLDPACKAGE)-%.links, $(wildcard packaging/links/[a-z]*)) PLINKSFILES=$(patsubst %, debian/$(PACKAGE)-%.links, $(shell ls plugins/*/packaging/links/[a-z]* | sed 's,.*/,,')) INSTALLFILES=$(patsubst packaging/install/%, debian/$(OLDPACKAGE)-%.install, $(wildcard packaging/install/[a-z]*)) PINSTALLFILES=$(patsubst %, debian/$(PACKAGE)-%.install, $(shell ls plugins/*/packaging/install/[a-z]* | sed 's,.*/,,')) DOCSFILES=$(patsubst packaging/docs/%, debian/$(OLDPACKAGE)-%.docs, $(wildcard packaging/docs/[a-z]*)) \ $(patsubst packaging/docs/%, debian/$(PACKAGE)-%.docs, $(wildcard packaging/docs/[a-z]*)) PDOCSFILES=$(patsubst %, debian/$(PACKAGE)-%.docs, $(shell ls plugins/*/packaging/docs/[a-z]* | sed 's,.*/,,')) POFILES=$(patsubst debian/dsf-po/%, debian/po/%, $(wildcard debian/dsf-po/*) debian/po/POTFILES.in) testpat: @echo "PPOSTINST=$(PPOSTINST)" @echo "PPRERM=$(PPRERM)" @echo "" @echo "CRONDFILES=$(CRONDFILES)" @echo "DIRSFILES=$(DIRSFILES)" @echo "LINKSFILES=$(LINKSFILES)" @echo "INSTALLFILES=$(INSTALLFILES)" @echo "DOCSFILES=$(DOCSFILES)" @echo "" @echo "PCRONDFILES=$(PCRONDFILES)" @echo "PDIRSFILES=$(PDIRSFILES)" @echo "PLINKSFILES=$(PLINKSFILES)" @echo "PINSTALLFILES=$(PINSTALLFILES)" @echo "PDOCSFILES=$(PDOCSFILES)" remove-binary-files: sh $(CURDIR)/deb-specific/manage-uufiles.sh clean .PHONY: conffiles conffiles: $(PPOSTINST) $(PPRERM) $(CRONDFILES) $(DIRSFILES) $(LINKSFILES) $(INSTALLFILES) $(DOCSFILES) $(PCRONDFILES) $(PDIRSFILES) $(PLINKSFILES) $(PINSTALLFILES) $(PDOCSFILES) debian/control debian/$(PACKAGE)-plugin-%.postinst: export PLUGLONGNAME="`cat $(CURDIR)/plugins/$*/NAME`"; $(SED_REPLACE) -e 's/@PLUGSHORTNAME@/$*/g' -e "s/@PLUGLONGNAME@/$$PLUGLONGNAME/g" $(CURDIR)/debian/dsf-in/plugin.postinst > $@ debian/$(PACKAGE)-plugin-%.prerm: export PLUGLONGNAME="`cat $(CURDIR)/plugins/$*/NAME`"; $(SED_REPLACE) -e 's/@PLUGSHORTNAME@/$*/g' -e "s/@PLUGLONGNAME@/$$PLUGLONGNAME/g" $(CURDIR)/debian/dsf-in/plugin.prerm > $@ debian/$(PACKAGE)-plugin-%.cron.d: $(SED_REPLACE) -e 's/\$$FFUSER/$(OLDPACKAGE)/g' $(CURDIR)/plugins/$*/packaging/cron.d/plugin-$* > $@ debian/$(OLDPACKAGE)-%.cron.d: (cat $(CURDIR)/packaging/cron.d/00phpcron ; $(SED_REPLACE) -e 's/\$$FFUSER/$(OLDPACKAGE)/g' $(CURDIR)/packaging/cron.d/$*) | $(SED_REPLACE) > $@ debian/$(PACKAGE)-plugin-%.dirs: $(SED_REPLACE) $(CURDIR)/plugins/$*/packaging/dirs/plugin-$* > $@ debian/$(OLDPACKAGE)-%.dirs: $(SED_REPLACE) $(CURDIR)/packaging/dirs/$* > $@ debian/$(PACKAGE)-plugin-%.links: $(SED_REPLACE) $(CURDIR)/plugins/$*/packaging/links/plugin-$* > $@ debian/$(OLDPACKAGE)-%.links: $(SED_REPLACE) $(CURDIR)/packaging/links/$* > $@ debian/$(PACKAGE)-plugin-%.install: $(SED_REPLACE) $(CURDIR)/plugins/$*/packaging/install/plugin-$* > $@ debian/$(OLDPACKAGE)-%.install: $(SED_REPLACE) $(CURDIR)/packaging/install/$* > $@ debian/$(PACKAGE)-plugin-%.docs: $(SED_REPLACE) $(CURDIR)/plugins/$*/packaging/docs/plugin-$* > $@ debian/$(OLDPACKAGE)-%.docs: $(SED_REPLACE) $(CURDIR)/packaging/docs/$* > $@ debian/$(PACKAGE)-%.docs: $(SED_REPLACE) $(CURDIR)/packaging/docs/$* > $@ debian/control: $(wildcard packaging/control/*) $(wildcard plugins/*/packaging/control/[1-9][0-9][0-9]*) ls $(CURDIR)/packaging/control/[0-9][0-9][0-9]* $(CURDIR)/plugins/*/packaging/control/[1-9][0-9][0-9]* | grep -v shortdesc | grep -v scmcpold | while read file ; do cat $${file}; if [ -f $${file}.shortdesc ] ; then cat $(CURDIR)/packaging/control/AAAdesc; echo ' .'; cat $${file}.shortdesc; fi; echo ''; done | $(SED_REPLACE) > $@ debian/po/templates.pot: $(wildcard debian/dsf-in/*.templates.dsfh-in) $(wildcard debian/dsf-helper/*.templates) @debconf-updatepo --podir=debian/dsf-po debian/po/%: cat $(patsubst debian/po/%, debian/dsf-po/%, $@) | $(SED_REPLACE) > $@ .PHONY: patch build: patch remove-binary-files debian/po/templates.pot conffiles dh $@ # Build man pages from Docbook sources cat debian/dsf-in/config.sgml | $(SED_REPLACE) > debian/$(PACKAGE)-config.sgml cat debian/dsf-in/common.manpages | $(SED_REPLACE) > debian/$(OLDPACKAGE)-common.manpages /usr/bin/docbook-to-man debian/cvssh.sgml > cvssh.1 /usr/bin/docbook-to-man debian/$(PACKAGE)-config.sgml > $(PACKAGE)-config.1 # Build README.Debian from template cat debian/README.Debian.tmpl | $(SED_REPLACE) > debian/README.Debian # Uudecode binary files sh $(CURDIR)/deb-specific/manage-uufiles.sh decode # Build gettext *.mo files utils/manage-translations.sh build # Build FHS-compatible Apache config files utils/manage-apache-config.sh build # Preprocess files with DSF-Helper perl $(CURDIR)/deb-specific/dsf-helper.pl clean: remove-binary-files unpatch dh $@ rm -f $(CURDIR)/debian/*.cron.d rm -f $(CURDIR)/debian/*.dirs rm -f $(CURDIR)/debian/*.links rm -f $(CURDIR)/debian/*.install rm -f $(CURDIR)/debian/*.docs rm -f $(CURDIR)/debian/$(PACKAGE)-config.sgml rm -f $(CURDIR)/debian/$(OLDPACKAGE)-common.manpages rm -f cvssh.1 $(PACKAGE)-config.1 rm -f $(CURDIR)/debian/README.Debian rm -rf locales rm -f $(POFILES) perl $(CURDIR)/deb-specific/dsf-helper.pl --clean install: build dh $@ # Fix permissions chmod 755 $(CURDIR)/debian/*/*/*/*/bin/* $(CURDIR)/debian/*/*/*/*/cronjobs/* \ $(CURDIR)/debian/*/bin/* $(CURDIR)/debian/*/usr/share/*/plugins/*/bin/* \ $(CURDIR)/debian/*/usr/share/*/plugins/*/cronjobs/* chmod 644 $(CURDIR)/debian/$(OLDPACKAGE)-db-postgresql/usr/share/$(OLDPACKAGE)/cronjobs/*.inc chmod 755 $(CURDIR)/debian/$(OLDPACKAGE)-db-postgresql/usr/share/*/db/*.php rm $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/usr/share/*/www/scm/viewvc/bin/cgi/viewvc-strace.sh find $(CURDIR)/debian/$(OLDPACKAGE)-common/usr/share/*/common/docman/engine/ -type f -name \*.php -not -name \*.inc.php -exec chmod 0755 {} \; find $(CURDIR)/debian/$(OLDPACKAGE)-common/usr/share/*/common/docman/engine/ -type f -name \*.sh -exec chmod 0755 {} \; rm -f $(CURDIR)/debian/$(PACKAGE)-plugin-scm*/usr/share/*/plugins/scm*/*/README chmod 755 $(CURDIR)/debian/$(PACKAGE)-plugin-scmcvs/usr/share/*/plugins/scmcvs/sbin/* # Rename config files mv $(CURDIR)/debian/$(OLDPACKAGE)-common/etc/$(PACKAGE)/config.ini-fhs $(CURDIR)/debian/$(OLDPACKAGE)-common/etc/$(PACKAGE)/config.ini cp -r $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/usr/share/$(OLDPACKAGE)/etc/httpd.conf.d-fhs $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf.d cp $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/usr/share/$(OLDPACKAGE)/etc/httpd.conf-fhs $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf # Remove those that need to be generated at install time rm $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf.d/secrets.inc rm $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf.d/vhost-list.inc rm $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf.d/vhost-main.inc rm $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/etc/$(OLDPACKAGE)/httpd.conf.d/vhost-projects.inc # Remove Windows files rm -rf $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/usr/share/*/www/scm/viewvc/windows rm -f $(CURDIR)/debian/$(OLDPACKAGE)-web-apache2/usr/share/*/www/themes/$(OLDPACKAGE)/COPYING # Remove Snoopy class from binary packages (provided by libphp-snoopy) find $(addprefix $(CURDIR)/debian/, $(shell dh_listpackages)) -name Snoopy.class.php | xargs -r rm # Remove NuSOAP class from binary packages (provided by libnusoap-php) find $(addprefix $(CURDIR)/debian/, $(shell dh_listpackages)) -name nusoap.php | xargs -r rm # Remove potential SCM artefacts from binary packages find $(addprefix $(CURDIR)/debian/, $(shell dh_listpackages)) -name .svn -or -name {arch} -or -name .arch-ids -or -name .bzr -or -name .cvsignore | xargs -r rm -rf # Also remove uuencoded files find $(addprefix $(CURDIR)/debian/, $(shell dh_listpackages)) -name \*.uu | xargs -r rm binary: install %: dh $@