tdf#140086 svl: restore PasswordContainer to single-instance
[LibreOffice.git] / bin / distro-install-file-lists
blob34db93e0a08a329f6a3fd5a60f4a4a1091659ba7
1 #!/bin/sh
3 if test -z "${SRC_ROOT}"; then
4 echo "distro-install-clean-up: No environment set!"
5 exit 1
6 fi
8 BUILDDIR=`pwd`
9 FILELISTSDIR="$BUILDDIR/file-lists"
11 # remove installed file even from the file list
12 # Params: file_list file_to_remove
13 remove_file()
15 rm -f "$DESTDIR/$2"
16 perl -pi -e "s|^$2$||" "$1"
19 # move one file from one list of files to a second one
20 # Params: target_file_list source_file_list file_to_move
21 mv_file_between_flists()
23 if grep "^$3\$" $2 >/dev/null 2>&1 ; then
24 # \$3 can be regular expression
25 grep "^$3\$" $2 >>$1
26 perl -pi -e "s|^$3$||" $2
29 # add the directories from the source list of files to the target list of
30 # file which are used in the target list of files but are missing there
31 # Params: target_file_list source_file_list
32 add_used_directories()
34 sort -u -r $2 | sed -n "s|^%dir \(.*\)\$|s%^\\\\(\1\\\\).*%\\\\1%p|p" >$2.pattern
35 sed -n -f $2.pattern $1 | sort -u | sed "s|^|%dir |" >>$1
36 rm $2.pattern
37 sort -u $1 >$1.unique
38 mv $1.unique $1
41 # remove a duplicity between two filelist
42 # Params: filelist_with_original filelist_with_duplicity duplicit_path
43 remove_duplicity_from_flists()
45 if grep "$3" "$1" >/dev/null 2>&1 && \
46 grep "$3" "$2" >/dev/null 2>&1 ; then
47 perl -pi -e "s|^$3$||" $2
51 # merges one file list into another one
52 # Params: source_filelist dest_filelist replace_dest
53 merge_flists()
55 if test -f "$1" ; then
56 cat "$1" >>"$2"
57 sort -u "$2" >"$2".sorted
58 mv "$2".sorted "$2"
62 if ! test -f $DESTDIR/gid_Module_Root; then
63 echo "Error: Failed to generate package file lists";
64 echo " Have you defined DESTDIR?"
65 exit
69 rm -rf "$FILELISTSDIR"
70 mkdir -p "$FILELISTSDIR"
72 cd $DESTDIR
74 if test "z$OOO_VENDOR" != "zDebian" ; then
76 echo "Generating package file lists for $OOO_VENDOR..."
78 rm -f common_list.txt
79 for module in gid_Module_Root gid_Module_Root_Brand \
80 gid_Module_Root_Files_[0-9] \
81 gid_Module_Root_Hack \
82 gid_Module_Oo_Linguistic \
83 gid_Module_Root_Extension_Dictionary_* \
84 gid_Module_Root_Ure_Hidden ; do
85 merge_flists $module $FILELISTSDIR/common_list.txt
86 done
88 # it is not a real extension; it used to be in the main package...
89 merge_flists gid_Module_Optional_Extensions_Script_Provider_For_JS $FILELISTSDIR/common_list.txt
91 if test "$SPLIT_APP_MODULES" = "TRUE" ; then
92 merge_flists gid_Module_Prg_Base_Bin $FILELISTSDIR/base_list.txt
93 merge_flists gid_Module_Prg_Calc_Bin $FILELISTSDIR/calc_list.txt
94 merge_flists gid_Module_Prg_Draw_Bin $FILELISTSDIR/draw_list.txt
95 merge_flists gid_Module_Prg_Math_Bin $FILELISTSDIR/math_list.txt
96 merge_flists gid_Module_Prg_Impress_Bin $FILELISTSDIR/impress_list.txt
97 merge_flists gid_Module_Prg_Wrt_Bin $FILELISTSDIR/writer_list.txt
98 merge_flists gid_Module_Brand_Prg_Base $FILELISTSDIR/base_list.txt
99 merge_flists gid_Module_Brand_Prg_Calc $FILELISTSDIR/calc_list.txt
100 merge_flists gid_Module_Brand_Prg_Draw $FILELISTSDIR/draw_list.txt
101 merge_flists gid_Module_Brand_Prg_Math $FILELISTSDIR/math_list.txt
102 merge_flists gid_Module_Brand_Prg_Impress $FILELISTSDIR/impress_list.txt
103 merge_flists gid_Module_Brand_Prg_Wrt $FILELISTSDIR/writer_list.txt
104 merge_flists gid_Module_Reportbuilder $FILELISTSDIR/base_list.txt
105 merge_flists gid_Module_Pdfimport $FILELISTSDIR/draw_list.txt
107 # FIXME: small; low dependencies; why optional module?
108 merge_flists gid_Module_Optional_OGLTrans $FILELISTSDIR/impress_list.txt
109 else
110 merge_flists gid_Module_Prg_Base_Bin $FILELISTSDIR/common_list.txt
111 merge_flists gid_Module_Prg_Calc_Bin $FILELISTSDIR/common_list.txt
112 merge_flists gid_Module_Prg_Draw_Bin $FILELISTSDIR/common_list.txt
113 merge_flists gid_Module_Prg_Math_Bin $FILELISTSDIR/common_list.txt
114 merge_flists gid_Module_Prg_Impress_Bin $FILELISTSDIR/common_list.txt
115 merge_flists gid_Module_Prg_Wrt_Bin $FILELISTSDIR/common_list.txt
116 merge_flists gid_Module_Brand_Prg_Base $FILELISTSDIR/common_list.txt
117 merge_flists gid_Module_Brand_Prg_Calc $FILELISTSDIR/common_list.txt
118 merge_flists gid_Module_Brand_Prg_Draw $FILELISTSDIR/common_list.txt
119 merge_flists gid_Module_Brand_Prg_Math $FILELISTSDIR/common_list.txt
120 merge_flists gid_Module_Brand_Prg_Impress $FILELISTSDIR/common_list.txt
121 merge_flists gid_Module_Brand_Prg_Wrt $FILELISTSDIR/common_list.txt
122 merge_flists gid_Module_Reportbuilder $FILELISTSDIR/common_list.txt
123 merge_flists gid_Module_Pdfimport $FILELISTSDIR/common_list.txt
124 # FIXME: small; low dependencies; why optional module?
125 merge_flists gid_Module_Optional_OGLTrans $FILELISTSDIR/common_list.txt
128 if test "$SPLIT_APP_MODULES" = "TRUE" -a "$OOO_VENDOR" = "SUSE" ; then
129 # move the prebuilt icons into a hacky temporary package
130 # we want to repack them into a noarch package as soon as possible
131 # without the build dependency on the huge devel package
132 merge_flists gid_Module_Root_Files_Images $FILELISTSDIR/icon_themes_prebuilt.txt
133 else
134 merge_flists gid_Module_Root_Files_Images $FILELISTSDIR/common_list.txt
137 if test "$SPLIT_OPT_FEATURES" = "TRUE" ; then
138 if test "z$OOO_VENDOR" = "zMandriva" ; then
139 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/draw_list.txt
140 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
141 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/pyuno_list.txt
142 merge_flists gid_Module_Pyuno $FILELISTSDIR/pyuno_list.txt
143 merge_flists gid_Module_Script_Provider_For_Python $FILELISTSDIR/pyuno_list.txt
144 merge_flists gid_Module_Optional_Pyuno_LibreLogo $FILELISTSDIR/pyuno_list.txt
145 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/common_list.txt
146 else
147 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
148 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
149 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/mailmerge_list.txt
150 merge_flists gid_Module_Pyuno $FILELISTSDIR/pyuno_list.txt
151 merge_flists gid_Module_Optional_Pyuno_LibreLogo $FILELISTSDIR/pyuno_list.txt
152 merge_flists gid_Module_Script_Provider_For_Python $FILELISTSDIR/pyuno_list.txt
153 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/filters_list.txt
155 else
156 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
157 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
158 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/common_list.txt
159 merge_flists gid_Module_Pyuno $FILELISTSDIR/common_list.txt
160 merge_flists gid_Module_Optional_Pyuno_LibreLogo $FILELISTSDIR/common_list.txt
161 merge_flists gid_Module_Script_Provider_For_Python $FILELISTSDIR/common_list.txt
162 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/common_list.txt
165 # lang packs
166 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
167 lang_lists=
168 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" = "TRUE" \) ; then
169 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
170 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
171 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
172 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
173 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
174 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
175 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
176 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
177 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
178 # Place helps on dedicated packages.
179 test -f gid_Module_Helppack_Help_$lang && sort -u gid_Module_Helppack_Help_$lang > $FILELISTSDIR/help_${lang}_list.txt || :
180 else
181 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
182 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
183 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
184 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
185 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
186 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
187 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
188 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
189 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
190 test -f gid_Module_Helppack_Help_$lang && lang_lists="$lang_lists gid_Module_Helppack_Help_$lang" || :
192 if test -n "$lang_lists" ; then
193 # all files are installed below $INSTALLDIR/basis; we want to own also $INSTALLDIR
194 echo "%dir $INSTALLDIR" >$FILELISTSDIR/lang_${lang}_list.txt
195 cat $lang_lists | sort -u >>$FILELISTSDIR/lang_${lang}_list.txt
197 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
198 # move them from -l10n to -help
199 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" = "TRUE" \) ; then
200 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
201 test -f $FILELISTSDIR/help_${lang}_list.txt || continue;
202 mv_file_between_flists $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt $INSTALLDIR/help/.*
203 add_used_directories $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt
204 done
206 done
208 if test -f $FILELISTSDIR/lang_en_US_list.txt -a "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" != "TRUE" ; then
209 cat $FILELISTSDIR/lang_en_US_list.txt >>$FILELISTSDIR/common_list.txt
210 rm $FILELISTSDIR/lang_en_US_list.txt
213 if test -f gid_Module_Root_SDK ; then
214 cp gid_Module_Root_SDK $FILELISTSDIR/sdk_list.txt
217 cd $FILELISTSDIR
219 # gnome subpackage
220 test -f $DESTDIR/gid_Module_Optional_Gnome && cp $DESTDIR/gid_Module_Optional_Gnome gnome_list.txt || :
221 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libevoab2.so
222 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libvclplug_gtk[0-9]*l..so
223 add_used_directories gnome_list.txt common_list.txt
225 # mono subpackage
226 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll
227 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll.config
228 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/policy.*.cli_.*.dll
229 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll
230 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll.config
231 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/policy.*.cli_.*.dll
232 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/libcli_.*.so
233 add_used_directories mono_list.txt common_list.txt
234 # add the files from GAC if it was installed
235 test -f mono_gac && cat mono_gac >>mono_list.txt
237 # postgresql subpackage
238 test -f $DESTDIR/gid_Module_Optional_PostgresqlSdbc && cp $DESTDIR/gid_Module_Optional_PostgresqlSdbc postgresql_list.txt || :
240 # mailmerge
241 if test "$SPLIT_OPT_FEATURES" = "TRUE" ; then
242 if test "z$OOO_VENDOR" = "zMandriva" ; then
243 flist=pyuno_list.txt
244 else
245 flist=mailmerge_list.txt
247 mv_file_between_flists $flist common_list.txt $INSTALLDIR/program/mailmerge.py
248 add_used_directories $flist common_list.txt
251 if test "z$OOO_VENDOR" = "zSUSE" ; then
252 # officebean subpackage
253 test -f $DESTDIR/gid_Module_Optional_Extensions_Script_Provider_For_BS && cp $DESTDIR/gid_Module_Optional_Extensions_Script_Provider_For_BS officebean_list.txt || :
254 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/classes/officebean.jar
255 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
256 add_used_directories officebean_list.txt common_list.txt
259 if test -f sdk_list.txt ; then
260 # in this case we move all entries including directories
261 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $DOCDIR/sdk/docs.*"
262 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/docs.*"
263 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/examples"
264 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/index.html"
265 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $INSTALLDIR/sdk/examples.*"
266 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/docs"
267 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/examples.*"
268 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/index.html"
269 add_used_directories sdk_doc_list.txt sdk_list.txt
273 # Mandriva packaging
274 if test "$OOO_VENDOR" = "Mandriva"; then
275 # Not used
276 remove_file common_list.txt $INSTALLDIR/share/gallery/htmltheme.orig
277 remove_file common_list.txt $INSTALLDIR/share/dict/ooo/dictionary.lst
279 # And these are in -draw package
280 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_filters.xcu
281 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_types.xcu
283 # And these are in -impress package
284 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_impressgraphics_filters.xcu
285 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Types/fcfg_impressgraphics_types.xcu
287 # Split out the gallery
288 mv_file_between_flists gallery_list.txt common_list.txt "$INSTALLDIR/share/gallery.*"
289 test -r galleries.txt && cat galleries.txt >> gallery_list.txt
291 # Split out dtd-officedocument1.0
292 mv_file_between_flists dtd_list.txt common_list.txt "$INSTALLDIR/share/dtd/officedocument.*"
294 # Split out java stuff
295 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/JREProperties.class
296 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/program/classes.*"
297 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
298 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/share/Scripts/java.*"
299 mv_file_between_flists java_common_list.txt writer_list.txt $INSTALLDIR/program/classes/writer2latex.jar
301 # Move arch-dependent/dup files from common to core
302 for f in \
303 ".*\.so" \
304 ".*\.so\..*" \
305 "program/.*\.rdb" \
306 program/configimport.bin \
307 program/javaldx \
308 program/msfontextract \
309 program/oosplash.bin \
310 program/pagein \
311 program/pagein-calc \
312 program/pagein-common \
313 program/pagein-draw \
314 program/pagein-impress \
315 program/pagein-writer \
316 program/pkgchk.bin \
317 program/pluginapp.bin \
318 program/setofficelang.bin \
319 program/soffice.bin \
320 program/uno.bin \
321 program/unopkg.bin \
322 program/uri-encode
324 mv_file_between_flists core_list.txt common_list.txt "$INSTALLDIR/$f"
325 done
327 # themes are included in other packages
328 # don't use remove_file as we don't want them removed from the buildroot.
329 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_crystal.zip
330 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_hicontrast.zip
331 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images.zip
334 # remove known duplicities to do not have files packaged in two packages
335 # the Bulgarian fixes can be removed after the issue #54110 is fixed
336 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/arrowhd.soe
337 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/classic.sog
338 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/hatching.soh
339 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/modern.sog
340 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/palette.soc
341 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/styles.sod
342 # the British fixes can be removed after the issue #54113 is fixed
343 remove_duplicity_from_flists common_list.txt lang_en-GB_list.txt $INSTALLDIR/presets/config/standard.sog
345 else
347 echo "Creating package directories..."
349 test -d pkg && rm -r pkg || :
351 # Create package tree (needed by Debian's dpkg)
352 # create_package_directory <list_file> <directory_name>
353 create_package_directory()
355 listfile=$1
356 directory="$2"
357 perl -nl \
358 -e " if(/^%dir (.*)/)
359 {system('mkdir', '-p', '-m', '755', \"$directory\".\$1);}
360 else
361 {rename('./'.\$_, \"$directory\".\$_);}
363 $listfile
366 create_package_directory gid_Module_Root_Ure_Hidden pkg/ure
368 create_package_directory gid_Module_Root pkg/libreoffice-common
369 create_package_directory gid_Module_Root_Brand pkg/libreoffice-common
370 create_package_directory gid_Module_Root_Files_Images pkg/libreoffice-common
371 create_package_directory gid_Module_Oo_Linguistic pkg/libreoffice-common
372 create_package_directory gid_Module_Optional_Xsltfiltersamples pkg/libreoffice-common
373 create_package_directory gid_Module_Optional_Grfflt pkg/libreoffice-draw
374 create_package_directory gid_Module_Prg_Calc_Bin pkg/libreoffice-calc
375 create_package_directory gid_Module_Prg_Math_Bin pkg/libreoffice-math
376 create_package_directory gid_Module_Prg_Draw_Bin pkg/libreoffice-draw
377 create_package_directory gid_Module_Prg_Wrt_Bin pkg/libreoffice-writer
378 create_package_directory gid_Module_Prg_Impress_Bin pkg/libreoffice-impress
379 create_package_directory gid_Module_Prg_Base_Bin pkg/libreoffice-base
380 create_package_directory gid_Module_Brand_Prg_Calc pkg/libreoffice-calc
381 create_package_directory gid_Module_Brand_Prg_Math pkg/libreoffice-math
382 create_package_directory gid_Module_Brand_Prg_Draw pkg/libreoffice-draw
383 create_package_directory gid_Module_Brand_Prg_Wrt pkg/libreoffice-writer
384 create_package_directory gid_Module_Brand_Prg_Impress pkg/libreoffice-impress
385 create_package_directory gid_Module_Brand_Prg_Base pkg/libreoffice-base
386 create_package_directory gid_Module_Pyuno pkg/python-uno
387 create_package_directory gid_Module_Optional_Gnome pkg/libreoffice-gnome
389 create_package_directory gid_Module_Root_Files_2 pkg/libreoffice-common
390 create_package_directory gid_Module_Root_Files_3 pkg/libreoffice-common
391 create_package_directory gid_Module_Root_Files_4 pkg/libreoffice-common
392 create_package_directory gid_Module_Root_Files_5 pkg/libreoffice-common
393 create_package_directory gid_Module_Root_Files_6 pkg/libreoffice-common
394 create_package_directory gid_Module_Root_Files_7 pkg/libreoffice-common
395 if [ -e gid_Module_Optional_Pymailmerge ]; then
396 create_package_directory gid_Module_Optional_Pymailmerge pkg/libreoffice-emailmerge
397 else # post m26
398 mkdir -p pkg/libreoffice-emailmerge/$INSTALLDIR/program
399 mv pkg/libreoffice-common/$INSTALLDIR/program/mailmerge.py \
400 pkg/libreoffice-emailmerge/$INSTALLDIR/program/mailmerge.py
402 create_package_directory gid_Module_Optional_OGLTrans pkg/libreoffice-ogltrans
404 create_package_directory gid_Module_Root_SDK pkg/libreoffice-dev
406 for l in `echo $WITH_LANG_LIST`; do
407 for p in Impress Draw Math Calc Base Writer; do
408 create_package_directory gid_Module_Langpack_${p}_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
409 done
410 create_package_directory gid_Module_Langpack_Basis_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
411 create_package_directory gid_Module_Langpack_Brand_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
412 create_package_directory gid_Module_Langpack_Resource_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
413 create_package_directory gid_Module_Helppack_Help_`echo $l | sed -e s/-/_/g` pkg/libreoffice-help-$l
415 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
416 # move them from -l10n to -help
417 if [ "$l" = "en-US" ]; then d=en; else d=$l; fi
418 mv pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d/* \
419 pkg/libreoffice-help-$l/$INSTALLDIR/help/$d && \
420 rmdir pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d
421 done
423 # move_wrappers <directory_name> <name> [...]
424 move_wrappers()
426 directory=$1
427 shift
428 mkdir -m755 -p "$directory"/usr/bin
429 while test -n "$1"; do
430 mv usr/*bin/"$1$BINSUFFIX" "$directory"/usr/bin
431 shift
432 done
434 move_wrappers pkg/libreoffice-common soffice unopkg
435 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
436 move_wrappers pkg/libreoffice-common ooffice oofromtemplate
437 move_wrappers pkg/libreoffice-base oobase
438 move_wrappers pkg/libreoffice-writer oowriter ooweb
439 move_wrappers pkg/libreoffice-calc oocalc
440 move_wrappers pkg/libreoffice-impress ooimpress
441 move_wrappers pkg/libreoffice-math oomath
442 move_wrappers pkg/libreoffice-draw oodraw
444 move_wrappers pkg/libreoffice-common libreoffice lofromtemplate
445 move_wrappers pkg/libreoffice-base lobase
446 move_wrappers pkg/libreoffice-writer lowriter loweb
447 move_wrappers pkg/libreoffice-calc localc
448 move_wrappers pkg/libreoffice-impress loimpress
449 move_wrappers pkg/libreoffice-math lomath
450 move_wrappers pkg/libreoffice-draw lodraw
452 # Move all libraries, binaries, *.rdb from -common to -core
453 for d in $INSTALLDIR/program $INSTALLDIR/program; do \
454 if [ ! -d $DESTDIR/pkg/libreoffice-core/$d ]; then \
455 mkdir -p $DESTDIR/pkg/libreoffice-core/$d; \
456 fi &&
457 ( cd pkg/libreoffice-common/$d
458 find -maxdepth 1 \
459 -regex '\./\(.*\.so.*\|.*\.bin\|pagein\|msfontextract\|.*\.rdb\|javaldx\|uri-encode\)' \
460 -exec mv {} $DESTDIR/pkg/libreoffice-core/$d \;
461 ); \
462 done
464 # install additional ooo-build scripts & misc stuff
465 mkdir -p pkg/libreoffice-common/usr/share/man/man1
466 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
467 mv usr/share/man/man1/openoffice$BINSUFFIX.1 \
468 pkg/libreoffice-common/usr/share/man/man1
470 mv usr/share/man/man1/libreoffice$BINSUFFIX.1 \
471 pkg/libreoffice-common/usr/share/man/man1
472 mkdir -p pkg/libreoffice-common/etc/bash_completion.d
473 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
474 mv etc/bash_completion.d/ooffice$BINSUFFIX.sh \
475 pkg/libreoffice-common/etc/bash_completion.d
477 mv etc/bash_completion.d/libreoffice$BINSUFFIX.sh \
478 pkg/libreoffice-common/etc/bash_completion.d
479 mv .$INSTALLDIR/program/java-set-classpath \
480 pkg/libreoffice-common/$INSTALLDIR/program
481 if echo $WITH_LANG_LIST | grep -q en-US; then
482 for i in forms/resume.ott officorr/project-proposal.ott; do \
483 mkdir -p pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/`dirname $i`; \
484 mv .$INSTALLDIR/share/template/en-US/$i \
485 pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/$i; \
486 done; \
488 # Warn for any remaining files
489 find . -path './pkg' -prune -o -not -name 'gid_Module_*' -not -type d -exec echo "File not packaged: {}" \;
492 # mark the config files
493 RPM_CONFIG_FILE_TAGS=
494 if test "$OOO_VENDOR" = "SUSE" -o "$OOO_VENDOR" = "RedHat"; then
495 RPM_CONFIG_FILE_TAGS="%config"
496 elif test "$OOO_VENDOR" = "PLD" ; then
497 RPM_CONFIG_FILE_TAGS="%config(noreplace) %verify(not md5 size mtime)"
500 if test "z$RPM_CONFIG_FILE_TAGS" != "z" ; then
501 cd $FILELISTSDIR
502 perl -pi -e "s|^($INSTALLDIR/help/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
503 -e "s|^($INSTALLDIR/help/.*\.css)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
504 -e "s|^($INSTALLDIR/program/[a-zA-Z0-9_\.]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
505 -e "s|^($INSTALLDIR/program/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
506 -e "s|^($INSTALLDIR/share/config/[a-zA-Z0-9]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
507 -e "s|^($INSTALLDIR/share/dict/ooo/.*\.lst)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
508 -e "s|^($INSTALLDIR/share/psprint/.*\.conf)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
509 -e "s|^($INSTALLDIR/share/registry/.*\.xcu)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
510 -e "s|^($INSTALLDIR/share/registry/.*\.properties)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
511 -e "s|^($INSTALLDIR/share/registry/.*\.xcs)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
512 -e "s|^($INSTALLDIR/user/config/.*\.so.)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
513 *_list.txt
516 mkdir -p $FILELISTSDIR/orig
517 mv -f $DESTDIR/gid_Module_* $FILELISTSDIR/orig