From owner-freebsd-current@FreeBSD.ORG Sun Apr 19 17:28:52 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99814106564A for ; Sun, 19 Apr 2009 17:28:52 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 522518FC12 for ; Sun, 19 Apr 2009 17:28:52 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from [85.173.17.81] (helo=moosi) by services.ipt.ru with esmtpa (Exim 4.54 (FreeBSD)) id 1Lvap0-000Gma-8M; Sun, 19 Apr 2009 21:28:50 +0400 To: Matthias Apitz References: <49EAF042.6030209@wanadoo.fr> <20090419111105.GA11449@rebelion.Sisis.de> <49EB0FED.4060408@wanadoo.fr> <20090419143537.GA19064@rebelion.Sisis.de> From: Boris Samorodov Date: Sun, 19 Apr 2009 21:28:33 +0400 In-Reply-To: <20090419143537.GA19064@rebelion.Sisis.de> (Matthias Apitz's message of "Sun\, 19 Apr 2009 16\:35\:37 +0200") Message-ID: <25004542@ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-current@freebsd.org Subject: Re: linux-flashplugin-9 && firefox-3.0.7, 1 does not play in -CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Apr 2009 17:28:52 -0000 Matthias Apitz writes: > vm-naranja# cd /usr/compat/linux/lib > vm-naranja# pkg_info -W libreadline.so.5.2 > vm-naranja# ls -l libreadline.so.5.2 > -rwxr-xr-x 1 root wheel 212996 Apr 18 13:54 libreadline.so.5.2 If you look at any /var/db/pkg/linux*/+CONTENTS file, you'll see a line "@cwd /compat/linux" near the top of the file. That meens that all linux files are registered relative to LINUX_BASE, that is /compat/linux. So you should use that base when using pkg_info: ----- % pkg_info -W /compat/linux/lib/libreadline.so.5.2 /compat/linux/lib/libreadline.so.5.2 was installed by package linux_base-f9-9 % ----- HTH & WBR -- bsam