primary issue as below:
how to modify the control file dh_make produces for covering low version package ?
the cause of this issue as below:
I use ubuntu 14.04 version for compiling gstreamer 1.6.2,but this version of ubuntu bring its own gstreamer 1.2.4 package .I use dpkg -r or aptitude remove commands to no remove this gstreamer 1.2.4 version, because this package exists many other dependence of relevance.I have no way,so I think to merely make gstreamer 1.6.2 version package to conveniently install to cover gstreamer 1.2.4 version. by dh_make and dpkg-buildpackage command I make this 1.6.2 package .
I construct commands of gstreamer 1.6.2 install package as below:
(1)dh_make -e [my_email_address] -f ../gstreamer-1.6.2.tar.gz
(2)dpkg-buildpackage
(3)dpkg -i ../gstreamer_1.6.2-1_amd64.deb
but when I use dpkg -i command to install it my terminal window returns a error as below:
root@ubuntu:~/gstreamer_1.6.2/gstreamer-1.6.2# dpkg -i ../gstreamer_1.6.2-1_amd64.deb
Selecting previously unselected package gstreamer.
(Reading database ... 172213 files and directories currently installed.)
Preparing to unpack ../gstreamer_1.6.2-1_amd64.deb ...
Unpacking gstreamer (1.6.2-1) ...
dpkg: error processing archive ../gstreamer_1.6.2-1_amd64.deb (--install):
trying to overwrite '/usr/bin/gst-typefind-1.0', which is also in package gstreamer1.0-tools 1.2.4-0ubuntu1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
../gstreamer_1.6.2-1_amd64.deb
I don't understand that why this manipulation doesn't cover low version of gstreamer 1.2.4 package? I want to know that after dh_make produce the control file How to modify parameter or property in it for covering low version of 1.2.4 package?
if anybody have any idea for me,thank you in advance very much.