diff options
author | dsainty <dsainty@pkgsrc.org> | 2012-09-05 23:33:41 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2012-09-05 23:33:41 +0000 |
commit | 027ff666e1fef95f95a45932dc01b882fe66176f (patch) | |
tree | 4061131243a16091a0559820c8d4dbe6d4ed4d8c /devel/xulrunner | |
parent | 72bd3127ca896af57ed2f42e7ba3c77898e41b38 (diff) | |
download | pkgsrc-027ff666e1fef95f95a45932dc01b882fe66176f.tar.gz |
pysqlite2 is used by xulrunner's Python virtualenv. If pysqlite2 isn't
installed at build time it will attempt to download it instead, so the
problem is stealthy in a networked environment, and obvious in an
offline environment.
Add it as a build dependency.
Diffstat (limited to 'devel/xulrunner')
-rw-r--r-- | devel/xulrunner/mozilla-common.mk | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/xulrunner/mozilla-common.mk b/devel/xulrunner/mozilla-common.mk index f924a0e1fe2..38200c4f1d6 100644 --- a/devel/xulrunner/mozilla-common.mk +++ b/devel/xulrunner/mozilla-common.mk @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.35 2012/08/28 12:42:01 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.36 2012/09/05 23:33:41 dsainty Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -59,6 +59,14 @@ PYTHON_FOR_BUILD_ONLY= yes .include "../../lang/python/application.mk" CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q} +# +# pysqlite2 is used by xulrunner's Python virtualenv. If pysqlite2 isn't +# installed at build time it will attempt to download it instead, so the +# problem is stealthy in a networked environment, and obvious in an +# offline environment. +# +BUILD_DEPENDS+= ${PYPKGPREFIX}-sqlite2-[0-9]*:../../databases/py-sqlite2 + # Makefiles sometimes call "rm -f" without more arguments. Kludge around ... .PHONY: create-rm-wrapper pre-configure: create-rm-wrapper |