From: Sebastian Harl Date: Sun, 1 Aug 2010 20:06:27 +0000 (+0000) Subject: rules: Replace the whatis entry in the enblend/enfuse manpages. X-Git-Tag: enblend-enfuse-4.0+dfsg-1~10 X-Git-Url: https://git.tokkee.org/?p=pkg-enblend.git;a=commitdiff_plain;h=646569cafc1783b6c5b6271b423195c89700f2d5 rules: Replace the whatis entry in the enblend/enfuse manpages. … with something meaningful (using sed). --- diff --git a/debian/changelog b/debian/changelog index a648427..73a15aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,12 +17,14 @@ enblend-enfuse (4.0+dfsg-1) experimental; urgency=low - Let enblend/enfuse use the Boost filesystem library -- I suppose, this is more stable and, possibly, better optimized than the shipped fallback implementation. + - Replace the whatis entry in the enblend/enfuse manpages with something + meaningful (using sed). * debian/control: - Build-depend on libboost-filesystem-dev. - Updated Standards-Version to 3.9.1 -- no changes. - Build-depend on help2man, required to build the manpages. - -- Sebastian Harl Sat, 31 Jul 2010 17:38:47 +0000 + -- Sebastian Harl Sun, 01 Aug 2010 20:05:12 +0000 enblend-enfuse (3.2+dfsg-3) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index 7c382ef..05e8b7d 100755 --- a/debian/rules +++ b/debian/rules @@ -60,6 +60,13 @@ build-stamp: config.status build-tree-mp/config.status cd build-tree-mp && $(MAKE) $(MAKE) + + sed -e "s/manual page for enblend.*/combine images using a multiresolution spline/" \ + src/enblend.1 > src/enblend.1.tmp + mv src/enblend.1.tmp src/enblend.1 + sed -e "s/manual page for enfuse.*/poor man's HDR/" \ + src/enfuse.1 > src/enfuse.1.tmp + mv src/enfuse.1.tmp src/enfuse.1 touch build-stamp