From owner-freebsd-python@FreeBSD.ORG  Sun Mar  3 05:08:49 2013
Return-Path: <owner-freebsd-python@FreeBSD.ORG>
Delivered-To: freebsd-python@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by hub.freebsd.org (Postfix) with ESMTP id 74EA4122;
 Sun,  3 Mar 2013 05:08:49 +0000 (UTC)
 (envelope-from rsimmons0@gmail.com)
Received: from mail-ee0-f42.google.com (mail-ee0-f42.google.com [74.125.83.42])
 by mx1.freebsd.org (Postfix) with ESMTP id DD4943F3;
 Sun,  3 Mar 2013 05:08:48 +0000 (UTC)
Received: by mail-ee0-f42.google.com with SMTP id b47so3291066eek.29
 for <multiple recipients>; Sat, 02 Mar 2013 21:08:41 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=mime-version:x-received:date:message-id:subject:from:to
 :content-type; bh=j0ttpSVHrncNnb31ZCzE1NON7MSa/t+7/vINlZAGqCo=;
 b=YPjQ8MbFpkYIlU2KX0vuvMwWpYuijsDUa+IMF8V3ZItg/T3HrovUwxHNMLnMzpSWj5
 8OuFG0SwrxF96U+m4eFMwX+EPW21GBCT/d8wg4Y+jY9RUKuwXpUBYehAsga0qkJlA6sY
 IukabT93OxaSEiAe9q5NGfkVlKWbQXYE4OoRZJMhxaMXRE2GKV5g3QFO5y4pj/MCXf/J
 71rEyLejGP5wjnVFfaIVz/oiIv2CVaF9CEOk4BAVAgbwsGYkpf/x52h1+1qqd5VvoXUT
 rbAstlpq0AygpZcQXaur+aAuCMXZtnF26g0hoEVYhdIwYeBizeFfGaijCYhlhnKWGNgE
 juNQ==
MIME-Version: 1.0
X-Received: by 10.14.3.133 with SMTP id 5mr44071140eeh.43.1362287321701; Sat,
 02 Mar 2013 21:08:41 -0800 (PST)
Received: by 10.14.98.65 with HTTP; Sat, 2 Mar 2013 21:08:41 -0800 (PST)
Date: Sun, 3 Mar 2013 00:08:41 -0500
Message-ID: <CA+QLa9BwfOFq1eHNfeeBq71Tg1pdZoTgcOVSj4PfK5Ti=WvKtA@mail.gmail.com>
Subject: Python libraries moved
From: Robert Simmons <rsimmons0@gmail.com>
To: freebsd-python@freebsd.org, freebsd-ports@freebsd.org
Content-Type: text/plain; charset=ISO-8859-1
X-BeenThere: freebsd-python@freebsd.org
X-Mailman-Version: 2.1.14
Precedence: list
List-Id: FreeBSD-specific Python issues <freebsd-python.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/freebsd-python>,
 <mailto:freebsd-python-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-python>
List-Post: <mailto:freebsd-python@freebsd.org>
List-Help: <mailto:freebsd-python-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-python>,
 <mailto:freebsd-python-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 03 Mar 2013 05:08:49 -0000

It looks like a port revision made a few hours ago has broken firefox
(and most likely a bunch of other ports).  In the makefile for
firefox, it has the following checks for dependencies:

BUILD_DEPENDS=  nspr>=4.9.4:${PORTSDIR}/devel/nspr \
                nss>=3.14.1:${PORTSDIR}/security/nss \
                sqlite3>=3.7.14.1:${PORTSDIR}/databases/sqlite3 \

${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \

As you can see, it looks for _sqlite3.so in ${PYTHON_SITELIBDIR} which
points to the old location for this library.  The revision to python
and its libraries has moved the location of these libraries to
lib-dynload

This is the revision in question:
http://svnweb.freebsd.org/ports?view=revision&revision=313167

This has broken firefox and most likely all other ports that look for
libraries in ${PYTHON_SITELIBDIR}