Adapt prev 4f78696117ebe4f729880b5d9bfc2f5817b73543 to 3.5 rtl::OUString
[LibreOffice.git] / bin / distro-install-file-lists
blobd00d9eaa974cc523ec6fd57fa2acaf5d1fb03bbb
1 #!/bin/sh
3 . ./*[Ee]nv.[Hh]ost.sh
5 BUILDDIR=`pwd`
6 FILELISTSDIR="$BUILDDIR/file-lists"
8 # remove installed file even from the file list
9 # Params: file_list file_to_remove
10 remove_file()
12 rm -f "$DESTDIR/$2"
13 perl -pi -e "s|^$2$||" "$1"
16 # move one file from one list of files to a second one
17 # Params: target_file_list source_file_list file_to_move
18 mv_file_between_flists()
20 if grep "^$3\$" $2 >/dev/null 2>&1 ; then
21 # \$3 can be regular expression
22 grep "^$3\$" $2 >>$1
23 perl -pi -e "s|^$3$||" $2
26 # add the directories from the source list of files to the target list of
27 # file which are used in the target list of files but are missing there
28 # Params: target_file_list source_file_list
29 add_used_directories()
31 sort -u -r $2 | sed -n "s|^%dir \(.*\)\$|s%^\\\\(\1\\\\).*%\\\\1%p|p" >$2.pattern
32 sed -n -f $2.pattern $1 | sort -u | sed "s|^|%dir |" >>$1
33 rm $2.pattern
34 sort -u $1 >$1.unique
35 mv $1.unique $1
38 # remove a duplicity between two filelist
39 # Params: filelist_with_original filelist_with_duplicity duplicit_path
40 remove_duplicity_from_flists()
42 if grep "$3" "$1" >/dev/null 2>&1 && \
43 grep "$3" "$2" >/dev/null 2>&1 ; then
44 perl -pi -e "s|^$3$||" $2
48 # merges one file list into another one
49 # Params: source_filelist dest_filelist replace_dest
50 merge_flists()
52 if test -f "$1" ; then
53 cat "$1" >>"$2"
54 sort -u "$2" >"$2".sorted
55 mv "$2".sorted "$2"
59 if ! test -f $DESTDIR/gid_Module_Root; then
60 echo "Error: Failed to generate package file lists";
61 echo " Have you defined DESTDIR?"
62 exit 1;
66 rm -rf "$FILELISTSDIR"
67 mkdir -p "$FILELISTSDIR"
69 cd $DESTDIR
71 if test "z$OOO_VENDOR" != "zDebian" ; then
73 echo "Generating package file lists for $OOO_VENDOR..."
75 rm -f common_list.txt
76 for module in gid_Module_Root gid_Module_Root_Brand \
77 gid_Module_Root_Files_Images \
78 gid_Module_Root_Files_[0-9] \
79 gid_Module_Root_Hack \
80 gid_Module_Oo_Linguistic \
81 gid_Module_Root_Ure_Hidden ; do
82 merge_flists $module $FILELISTSDIR/common_list.txt
83 done
85 if test "$SPLIT_APP_MODULES" = "YES" ; then
86 merge_flists gid_Module_Prg_Base_Bin $FILELISTSDIR/base_list.txt
87 merge_flists gid_Module_Prg_Calc_Bin $FILELISTSDIR/calc_list.txt
88 merge_flists gid_Module_Prg_Draw_Bin $FILELISTSDIR/draw_list.txt
89 merge_flists gid_Module_Prg_Math_Bin $FILELISTSDIR/math_list.txt
90 merge_flists gid_Module_Prg_Impress_Bin $FILELISTSDIR/impress_list.txt
91 merge_flists gid_Module_Prg_Wrt_Bin $FILELISTSDIR/writer_list.txt
92 merge_flists gid_Module_Brand_Prg_Base $FILELISTSDIR/base_list.txt
93 merge_flists gid_Module_Brand_Prg_Calc $FILELISTSDIR/calc_list.txt
94 merge_flists gid_Module_Brand_Prg_Draw $FILELISTSDIR/draw_list.txt
95 merge_flists gid_Module_Brand_Prg_Math $FILELISTSDIR/math_list.txt
96 merge_flists gid_Module_Brand_Prg_Impress $FILELISTSDIR/impress_list.txt
97 merge_flists gid_Module_Brand_Prg_Wrt $FILELISTSDIR/writer_list.txt
98 # FIXME: small; low dependencies; why optional module?
99 merge_flists gid_Module_Optional_OGLTrans $FILELISTSDIR/impress_list.txt
100 else
101 merge_flists gid_Module_Prg_Base_Bin $FILELISTSDIR/common_list.txt
102 merge_flists gid_Module_Prg_Calc_Bin $FILELISTSDIR/common_list.txt
103 merge_flists gid_Module_Prg_Draw_Bin $FILELISTSDIR/common_list.txt
104 merge_flists gid_Module_Prg_Math_Bin $FILELISTSDIR/common_list.txt
105 merge_flists gid_Module_Prg_Impress_Bin $FILELISTSDIR/common_list.txt
106 merge_flists gid_Module_Prg_Wrt_Bin $FILELISTSDIR/common_list.txt
107 merge_flists gid_Module_Brand_Prg_Base $FILELISTSDIR/common_list.txt
108 merge_flists gid_Module_Brand_Prg_Calc $FILELISTSDIR/common_list.txt
109 merge_flists gid_Module_Brand_Prg_Draw $FILELISTSDIR/common_list.txt
110 merge_flists gid_Module_Brand_Prg_Math $FILELISTSDIR/common_list.txt
111 merge_flists gid_Module_Brand_Prg_Impress $FILELISTSDIR/common_list.txt
112 merge_flists gid_Module_Brand_Prg_Wrt $FILELISTSDIR/common_list.txt
113 # FIXME: small; low dependencies; why optional module?
114 merge_flists gid_Module_Optional_OGLTrans $FILELISTSDIR/common_list.txt
117 if test "$SPLIT_OPT_FEATURES" = "YES" ; then
118 if test "z$OOO_VENDOR" = "zMandriva" ; then
119 merge_flists gid_Module_Optional_Binfilter $FILELISTSDIR/filter-binfilter_list.txt
120 merge_flists gid_Module_Langpack_Binfilter_en_US $FILELISTSDIR/filter-binfilter_list.txt
121 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/draw_list.txt
122 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
123 merge_flists gid_Module_Optional_Javafilter $FILELISTSDIR/common_list.txt
124 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/pyuno_list.txt
125 merge_flists gid_Module_Optional_Pyuno $FILELISTSDIR/pyuno_list.txt
126 merge_flists gid_Module_Optional_Testtool $FILELISTSDIR/testtool_list.txt
127 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/common_list.txt
128 else
129 merge_flists gid_Module_Optional_Binfilter $FILELISTSDIR/filters_list.txt
130 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
131 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
132 merge_flists gid_Module_Optional_Javafilter $FILELISTSDIR/filters_list.txt
133 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/mailmerge_list.txt
134 merge_flists gid_Module_Optional_Pyuno $FILELISTSDIR/pyuno_list.txt
135 merge_flists gid_Module_Optional_Testtool $FILELISTSDIR/testtool_list.txt
136 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/filters_list.txt
138 else
139 merge_flists gid_Module_Optional_Binfilter $FILELISTSDIR/common_list.txt
140 merge_flists gid_Module_Langpack_Binfilter $FILELISTSDIR/common_list.txt
141 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
142 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
143 merge_flists gid_Module_Optional_Javafilter $FILELISTSDIR/common_list.txt
144 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/common_list.txt
145 merge_flists gid_Module_Optional_Pyuno $FILELISTSDIR/common_list.txt
146 merge_flists gid_Module_Optional_Testtool $FILELISTSDIR/common_list.txt
147 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/common_list.txt
150 # lang packs
151 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
152 lang_lists=
153 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "Novell, Inc." -a "$SPLIT_APP_MODULES" = "YES" \) ; then
154 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
155 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
156 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
157 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
158 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
159 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
160 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
161 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
162 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
163 test -f gid_Module_Langpack_Binfilter_$lang && lang_lists="$lang_lists gid_Module_Langpack_Binfilter_$lang" || :
164 # Place helps on dedicated packages.
165 test -f gid_Module_Helppack_Help_$lang && sort -u gid_Module_Helppack_Help_$lang > $FILELISTSDIR/help_${lang}_list.txt || :
166 else
167 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
168 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
169 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
170 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
171 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
172 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
173 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
174 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
175 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
176 test -f gid_Module_Langpack_Binfilter_$lang && lang_lists="$lang_lists gid_Module_Langpack_Binfilter_$lang" || :
177 test -f gid_Module_Helppack_Help_$lang && lang_lists="$lang_lists gid_Module_Helppack_Help_$lang" || :
179 if test -n "$lang_lists" ; then
180 # all files are installed below $INSTALLDIR/basis; we want to own also $INSTALLDIR
181 echo "%dir $INSTALLDIR" >$FILELISTSDIR/lang_${lang}_list.txt
182 cat $lang_lists | sort -u >>$FILELISTSDIR/lang_${lang}_list.txt
184 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
185 # move them from -l10n to -help
186 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "Novell, Inc." -a "$SPLIT_APP_MODULES" = "YES" \) ; then
187 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
188 test -f $FILELISTSDIR/help_${lang}_list.txt || continue;
189 mv_file_between_flists $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt $INSTALLDIR/help/.*
190 add_used_directories $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt
191 done
193 done
195 if test -f $FILELISTSDIR/lang_en_US_list.txt -a "$OOO_VENDOR" = "Novell, Inc." -a "$SPLIT_APP_MODULES" != "YES" ; then
196 cat $FILELISTSDIR/lang_en_US_list.txt >>$FILELISTSDIR/common_list.txt
197 rm $FILELISTSDIR/lang_en_US_list.txt
200 if test -f gid_Module_Root_SDK ; then
201 cp gid_Module_Root_SDK $FILELISTSDIR/sdk_list.txt
204 cd $FILELISTSDIR
206 # kde subpackage
207 test -f $DESTDIR/gid_Module_Optional_Kde && cp $DESTDIR/gid_Module_Optional_Kde kde_list.txt || :
208 mv_file_between_flists kde_list.txt common_list.txt $INSTALLDIR/program/kdefilepicker
209 mv_file_between_flists kde_list.txt common_list.txt $INSTALLDIR/program/fps_kde.uno.so
210 mv_file_between_flists kde_list.txt common_list.txt $INSTALLDIR/program/libvclplug_kdel..so
211 mv_file_between_flists kde_list.txt common_list.txt $INSTALLDIR/program/libkabdrv1.so
212 add_used_directories kde_list.txt common_list.txt
214 # create kde4 subpackage
215 mv_file_between_flists kde4_list.txt kde_list.txt $INSTALLDIR/program/kde4be1.uno.so
216 mv_file_between_flists kde4_list.txt common_list.txt $INSTALLDIR/program/libvclplug_kde4l..so
217 mv_file_between_flists kde4_list.txt common_list.txt $INSTALLDIR/program/fps_kde4.uno.so
218 add_used_directories kde4_list.txt common_list.txt
220 # gnome subpackage
221 test -f $DESTDIR/gid_Module_Optional_Gnome && cp $DESTDIR/gid_Module_Optional_Gnome gnome_list.txt || :
222 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libevoab2.so
223 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libvclplug_gtk[0-9]*l..so
224 mv_file_between_flists common_list.txt gnome_list.txt $INSTALLDIR/program/ucpgvfs1.uno.so
225 add_used_directories gnome_list.txt common_list.txt
227 # mono subpackage
228 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll
229 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll.config
230 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/policy.*.cli_.*.dll
231 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/ure/lib/cli_.*.dll
232 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/ure/lib/cli_.*.dll.config
233 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/ure/lib/policy.*.cli_.*.dll
234 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/ure/lib/libcli_.*.so
235 add_used_directories mono_list.txt common_list.txt
236 # add the files from GAC if it was installed
237 test -f mono_gac && cat mono_gac >>mono_list.txt
239 # mailmerge
240 if test "$SPLIT_OPT_FEATURES" = "YES" ; then
241 if test "z$OOO_VENDOR" = "zMandriva" ; then
242 flist=pyuno_list.txt
243 else
244 flist=mailmerge_list.txt
246 mv_file_between_flists $flist common_list.txt $INSTALLDIR/program/mailmerge.py
247 add_used_directories $flist common_list.txt
250 if test "z$OOO_VENDOR" = "zNovell" ; then
251 # officebean subpackage
252 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/classes/officebean.jar
253 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
254 add_used_directories officebean_list.txt common_list.txt
257 if test -f sdk_list.txt ; then
258 # in this case we move all entries including directories
259 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $DOCDIRBASE/sdk/docs.*"
260 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIRBASE/sdk/docs.*"
261 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIRBASE/sdk/examples"
262 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIRBASE/sdk/index.html"
263 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $INSTALLDIR/sdk/examples.*"
264 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/docs"
265 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/examples.*"
266 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/index.html"
267 add_used_directories sdk_doc_list.txt sdk_list.txt
270 if test "$OOO_VENDOR" = "Novell, Inc." -a "$SPLIT_APP_MODULES" = "YES" ; then
271 # move the prebuilt icons into a hacky temporary package
272 # we want to repack them into a noarch package as soon as possible
273 # without the build dependency on the huge devel package
274 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images_classic8.zip
275 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images_crystal.zip
276 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images_hicontrast.zip
277 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images_industrial.zip
278 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images_tango.zip
279 mv_file_between_flists icon_themes_prebuilt.txt common_list.txt $INSTALLDIR/share/config/images.zip
282 # Mandriva packaging
283 if test "$OOO_VENDOR" = "Mandriva"; then
284 # Not used
285 remove_file common_list.txt $INSTALLDIR/share/gallery/htmltheme.orig
286 remove_file common_list.txt $INSTALLDIR/share/dict/ooo/dictionary.lst
288 # And these are in -draw package
289 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_filters.xcu
290 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_types.xcu
292 # And these are in -impress package
293 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_impressgraphics_filters.xcu
294 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Types/fcfg_impressgraphics_types.xcu
296 # Split out the gallery
297 mv_file_between_flists gallery_list.txt common_list.txt "$INSTALLDIR/share/gallery.*"
298 test -r galleries.txt && cat galleries.txt >> gallery_list.txt
300 # Split out dtd-officedocument1.0
301 mv_file_between_flists dtd_list.txt common_list.txt "$INSTALLDIR/share/dtd/officedocument.*"
303 # Split out java stuff
304 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/JREProperties.class
305 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/program/classes.*"
306 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
307 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/share/Scripts/java.*"
308 mv_file_between_flists java_common_list.txt filter-binfilter_list.txt $INSTALLDIR/program/classes/aportisdoc.jar
309 mv_file_between_flists java_common_list.txt filter-binfilter_list.txt $INSTALLDIR/program/classes/pocketword.jar
310 mv_file_between_flists java_common_list.txt filter-binfilter_list.txt $INSTALLDIR/program/classes/pexcel.jar
311 mv_file_between_flists java_common_list.txt writer_list.txt $INSTALLDIR/program/classes/writer2latex.jar
313 # Move arch-dependent/dup files from common to core
314 for f in \
315 ".*\.so" \
316 ".*\.so\..*" \
317 "program/.*\.rdb" \
318 program/configimport.bin \
319 program/javaldx \
320 program/msfontextract \
321 program/nsplugin \
322 program/oosplash.bin \
323 program/pagein \
324 program/pagein-calc \
325 program/pagein-common \
326 program/pagein-draw \
327 program/pagein-impress \
328 program/pagein-writer \
329 program/pkgchk.bin \
330 program/pluginapp.bin \
331 program/setofficelang.bin \
332 program/soffice.bin \
333 program/spadmin.bin \
334 program/uno.bin \
335 program/unopkg.bin \
336 program/uri-encode
338 mv_file_between_flists core_list.txt common_list.txt "$INSTALLDIR/$f"
339 done
341 # Put gtk/gnome stuff into gnome package
342 mv_file_between_flists gnome_list.txt core_list.txt $INSTALLDIR/program/gnome-open-url.bin
343 mv_file_between_flists gnome_list.txt core_list.txt $INSTALLDIR/program/ucpgvfs1.uno.so
345 # Ship ooqstart for gnome in gnome package
346 mv_file_between_flists gnome_list.txt core_list.txt "$INSTALLDIR/program/libqstart_gtk680.*"
348 # themes are included in other packages
349 # don't use remove_file as we don't want them removed from the buildroot.
350 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_crystal.zip
351 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_hicontrast.zip
352 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_industrial.zip
353 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_tango.zip
354 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images.zip
357 # remove known duplicities to do not have files packaged in two packages
358 # the Bulgarian fixes can be removed after the issue #54110 is fixed
359 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/arrowhd.soe
360 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/classic.sog
361 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/hatching.soh
362 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/modern.sog
363 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/palette.soc
364 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/styles.sod
365 # the British fixes can be removed after the issue #54113 is fixed
366 remove_duplicity_from_flists common_list.txt lang_en-GB_list.txt $INSTALLDIR/presets/config/standard.sog
368 else
370 echo "Creating package directories..."
372 test -d pkg && rm -r pkg || :
374 # Create package tree (needed by Debian's dpkg)
375 # create_package_directory <list_file> <directory_name>
376 create_package_directory()
378 listfile=$1
379 directory="$2"
380 perl -nl \
381 -e " if(/^%dir (.*)/)
382 {system('mkdir', '-p', '-m', '755', \"$directory\".\$1);}
383 else
384 {rename('./'.\$_, \"$directory\".\$_);}
386 $listfile
389 create_package_directory gid_Module_Root_Ure_Hidden pkg/ure
391 create_package_directory gid_Module_Root pkg/libreoffice-common
392 create_package_directory gid_Module_Root_Brand pkg/libreoffice-common
393 create_package_directory gid_Module_Root_Files_Images pkg/libreoffice-common
394 create_package_directory gid_Module_Oo_Linguistic pkg/libreoffice-common
395 create_package_directory gid_Module_Optional_Xsltfiltersamples pkg/libreoffice-common
396 create_package_directory gid_Module_Optional_Javafilter pkg/libreoffice-common
397 if [ -f gid_Module_Optional_Binfilter ]; then
398 create_package_directory gid_Module_Optional_Binfilter pkg/libreoffice-filter-binfilter
400 create_package_directory gid_Module_Optional_Grfflt pkg/libreoffice-draw
401 create_package_directory gid_Module_Prg_Calc_Bin pkg/libreoffice-calc
402 create_package_directory gid_Module_Prg_Math_Bin pkg/libreoffice-math
403 create_package_directory gid_Module_Prg_Draw_Bin pkg/libreoffice-draw
404 create_package_directory gid_Module_Prg_Wrt_Bin pkg/libreoffice-writer
405 create_package_directory gid_Module_Prg_Impress_Bin pkg/libreoffice-impress
406 create_package_directory gid_Module_Prg_Base_Bin pkg/libreoffice-base
407 create_package_directory gid_Module_Brand_Prg_Calc pkg/libreoffice-calc
408 create_package_directory gid_Module_Brand_Prg_Math pkg/libreoffice-math
409 create_package_directory gid_Module_Brand_Prg_Draw pkg/libreoffice-draw
410 create_package_directory gid_Module_Brand_Prg_Wrt pkg/libreoffice-writer
411 create_package_directory gid_Module_Brand_Prg_Impress pkg/libreoffice-impress
412 create_package_directory gid_Module_Brand_Prg_Base pkg/libreoffice-base
413 create_package_directory gid_Module_Optional_Pyuno pkg/python-uno
414 create_package_directory gid_Module_Optional_Gnome pkg/libreoffice-gnome
415 create_package_directory gid_Module_Optional_Kde pkg/libreoffice-kde
417 create_package_directory gid_Module_Root_Files_2 pkg/libreoffice-common
418 create_package_directory gid_Module_Root_Files_3 pkg/libreoffice-common
419 create_package_directory gid_Module_Root_Files_4 pkg/libreoffice-common
420 create_package_directory gid_Module_Root_Files_5 pkg/libreoffice-common
421 create_package_directory gid_Module_Root_Files_6 pkg/libreoffice-common
422 create_package_directory gid_Module_Root_Files_7 pkg/libreoffice-common
423 create_package_directory gid_Module_Optional_Testtool pkg/libreoffice-qa-tools
424 if [ -e gid_Module_Optional_Pymailmerge ]; then
425 create_package_directory gid_Module_Optional_Pymailmerge pkg/libreoffice-emailmerge
426 else # post m26
427 mkdir -p pkg/libreoffice-emailmerge/$INSTALLDIR/program
428 mv pkg/libreoffice-common/$INSTALLDIR/program/mailmerge.py \
429 pkg/libreoffice-emailmerge/$INSTALLDIR/program/mailmerge.py
431 create_package_directory gid_Module_Optional_OGLTrans pkg/libreoffice-ogltrans
433 create_package_directory gid_Module_Root_SDK pkg/libreoffice-dev
435 for l in `echo $WITH_LANG_LIST`; do
436 for p in Impress Draw Math Calc Base Writer; do
437 create_package_directory gid_Module_Langpack_${p}_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
438 done
439 create_package_directory gid_Module_Langpack_Basis_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
440 create_package_directory gid_Module_Langpack_Brand_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
441 create_package_directory gid_Module_Langpack_Resource_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
442 create_package_directory gid_Module_Helppack_Help_`echo $l | sed -e s/-/_/g` pkg/libreoffice-help-$l
443 if [ -f gid_Module_Optional_Binfilter ]; then
444 if [ "$l" = "en-US" ]; then
445 create_package_directory gid_Module_Langpack_Binfilter_en_US pkg/libreoffice-filter-binfilter
446 else
447 create_package_directory gid_Module_Langpack_Binfilter_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
450 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
451 # move them from -l10n to -help
452 if [ "$l" = "en-US" ]; then d=en; else d=$l; fi
453 mv pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d/* \
454 pkg/libreoffice-help-$l/$INSTALLDIR/help/$d && \
455 rmdir pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d
456 done
458 # move_wrappers <directory_name> <name> [...]
459 move_wrappers()
461 directory=$1
462 shift
463 mkdir -m755 -p "$directory"/usr/bin
464 while test -n "$1"; do
465 mv usr/*bin/"$1$BINSUFFIX" "$directory"/usr/bin
466 shift
467 done
469 move_wrappers pkg/libreoffice-common soffice unopkg
470 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
471 move_wrappers pkg/libreoffice-common ooffice oofromtemplate
472 move_wrappers pkg/libreoffice-base oobase
473 move_wrappers pkg/libreoffice-writer oowriter ooweb
474 move_wrappers pkg/libreoffice-calc oocalc
475 move_wrappers pkg/libreoffice-impress ooimpress
476 move_wrappers pkg/libreoffice-math oomath
477 move_wrappers pkg/libreoffice-draw oodraw
479 move_wrappers pkg/libreoffice-common libreoffice lofromtemplate
480 move_wrappers pkg/libreoffice-base lobase
481 move_wrappers pkg/libreoffice-writer lowriter loweb
482 move_wrappers pkg/libreoffice-calc localc
483 move_wrappers pkg/libreoffice-impress loimpress
484 move_wrappers pkg/libreoffice-math lomath
485 move_wrappers pkg/libreoffice-draw lodraw
487 # Move all libraries, binaries, *.rdb from -common to -core
488 for d in $INSTALLDIR/program $INSTALLDIR/program; do \
489 if [ ! -d $DESTDIR/pkg/libreoffice-core/$d ]; then \
490 mkdir -p $DESTDIR/pkg/libreoffice-core/$d; \
491 fi &&
492 ( cd pkg/libreoffice-common/$d
493 find -maxdepth 1 \
494 -regex '\./\(.*\.so.*\|.*\.bin\|pagein\|nsplugin\|kdefilepicker\|msfontextract\|.*\.rdb\|javaldx\|uri-encode\)' \
495 -exec mv {} $DESTDIR/pkg/libreoffice-core/$d \;
496 ); \
497 done
499 # install additional ooo-build scripts & misc stuff
500 mkdir -p pkg/libreoffice-common/usr/share/man/man1
501 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
502 mv usr/share/man/man1/openoffice$BINSUFFIX.1 \
503 pkg/libreoffice-common/usr/share/man/man1
505 mv usr/share/man/man1/libreoffice$BINSUFFIX.1 \
506 pkg/libreoffice-common/usr/share/man/man1
507 mkdir -p pkg/libreoffice-common/etc/bash_completion.d
508 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
509 mv etc/bash_completion.d/ooffice$BINSUFFIX.sh \
510 pkg/libreoffice-common/etc/bash_completion.d
512 mv etc/bash_completion.d/libreoffice$BINSUFFIX.sh \
513 pkg/libreoffice-common/etc/bash_completion.d
514 mv .$INSTALLDIR/program/java-set-classpath \
515 pkg/libreoffice-common/$INSTALLDIR/program
516 if echo $WITH_LANG_LIST | grep -q en-US; then
517 for i in forms/resume.ott officorr/project-proposal.ott; do \
518 mkdir -p pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/`dirname $i`; \
519 mv .$INSTALLDIR/share/template/en-US/$i \
520 pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/$i; \
521 done; \
523 # Warn for any remaining files
524 find . -path './pkg' -prune -o -not -name 'gid_Module_*' -not -type d -exec echo "File not packaged: {}" \;
527 # mark the config files
528 RPM_CONFIG_FILE_TAGS=
529 if test "$OOO_VENDOR" = "Novell, Inc." -o "$OOO_VENDOR" = "RedHat"; then
530 RPM_CONFIG_FILE_TAGS="%config"
531 elif test "$OOO_VENDOR" = "PLD" ; then
532 RPM_CONFIG_FILE_TAGS="%config(noreplace) %verify(not md5 size mtime)"
535 if test "z$RPM_CONFIG_FILE_TAGS" != "z" ; then
536 cd $FILELISTSDIR
537 perl -pi -e "s|^($INSTALLDIR/help/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
538 -e "s|^($INSTALLDIR/help/.*\.css)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
539 -e "s|^($INSTALLDIR/program/[a-zA-Z0-9_\.]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
540 -e "s|^($INSTALLDIR/program/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
541 -e "s|^($INSTALLDIR/share/config/[a-zA-Z0-9]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
542 -e "s|^($INSTALLDIR/share/dict/ooo/.*\.lst)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
543 -e "s|^($INSTALLDIR/share/psprint/.*\.conf)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
544 -e "s|^($INSTALLDIR/share/registry/.*\.xcu)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
545 -e "s|^($INSTALLDIR/share/registry/.*\.properties)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
546 -e "s|^($INSTALLDIR/share/registry/.*\.xcs)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
547 -e "s|^($INSTALLDIR/user/config/.*\.so.)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
548 *_list.txt
551 mkdir -p $FILELISTSDIR/orig
552 mv -f $DESTDIR/gid_Module_* $FILELISTSDIR/orig