pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/pkgsrc-2006Q3]: pkgsrc/www/seamonkey Pullup ticket 1851 - requested b...
details: https://anonhg.NetBSD.org/pkgsrc/rev/b027939cf0a5
branches: pkgsrc-2006Q3
changeset: 519133:b027939cf0a5
user: salo <salo%pkgsrc.org@localhost>
date: Tue Oct 17 15:03:01 2006 +0000
description:
Pullup ticket 1851 - requested by ghen
build fix for gecko packages no longer using regchrome
Revisions pulled up:
- pkgsrc/www/seamonkey/INSTALL 1.2
Module Name: pkgsrc
Committed By: ghen
Date: Sun Oct 8 13:10:30 UTC 2006
Modified Files:
pkgsrc/www/seamonkey: INSTALL
Log Message:
Recent versions of firefox don't have regchrome anymore, resulting in a
(non-fatal) error: ./+INSTALL: /usr/pkg/lib/firefox2/regchrome: not found.
Only run regchrome when it's installed.
diffstat:
www/seamonkey/INSTALL | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diffs (23 lines):
diff -r b4e6e94916a7 -r b027939cf0a5 www/seamonkey/INSTALL
--- a/www/seamonkey/INSTALL Sun Oct 15 10:18:44 2006 +0000
+++ b/www/seamonkey/INSTALL Tue Oct 17 15:03:01 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.1.1.1 2006/03/30 19:15:38 ghen Exp $
+# $NetBSD: INSTALL,v 1.1.1.1.4.1 2006/10/17 15:03:01 salo Exp $
MOZILLA="@MOZILLA@"
MOZILLA_BIN="@MOZILLA_BIN@"
@@ -10,8 +10,11 @@
${MKDIR} -p "./tmpdir-${PKGNAME}"
LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}" HOME="./tmpdir-${PKGNAME}" \
${MOZILLA_FIVE_HOME}/regxpcom
- LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}" HOME="./tmpdir-${PKGNAME}" \
- ${MOZILLA_FIVE_HOME}/regchrome
+ if ${TEST} -x ${MOZILLA_FIVE_HOME}/regchrome; then
+ LD_LIBRARY_PATH="${MOZILLA_FIVE_HOME}" \
+ HOME="./tmpdir-${PKGNAME}" \
+ ${MOZILLA_FIVE_HOME}/regchrome
+ fi
${RM} -fr "./tmpdir-${PKGNAME}"
;;
esac
Home |
Main Index |
Thread Index |
Old Index