#!/usr/bin/make -f #export DH_VERBOSE=1 include /usr/share/openstack-pkg-tools/pkgos.make %: dh $@ --with python2 override_dh_auto_build: dh_auto_build /usr/share/openstack-pkg-tools/pkgos_insert_include pkgos_func ceilometer-common.postinst override_dh_installchangelogs: dh_installchangelogs debian/CHANGELOG override_dh_auto_clean: dh_auto_clean rm -rf debian/*.upstart rm -rf debian/ceilometer-common.postinst override_dh_installinit: if dpkg-vendor --derives-from ubuntu ; then \ for i in *.upstart.in ; do \ MYPKG=`echo $i | cut -d. -f1` ; \ cp $MYPKG.upstart.in $MYPKG.upstart ; \ done ; \ fi dh_installinit --error-handler=true override_dh_gencontrol: if dpkg-vendor --derives-from ubuntu ; then \ dh_gencontrol -- -T$(CURDIR)/debian/ubuntu_control_vars ; \ else \ dh_gencontrol -- -T$(CURDIR)/debian/debian_control_vars ; \ fi