Re: override_dh_auto_configure not called

2011-05-22 Thread Anton Gladky
I have solved the problem by this way: = #! /usr/bin/make -f %: dh $@ binary-indep: dh --before dh_auto_build $@ $(MAKE) doc dh --after dh_auto_build $@ binary-arch: dh --before dh_auto_build $@ $(MAKE) bins dh -

Re: override_dh_auto_configure not called

2011-05-21 Thread Jakub Wilk
* Scott Howard , 2011-05-05, 12:17: from the dh manpage: Finally, remember that you are not limited to using override targets in the rules file when using dh. You can also explicitly define any of the regular rules file targets when it makes sense to do so. A common reason to do this is if your

Re: override_dh_auto_configure not called

2011-05-05 Thread Scott Howard
On Thu, May 5, 2011 at 11:36 AM, Anton Gladky wrote: > Hi, all > > I have a similar question. I am using: > > override_dh_auto_build: >  make doc >  ... > > How to perform this section only on binary-independent packages? from the dh manpage: Finally, remember that you are not limited to using o

Re: override_dh_auto_configure not called

2011-05-05 Thread Anton Gladky
Hi, all I have a similar question. I am using: override_dh_auto_build: make doc ... How to perform this section only on binary-independent packages? Thank you. Anton -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact lis

Re: override_dh_auto_configure not called

2011-04-29 Thread Jakub Wilk
* Craig Small , 2011-04-30, 08:55: override_dh_auto_configure: dh_auto_configure -- -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_SKIP_RPATH:BOOL=ON This is a little circular Nah, it's perfectly fine (perhaps even idiomatic) to call dh_FOO in the override_dh_FOO target. -- Jakub Wilk --

Re: override_dh_auto_configure not called

2011-04-29 Thread Craig Small
On Thu, Apr 28, 2011 at 10:04:37AM +0200, Mathieu Malaterre wrote: > %: > dh --parallel --with quilt --buildsystem=cmake $@ and > dpkg-source: info: using source format `3.0 (quilt)' look wrong as 3.0 (quilt) does the patching work for you. Also the $@ is right after dh not after your options

Re: override_dh_auto_configure not called

2011-04-28 Thread Russ Allbery
Mathieu Malaterre writes: > I am trying to only build doc as indep target. I have the following > rules file (copy/paste from dh(1)): > ... > %: > dh --parallel --with quilt --buildsystem=cmake $@ > override_dh_auto_configure: > dh_auto_configure -- -DCMAKE_BUILD_TYPE:STRING=Relea