0

Please specify a location in /usr/share/doc/ if possible.

user
  • 86,916
  • 18
  • 197
  • 190
Sasquatch
  • 25
  • 5

2 Answers2

1

It's from the blt package. Unless Ubuntu has drifted far from its Debian roots, the copyright file will therefore be at /usr/share/doc/blt/copyright. It is also online at http://changelogs.ubuntu.com/changelogs/pool/main/b/blt/blt_2.4z-4.2/blt.copyright.

Anomie
  • 92,546
  • 13
  • 126
  • 145
  • I don't think so. The BLT I'm interested in has this description, "Libblt is an extension to LibGGI which adds functionality pertaining to blitting and management of blit data sources. LibGGI is a graphics library developed by the GGI Project (http://www.ggi-project.org/)." --http://www.ggi-project.org/docs/libblt-introduction.html But the project you reference has this description, "The BLT Toolkit is an extension to Tcl and Tk. It adds new commands and widgets to the Tcl interpreter. Included widgets are 2D graph, barchart, stripchart, tab notebook, and tree viewer." – Sasquatch Mar 27 '11 at 02:45
  • It's [the only result in the Ubuntu package search](http://packages.ubuntu.com/search?searchon=contents&keywords=libBLT.2.4.so.8.5&mode=filename&suite=maverick&arch=any). If you install a replacement from a third party source, you should specify that in your question. – Anomie Mar 27 '11 at 02:49
  • I have no idea what source it's from, but I need it. The descriptions also suggest that it isn't a replacement at all. You just guessed based on the shared object name. – Sasquatch Mar 27 '11 at 02:58
  • The description linked to by the copyright file doesn't match what I'd guessed the software is being used for, but the copyright file and shared object are both listed in the same file in /var/lib/dpkg/info. Thanks for your help. – Sasquatch Mar 27 '11 at 04:14
1

First, use

dpkg -S libBLT.2.4.so.8.5

to find the package name. Then use

dpkg -L <packagename> > /tmp/list

to list the files in the package. Then use

grep -i copyright `cat /tmp/list`

to find all files from the package that mention 'copyright'. One of them will probably be the file you're looking for.

sarnold
  • 102,305
  • 22
  • 181
  • 238