From owner-freebsd-ports@FreeBSD.ORG Sun Jun 20 20:38:51 2010 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 277B51065672 for ; Sun, 20 Jun 2010 20:38:51 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward11.mail.yandex.net (forward11.mail.yandex.net [95.108.130.93]) by mx1.freebsd.org (Postfix) with ESMTP id CB25D8FC1C for ; Sun, 20 Jun 2010 20:38:50 +0000 (UTC) Received: from smtp14.mail.yandex.net (smtp14.mail.yandex.net [95.108.131.192]) by forward11.mail.yandex.net (Yandex) with ESMTP id D93AB3ED01C8 for ; Mon, 21 Jun 2010 00:38:48 +0400 (MSD) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1277066328; bh=VgrVBhrvirju/MZmJa7awdCNdfuZOu2pchu9Rsd9RYw=; h=Message-ID:Date:From:MIME-Version:To:Subject:Content-Type: Content-Transfer-Encoding; b=YM/220f+a+4zHF1qytqxog35NPfhqrwsfzrvRfpNVMTO31MSUc279R7Snn/+QXLtj XT/bqWbTqbmC0T8SurulTf4KnxY1ZDyyRuG3IcLFx6AZyC8qQQ2xJO1oWdFugSyd7h bMu1SwdrIYJaXsmM/R/8Je1n3z48Lq4OxYhPxAs0= Received: from smeshariki2.local (unknown [77.66.149.137]) by smtp14.mail.yandex.net (Yandex) with ESMTPSA id AC2E119B806E for ; Mon, 21 Jun 2010 00:38:48 +0400 (MSD) Message-ID: <4C1E7C12.6010004@yandex.ru> Date: Mon, 21 Jun 2010 00:37:38 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; ru-RU; rv:1.9.1.9) Gecko/20100515 Thunderbird/3.0.4 MIME-Version: 1.0 To: FreeBSD Ports Mailing List Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Yandex-TimeMark: 1277066328 X-Yandex-Spam: 1 X-Yandex-Front: smtp14.mail.yandex.net Cc: Subject: ldd(1) manpage bug and how to know who depends on libchamplain.so X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jun 2010 20:38:51 -0000 Good day! I (still) have a trouble in using deskutils/gtg after gnome update, but i was able to make it work partially (it was new intel video driver issue). So, new problem is appear when i try to select some menu item - it crashes with: """ /libexec/ld-elf.so.1: /usr/local/lib/python2.6/site-packages/champlain.so: Undefined symbol "champlain_add_constants" """ I seems to rebuilt all the gnome/X things more then one time, but it steel persists. gtg isn't depend on libchamplain directly so how can i know who actually call champlain_add_constants routine from libchamplain.so? While trying to uncover this with ldd i found a bug in ldd(1) manpage. I was using command line from EXAMPLES section in tcsh and sh like so: find . -type f | xargs -n1 file -f | grep ELF | cut -f1 -d' ' | xargs ldd -f '%A %o\n' | grep champlain.so and i always get """ Usage: file [-bcikLhnNrsvz0] [-e test] [-f namefile] [-F separator] [-m magicfiles] file... file -C -m magicfiles Try `file --help' for more information. """ Maybe it should read `xargs -n1 file -f`, not -F? Thanks for any help. -- Regards, Ruslan