Firstly, we need more information on where you got that file. It looks like a source package that is used to generate a .deb installer. Normally the .orig.tar.gz files have an accompanying *.diff.gz file.
How you'd go about it is (IF and ONLY IF it is a apt-source package):
1. tar -xvf *whatever*.orig.tar.gz
2. gunzip *whatever*.diff.gz
3. patch -p0 < *whatever*.diff (without the gz extension)
4. cd *whatever*
5. sudo apt-get build-dep *whatever* (in this case, fglrx-installer)
6. dpkg-buildpackage -rfakeroot *whatever* (in this case, fglrx-installer)
You'll arrive at built .deb packages that you install.
You will need a whole lot of other dependencies to be building deb packages (like dhmake).
Before you do any of the above steps, please provide info on where you got your package and furthermore, never, EVER forget to read the README file for more information. Hope that helps.


Reply With Quote

