The repository http://repo.calcforge.org/debian no longer exists. However, the SVN contains a source that appears to be working with cables and a debian folder with build-instructions for Debian. So a solution could be to upgrade to the version from SVN and modify the build instructions.
The script (automated procedure) below works for me: #!/bin/bash # Make a source directory mkdir tilp_src && cd tilp_src # Get the source from SVN svn co "http://svn.tilp.info/repos/tilp/tfdocgen/trunk" "tfdocgen" svn co "http://svn.tilp.info/repos/tilp/libticables/trunk" "libticables" svn co "http://svn.tilp.info/repos/tilp/libticonv/trunk" "libticonv" svn co "http://svn.tilp.info/repos/tilp/libtifiles/trunk" "libtifiles" svn co "http://svn.tilp.info/repos/tilp/libticalcs/trunk" "libticalcs" svn co "http://svn.tilp.info/repos/tilp/gfm/trunk" "gfm" svn co "http://svn.tilp.info/repos/tilp/tilp/trunk" "tilp" # Install the build-dependencies sudo aptitude install debhelper pkg-config libglib2.0-dev libgtk2.0-dev libglade2-dev libusb-dev zlib1g-dev kdelibs4-dev gettext groff-base autotools-dev chrpath # Then buils and install each package cd tfdocgen && debuild -us -uc && cd .. sudo dpkg -i tfdocgen*.deb cd libticables && debuild -us -uc && cd .. sudo dpkg -i libticables*.deb cd libticonv && debuild -us -uc && cd .. sudo dpkg -i libticonv*.deb cd libtifiles && debuild -us -uc && cd .. sudo dpkg -i libtifiles*.deb cd libticalcs && debuild -us -uc && cd .. sudo dpkg -i libticalcs*.deb cd gfm && debuild -us -uc && cd .. sudo dpkg -i gfm*.deb cd tilp && debuild -us -uc && cd .. sudo dpkg -i tilp*.deb # fix eventually dependencies with aptitude sudo aptitude -- tilp doesn't work out of the box with the TI-GRAPH LINK USB cable https://bugs.launchpad.net/bugs/49251 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
