[PC-BSD Commits] r2997 - pbibuild/modules/thunderbird
svn at pcbsd.org
svn at pcbsd.org
Wed Nov 26 17:27:26 PST 2008
Author: kris
Date: 2008-11-26 17:27:24 -0800 (Wed, 26 Nov 2008)
New Revision: 2997
Modified:
pbibuild/modules/thunderbird/build.sh
pbibuild/modules/thunderbird/pbi.conf
Log:
Finially fix the cause of 1GB thunderbird PBI on 1.5.x. Was a broken lightning-xpi port causing all kinds of weirdness.
Modified: pbibuild/modules/thunderbird/build.sh
===================================================================
--- pbibuild/modules/thunderbird/build.sh 2008-11-26 14:43:45 UTC (rev 2996)
+++ pbibuild/modules/thunderbird/build.sh 2008-11-27 01:27:24 UTC (rev 2997)
@@ -9,10 +9,15 @@
# PORTVER = Version number of the port we used to build
##############################################################################
-# Build the lightning-xpi module to include
-cd /usr/ports/deskutils/lightning-xpi
-make clean
-make install
+#Only build this extension on 7.x, the port is major broken on 6.x
+uname -r | grep "^6."
+if [ "${?}" != "0" ]
+then
+ # Build the lightning-xpi module to include
+ cd /usr/ports/deskutils/lightning-xpi
+ make clean
+ make install
+fi
# Copy over the lightning-xpi extensions
if [ -d "/usr/local/lib/thunderbird/extensions" ]
Modified: pbibuild/modules/thunderbird/pbi.conf
===================================================================
--- pbibuild/modules/thunderbird/pbi.conf 2008-11-26 14:43:45 UTC (rev 2996)
+++ pbibuild/modules/thunderbird/pbi.conf 2008-11-27 01:27:24 UTC (rev 2997)
@@ -33,6 +33,6 @@
# Build Key - Change this to anything else to trigger a rebuild
# - The rebuild will take place even if port is still the same ver
-BUILDKEY="01"
+BUILDKEY="02"
export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY
More information about the Commits
mailing list