ooo-build r13017 - in trunk: . patches/dev300



Author: pmladek
Date: Tue Jul  1 20:10:33 2008
New Revision: 13017
URL: http://svn.gnome.org/viewvc/ooo-build?rev=13017&view=rev

Log:
2008-07-01  Petr Mladek  <pmladek suse cz>

	* patches/dev300/installer-get-path-correctly.diff:
	* patches/dev300/apply: allow to get path also from ./file;
	  otherwise, it installed the license files into ugly subdirectories;
	  for example into <ooo-home>/LICENSE.html/LICENSE.html; even worse,
	  the direcotry had the rights 444 (broke rpm build checks)



Added:
   trunk/patches/dev300/installer-get-path-correctly.diff
Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/patches/dev300/apply

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Tue Jul  1 20:10:33 2008
@@ -16,6 +16,12 @@
 	+ opening a tab delimited CSV file (n#376473) [Kohei]
 	+ no source border when doing cut [n#367489] [Jon]
 	+ undefined behavior of SbUnoObject (i#88930) [Julian, Kohei]
+	+ tab color of selected and unselected sheets (bnc#386029) [Kohei]
+	+ allow special characters in sheet names (i#6087) [Caolan, Kohei]
+	+ bin check for incompatible ODF version {Kohei]
+	+ warn when inserting a linked graphic (bnc#348149) [Thorsten]
+	+ better fix for the rounding problems (i#86775) [Kohei]
+
     + VBA bits:
 	+ more on user forms and even handling [Noel, Jiao]
 	+ crasher caused by the 3 layer system [Noel]
@@ -23,6 +29,7 @@
 	+ brackets and array syntax handling [Noel]
 	+ workbook/worksheet events and event handle class [Fong]
 	+ non-working mediawiki extension [Noel]
+	+ Worksheet_SelectionChange event (bnc#388049) [Noel]
     + Win32 bits:
 	+ localize.pl and Cygwin pathnames [Tor]
 	+ disable cairo in the Win32 builds [Tor]
@@ -33,7 +40,7 @@
 	+ build on s390 [Rene]
 	+ packaging of extensions that we build it [Rene, Thorsten]
 	+ variaous fixes [Michel, Rene, others]
-    + updated Debian, Frugalware, Novell, Ubuntu bits [Rene, Miklos, Petr, Michel]
+    + updated Debian, Frugalware, Gentoo, Novell, Ubuntu bits [Rene, Miklos, Andreas, Petr, Michel]
     + experimental:
 	+ support for MSVS 2008 (MSVS9)
 

Modified: trunk/patches/dev300/apply
==============================================================================
--- trunk/patches/dev300/apply	(original)
+++ trunk/patches/dev300/apply	Tue Jul  1 20:10:33 2008
@@ -941,6 +941,12 @@
 # fix evo2 driver build
 buildfix-connectivity-evoab2.diff, i#91025, pmladek
 
+# allow to get path also from ./file
+# otherwise, it installed the license files into ugly subdirectories
+# for example into <ooo-home>/LICENSE.html/LICENSE.html
+# even worse, the direcotry had the rights 444
+installer-get-path-correctly.diff, pmladek
+
 [ BuildBits < beb300-m1 ]
 # fix reportdesign build
 buildfix-system-jfreereport.diff, i#90952, rengelha

Added: trunk/patches/dev300/installer-get-path-correctly.diff
==============================================================================
--- (empty file)
+++ trunk/patches/dev300/installer-get-path-correctly.diff	Tue Jul  1 20:10:33 2008
@@ -0,0 +1,11 @@
+--- solenv/bin/modules/installer/pathanalyzer.pm.old	2008-04-10 19:11:27.000000000 +0200
++++ solenv/bin/modules/installer/pathanalyzer.pm	2008-07-01 21:58:30.000000000 +0200
+@@ -43,7 +43,7 @@ sub get_path_from_fullqualifiedname
+ 
+ 	if ( $$longfilenameref =~ /\Q$installer::globals::separator\E/ )	# Is there a separator in the path? Otherwise the path is empty.
+ 	{	
+-		if ( $$longfilenameref =~ /^\s*(\S.*\S\Q$installer::globals::separator\E)(\S.+\S?)/ )
++		if ( $$longfilenameref =~ /^\s*(.*\Q$installer::globals::separator\E)(.+)/ )
+ 		{
+ 			$$longfilenameref = $1;
+ 		}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]