[PC-BSD Commits] r3352 - in pbibuild/modules/kino: . overlay-dir
svn at pcbsd.org
svn at pcbsd.org
Wed Jan 28 07:11:48 PST 2009
Author: kris
Date: 2009-01-28 06:48:22 -0800 (Wed, 28 Jan 2009)
New Revision: 3352
Modified:
pbibuild/modules/kino/build.sh
pbibuild/modules/kino/copy-files
pbibuild/modules/kino/overlay-dir/PBI.RemoveScript.sh
pbibuild/modules/kino/overlay-dir/PBI.SetupScript.sh
pbibuild/modules/kino/pbi.conf
Log:
Updated kino, now 100% self-contained, and seems to work great. Was able to apply effects and export a movie now
Modified: pbibuild/modules/kino/build.sh
===================================================================
--- pbibuild/modules/kino/build.sh 2009-01-28 14:42:20 UTC (rev 3351)
+++ pbibuild/modules/kino/build.sh 2009-01-28 14:48:22 UTC (rev 3352)
@@ -8,16 +8,3 @@
# MODULEDIR = The location of the module directory for this PBI
# PORTVER = Version number of the port we used to build
##############################################################################
-# Get all the various language files and copy them to the PBI
-LANGFILE="kino.mo"
-mkdir ${PBIDIR}/locale/
-cd /usr/local/share/locale
-for i in `ls`
-do
- if [ -e "/usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE}" ]
- then
- mkdir ${PBIDIR}/locale/${i}
- cp /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} ${PBIDIR}/locale/${i}/
- fi
-done
-
Modified: pbibuild/modules/kino/copy-files
===================================================================
--- pbibuild/modules/kino/copy-files 2009-01-28 14:42:20 UTC (rev 3351)
+++ pbibuild/modules/kino/copy-files 2009-01-28 14:48:22 UTC (rev 3352)
@@ -16,4 +16,3 @@
/usr/local/lib/libsample* autolibs/
/usr/local/share/kino share/
/usr/local/share/pixmaps/kino.png ./
-/usr/local/share/mime/packages/kino.xml share/mime/packages/
Modified: pbibuild/modules/kino/overlay-dir/PBI.RemoveScript.sh
===================================================================
--- pbibuild/modules/kino/overlay-dir/PBI.RemoveScript.sh 2009-01-28 14:42:20 UTC (rev 3351)
+++ pbibuild/modules/kino/overlay-dir/PBI.RemoveScript.sh 2009-01-28 14:48:22 UTC (rev 3352)
@@ -7,16 +7,3 @@
# TIP: 'kdialog' should be used for user interaction.
#########################################
-rm /usr/local/bin/kino
-rm /usr/local/lib/kino-gtk2
-rm /usr/local/share/kino
-rm /usr/local/share/mime/packages/kino.xml
-
-# Remove the old locale files since we are uninstalling
-LANGFILE="kino.mo"
-cd /Programs/${PROGDIR}/locale
-for i in `ls`
-do
- rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE}
-done
-
Modified: pbibuild/modules/kino/overlay-dir/PBI.SetupScript.sh
===================================================================
--- pbibuild/modules/kino/overlay-dir/PBI.SetupScript.sh 2009-01-28 14:42:20 UTC (rev 3351)
+++ pbibuild/modules/kino/overlay-dir/PBI.SetupScript.sh 2009-01-28 14:48:22 UTC (rev 3352)
@@ -14,19 +14,15 @@
# echo 'SETSTEPS: <num>' # Set the current progress of the progress bar
# echo 'MSG: <text>' # Display this text above progress bar
#########################################
-ln -fs /Programs/${PROGDIR}/.sbin/kino /usr/local/bin/kino
-ln -fs /Programs/${PROGDIR}/autolibs/kino-gtk2 /usr/local/lib/kino-gtk2
-ln -fs /Programs/${PROGDIR}/share/kino /usr/local/share/kino
-ln -fs /Programs/${PROGDIR}/share/mime/packages/kino.xml /usr/local/share/mime/packages/kino.xml
-# Copy over all the LANG files
-LANGFILE="kino.mo"
-cd /Programs/${PROGDIR}/locale
-for i in `ls`
-do
- mkdir -p /usr/local/share/locale/${i}/LC_MESSAGES >/dev/null 2>/dev/null
- cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE}
-done
+# Check which font config we want to link to
+if [ -d "/PCBSD/local/etc/fonts" ]
+then
+ ln -s /PCBSD/local/etc/fonts /Programs/${PROGDIR}/etc/fonts
+else
+ ln -s /usr/local/etc/fonts /Programs/${PROGDIR}/etc/fonts
+fi
-echo "LAUNCHCLOSE: /usr/local/bin/kino"
+
+echo "LAUNCHCLOSE: /Programs/bin/kino"
Modified: pbibuild/modules/kino/pbi.conf
===================================================================
--- pbibuild/modules/kino/pbi.conf 2009-01-28 14:42:20 UTC (rev 3351)
+++ pbibuild/modules/kino/pbi.conf 2009-01-28 14:48:22 UTC (rev 3352)
@@ -25,13 +25,13 @@
PBIUPDATE="http://update.pbidir.com"
# Other Ports we need built (One per line)
-OTHERPORT=""
+OTHERPORT="/usr/ports/x11-themes/qtcurve-gtk2"
# Enter your custom make options here
MAKEOPTS=""
# 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="11"
+BUILDKEY="01"
export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY
More information about the Commits
mailing list