This is an automated email from the git hooks/post-receive script. vcheng pushed a commit to branch master in repository irrlicht.
commit f47ad701a561624636f9741948671c305fe459a2 Author: Vincent Cheng <[email protected]> Date: Thu Sep 10 14:32:45 2015 -0700 replace build-dep on doxygen-latex with doxygen --- debian/changelog | 1 + debian/control | 2 +- debian/rules | 8 +++++++- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index fee043e..bbcc5b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ irrlicht (1.8.2+dfsg1-1) unstable; urgency=medium * New upstream release. - Drop make-build-reproducible.patch, obsolete. + * Build-dep on doxygen instead of doxygen-latex. -- Vincent Cheng <[email protected]> Thu, 10 Sep 2015 12:26:34 -0700 diff --git a/debian/control b/debian/control index cd215d3..25861d3 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Uploaders: Vincent Cheng <[email protected]> Build-Depends: debhelper (>= 9), - doxygen-latex, + doxygen, libbz2-dev, libglu1-mesa-dev, libjpeg-dev, diff --git a/debian/rules b/debian/rules index 80a866f..a8f04fc 100755 --- a/debian/rules +++ b/debian/rules @@ -37,7 +37,13 @@ override_dh_auto_build: CXXFLAGS="$(CXXFLAGS)" $(MAKE) -C source/Irrlicht staticlib # build documentation - cd scripts/doc/irrlicht && sh makedocumentation.sh + # based off of scripts/doc/irrlicht/makedocumentation.sh + cd scripts/doc/irrlicht && rm -f tut.txt && \ + for i in ../../../examples/[012]*/main.cpp; do \ + sed -f tutorials.sed $i >>tut.txt; \ + done && \ + doxygen doxygen.cfg && \ + cp irrlicht.png logobig.png ../../../doctemp/html mv doctemp/* doc/ override_dh_installdirs: -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/irrlicht.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

