On 02/22/2011 05:26 AM, Paul Cartwright wrote:
On 02/21/2011 09:11 PM, Kristopher Gamrat wrote:
since Konq was the KDE3 file/web browser, I just assumed it would be in
trinity..
I don't see any reason why it wouldn't be there, unless you've got a corrupt installation, or a package got left out that should have been installed...
well it was in /opt/trinity/bin but it wasn't in any menu.. wait, it wasn't in any of my GNOME menus.. it was in fact right where it always was in my wife's KDE menu.. it did not appear in my gnome menus under gnome-debian-applications-filemanagement. Or under applications-network like the other browsers are. SO, the only real problem is that trinity did not add a menu/tray item for konqueror for gnome, should it? I am happy just to be able to run it, and now I have an icon in the tray ( I created it).
Paul,
I don't know if this will help, but I wrote a quick script for Arch that creates file lists for each Trinity package to help me sort out package issues. I'm sure whatever package manager you use can be adapted to use the script. You would just need to change the paths and the
for i in $(pacman -Q | grep trinity ); do
and
pacman -Qlq $pkgname >> ${listdir}/${lfname}
lines from 'pacman -Qxx' to whatever deb (or other distro) uses. Like for rpm based distros it would be similar to:
for i in $(rpm -qa | grep trinity ); do
and
rpm -ql $pkgname >> ${listdir}/${lfname}
The file lists have been really helpful when I need to see what got packaged where. Example:
http://www.3111skyline.com/dl/dt/trinity/arch/flist/trinity-kdewebdev-list.t...
The files are easier to grep than running find on the filesystem and you can post them for others to inspect where you can't do that with your filesystem. The script is:
http://www.3111skyline.com/dl/dt/trinity/arch/scr/tfilelist.sh