#!/usr/bin/make -f include /usr/share/dpkg/pkg-info.mk %: dh $@ --buildsystem ruby --with ruby --with elpa override_dh_elpa: dh_elpa --emacs-loadpath='/usr/share/emacs/site-lisp/rdtool-elisp' override_dh_installchangelogs: dh_installchangelogs -k $(CURDIR)/doc/en/news.rd override_dh_installdocs: dh_installdocs ( cd debian/rabbit/usr/share/doc/rabbit/sample/lldn/ && \ rm -f lavie.png && \ ln -s ../lavie.png . ) create_man:: help2man \ --name="presentation tool using RD, simple text format" \ --section=1 --manual="rabbit" --no-info --no-discard-stderr \ "/usr/bin/ruby -Ilib bin/rabbit" \ --version-string=${DEB_VERSION_EPOCH_UPSTREAM} \ > debian/rabbit.1 help2man \ --name="commandline utility for Rabbit" \ --section=1 --manual="rabbit-command" --no-info --no-discard-stderr \ "/usr/bin/ruby -Ilib bin/rabbit-command" \ --version-string=${DEB_VERSION_EPOCH_UPSTREAM} \ > debian/rabbit-command.1 help2man \ --name="IRC interface for Rabbit" \ --section=1 --manual="rabbirc" --no-info --no-discard-stderr \ "/usr/bin/ruby -Ilib bin/rabbirc" \ --version-string=${DEB_VERSION_EPOCH_UPSTREAM} \ > debian/rabbirc.1 help2man \ --name="Template generator for Rabbit" \ --section=1 --manual="rabbit-slide" --no-info --no-discard-stderr \ "/usr/bin/ruby -Ilib bin/rabbit-slide" \ --version-string=${DEB_VERSION_EPOCH_UPSTREAM} \ > debian/rabbit-slide.1 help2man \ --name="Theme generator for Rabbit" \ --section=1 --manual="rabbit-teme" --no-info --no-discard-stderr \ "/usr/bin/ruby -Ilib bin/rabbit-teme" \ --version-string=${DEB_VERSION_EPOCH_UPSTREAM} \ > debian/rabbit-theme.1 # # LC_ALL=C ruby1.8 -Ilib bin/rabbit --roff --locale-dir data/locale > debian/rabbit.1 # # LC_ALL=C ruby1.8 -Ilib bin/rabbit-theme --roff --locale-dir data/locale > debian/rabbit-theme-manager.1 # # LC_ALL=C ruby1.8 -Ilib bin/rabbit-command --roff --locale-dir data/locale > debian/rabbit-command.1