[PC-BSD Commits] r6289 - in pbibuild/modules/www/kompozer: . kmenu-dir overlay-dir
svn at pcbsd.org
svn at pcbsd.org
Tue Feb 23 18:08:54 PST 2010
Author: kris
Date: 2010-02-23 18:08:53 -0800 (Tue, 23 Feb 2010)
New Revision: 6289
Added:
pbibuild/modules/www/kompozer/overlay-dir/kompozer.png
Removed:
pbibuild/modules/www/kompozer/kmenu-dir/i18n
pbibuild/modules/www/kompozer/overlay-dir/PBI.UpdateURL.sh
pbibuild/modules/www/kompozer/overlay-dir/autolibs/
pbibuild/modules/www/kompozer/overlay-dir/bin/
pbibuild/modules/www/kompozer/overlay-dir/include/
pbibuild/modules/www/kompozer/overlay-dir/lib/
pbibuild/modules/www/kompozer/overlay-dir/libdata/
pbibuild/modules/www/kompozer/overlay-dir/share/
Modified:
pbibuild/modules/www/kompozer/build.sh
pbibuild/modules/www/kompozer/copy-files
pbibuild/modules/www/kompozer/kmenu-dir/kompozer
pbibuild/modules/www/kompozer/overlay-dir/PBI.FirstRun.sh
pbibuild/modules/www/kompozer/overlay-dir/PBI.RemoveScript.sh
pbibuild/modules/www/kompozer/overlay-dir/PBI.SetupScript.sh
pbibuild/modules/www/kompozer/pbi.conf
Log:
Updated kompozer, builds again
Modified: pbibuild/modules/www/kompozer/build.sh
===================================================================
--- pbibuild/modules/www/kompozer/build.sh 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/build.sh 2010-02-24 02:08:53 UTC (rev 6289)
@@ -4,7 +4,9 @@
# Build your PBI here, and exit 0 on success, or exit 1 on failure.
##############################################################################
# Available Variables
-# PBIDIR = The location of where you can populate your PBI directory
-# MODULEDIR = The location of the module directory for this PBI
-# PORTVER = Version number of the port we used to build
+# PBI_TARGETFULLDIR = The target location of the installed application (/Programs/FireFox)
+# PBI_TARGETDIR = The target directory name of the installed application (FireFox)
+# PBI_CURDIR = The current location of where you can populate your PBI directory
+# PBI_VERSION = Version number of this PBI
+# MODULEDIR = The location of the module directory for this PBI
##############################################################################
Modified: pbibuild/modules/www/kompozer/copy-files
===================================================================
--- pbibuild/modules/www/kompozer/copy-files 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/copy-files 2010-02-24 02:08:53 UTC (rev 6289)
@@ -1,13 +0,0 @@
-/usr/local/bin/kompozer bin/
-/usr/local/bin/kompozer-config bin/
-/usr/local/include/kompozer include/
-/usr/local/lib/kompozer lib/
-/usr/local/lib/kompozer/kompozer-bin bin/
-/usr/local/share/idl/kompozer share/idl/
-/usr/local/share/applications/kompozer* share/applications/
-/usr/local/share/apps share/
-/usr/local/share/config share/config
-/usr/local/share/services share/services
-/usr/local/share/servicetypes share/servicetypes
-/usr/local/share/mime share/mime
-/usr/local/libexec/gam* libexec/
Modified: pbibuild/modules/www/kompozer/kmenu-dir/kompozer
===================================================================
--- pbibuild/modules/www/kompozer/kmenu-dir/kompozer 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/kmenu-dir/kompozer 2010-02-24 02:08:53 UTC (rev 6289)
@@ -1,5 +1,5 @@
ExePath: bin/kompozer
-ExeIcon: share/pixmaps/kompozer_256x256.png
+ExeIcon: kompozer.png
ExeDescr: KompoZer
ExeNoDesktop: 0
ExeNoMenu: 0
@@ -9,5 +9,5 @@
ExeLink: 0
ExeWebLink: 0
ExeTaskbar: 0
-ExeOwndir: 1
+ExeOwndir: 2
ExeKdeCat: Development
Modified: pbibuild/modules/www/kompozer/overlay-dir/PBI.FirstRun.sh
===================================================================
--- pbibuild/modules/www/kompozer/overlay-dir/PBI.FirstRun.sh 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/overlay-dir/PBI.FirstRun.sh 2010-02-24 02:08:53 UTC (rev 6289)
@@ -1,17 +1 @@
#!/bin/sh
-# Filename: PBI.FirstRun.sh
-# Place any custom installation code here.
-# This script will be run before your program is extracted into
-# /Programs/<ProgNameVer>/
-# Available variables:
-# $PROGDIR - Directory where the files will be extracted to.
-# $USERNAME - Username of who started the installation.
-# $INSTALLMODE - Set to 'TEXT' or 'GUI', depending on which installer is running.
-#
-# Return a '2' to halt the PBI installation
-# TIP: 'kdialog' should be used for user interaction.
-# To interact with the progress dialog echo these flags:
-# echo 'TOTALSTEPS: <num>' # Set the total steps of the progress bar
-# echo 'SETSTEPS: <num>' # Set the current progress of the progress bar
-# echo 'MSG: <text>' # Display this text above progress bar
-#########################################
Modified: pbibuild/modules/www/kompozer/overlay-dir/PBI.RemoveScript.sh
===================================================================
--- pbibuild/modules/www/kompozer/overlay-dir/PBI.RemoveScript.sh 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/overlay-dir/PBI.RemoveScript.sh 2010-02-24 02:08:53 UTC (rev 6289)
@@ -6,21 +6,3 @@
# ${2} is the username of person performing the deletion.
# TIP: 'kdialog' should be used for user interaction.
#########################################
-
-if [ ! -z "$DISPLAY" ]
-then
- # Ask if we want to remove the user profiles
- kdialog --yesno "Do you want to remove Kompozer user settings?" --title "Remove user settings"
- if [ "$?" = "0" ]
- then
- cd /home
- for i in `ls`
- do
- if [ -e "/home/${i}/.kompozer" ]
- then
- rm -rf /home/${i}/.kompozer
- fi
- done
- fi
-
-fi
Modified: pbibuild/modules/www/kompozer/overlay-dir/PBI.SetupScript.sh
===================================================================
--- pbibuild/modules/www/kompozer/overlay-dir/PBI.SetupScript.sh 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/overlay-dir/PBI.SetupScript.sh 2010-02-24 02:08:53 UTC (rev 6289)
@@ -15,7 +15,4 @@
# echo 'MSG: <text>' # Display this text above progress bar
#########################################
-mkdir /Programs/${PROGDIR}/lib/kompozer/extensions
-chmod 777 /Programs/${PROGDIR}/lib/kompozer/extensions
-
echo "LAUNCHCLOSE: /Programs/bin/kompozer"
Property changes on: pbibuild/modules/www/kompozer/overlay-dir/kompozer.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: pbibuild/modules/www/kompozer/pbi.conf
===================================================================
--- pbibuild/modules/www/kompozer/pbi.conf 2010-02-23 21:16:26 UTC (rev 6288)
+++ pbibuild/modules/www/kompozer/pbi.conf 2010-02-24 02:08:53 UTC (rev 6289)
@@ -7,13 +7,13 @@
PROGNAME="KompoZer"
# Program Website
-PROGWEB="http://www.kompozer.net"
+PROGWEB="http://www.kompozer.net/"
# Program Author
-PROGAUTHOR="KompoZer Team"
+PROGAUTHOR="The KompoZer Team"
# Default Icon (Relative to overlay-dir)
-PROGICON="share/pixmaps/kompozer_256x256.png"
+PROGICON="kompozer.png"
# Port we want to build
PBIPORT="/usr/ports/www/kompozer/"
@@ -34,8 +34,4 @@
# - The rebuild will take place even if port is still the same ver
BUILDKEY="01"
-# Mark this port broken 7-1-09, failed for over 2 weeks now
-PORTBROKE="YES"
-export PORTBROKE
-
export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY
More information about the Commits
mailing list