Teach symstore more duplicated DLLs
[LibreOffice.git] / bin / distro-install-file-lists
blobd4c217586827a7b4b70c2f900f1b6e7c4b2f6458
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_Xsltfiltersamples $FILELISTSDIR/common_list.txt
145 else
146 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
147 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
148 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/mailmerge_list.txt
149 merge_flists gid_Module_Pyuno $FILELISTSDIR/pyuno_list.txt
150 merge_flists gid_Module_Script_Provider_For_Python $FILELISTSDIR/pyuno_list.txt
151 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/filters_list.txt
153 else
154 merge_flists gid_Module_Optional_Grfflt $FILELISTSDIR/common_list.txt
155 merge_flists gid_Module_Optional_Headless $FILELISTSDIR/common_list.txt
156 merge_flists gid_Module_Optional_Pymailmerge $FILELISTSDIR/common_list.txt
157 merge_flists gid_Module_Pyuno $FILELISTSDIR/common_list.txt
158 merge_flists gid_Module_Script_Provider_For_Python $FILELISTSDIR/common_list.txt
159 merge_flists gid_Module_Optional_Xsltfiltersamples $FILELISTSDIR/common_list.txt
162 # lang packs
163 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
164 lang_lists=
165 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" = "TRUE" \) ; then
166 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
167 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
168 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
169 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
170 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
171 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
172 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
173 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
174 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
175 # Place helps on dedicated packages.
176 test -f gid_Module_Helppack_Help_$lang && sort -u gid_Module_Helppack_Help_$lang > $FILELISTSDIR/help_${lang}_list.txt || :
177 else
178 test -f gid_Module_Langpack_Basis_$lang && lang_lists="$lang_lists gid_Module_Langpack_Basis_$lang" || :
179 test -f gid_Module_Langpack_Brand_$lang && lang_lists="$lang_lists gid_Module_Langpack_Brand_$lang" || :
180 test -f gid_Module_Langpack_Resource_$lang && lang_lists="$lang_lists gid_Module_Langpack_Resource_$lang" || :
181 test -f gid_Module_Langpack_Impress_$lang && lang_lists="$lang_lists gid_Module_Langpack_Impress_$lang" || :
182 test -f gid_Module_Langpack_Draw_$lang && lang_lists="$lang_lists gid_Module_Langpack_Draw_$lang" || :
183 test -f gid_Module_Langpack_Math_$lang && lang_lists="$lang_lists gid_Module_Langpack_Math_$lang" || :
184 test -f gid_Module_Langpack_Calc_$lang && lang_lists="$lang_lists gid_Module_Langpack_Calc_$lang" || :
185 test -f gid_Module_Langpack_Base_$lang && lang_lists="$lang_lists gid_Module_Langpack_Base_$lang" || :
186 test -f gid_Module_Langpack_Writer_$lang && lang_lists="$lang_lists gid_Module_Langpack_Writer_$lang" || :
187 test -f gid_Module_Helppack_Help_$lang && lang_lists="$lang_lists gid_Module_Helppack_Help_$lang" || :
189 if test -n "$lang_lists" ; then
190 # all files are installed below $INSTALLDIR/basis; we want to own also $INSTALLDIR
191 echo "%dir $INSTALLDIR" >$FILELISTSDIR/lang_${lang}_list.txt
192 cat $lang_lists | sort -u >>$FILELISTSDIR/lang_${lang}_list.txt
194 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
195 # move them from -l10n to -help
196 if test "$OOO_VENDOR" = "Mandriva" -o \( "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" = "TRUE" \) ; then
197 for lang in `echo $WITH_LANG_LIST | sed -e s/-/_/g`; do
198 test -f $FILELISTSDIR/help_${lang}_list.txt || continue;
199 mv_file_between_flists $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt $INSTALLDIR/help/.*
200 add_used_directories $FILELISTSDIR/help_${lang}_list.txt $FILELISTSDIR/lang_${lang}_list.txt
201 done
203 done
205 if test -f $FILELISTSDIR/lang_en_US_list.txt -a "$OOO_VENDOR" = "SUSE" -a "$SPLIT_APP_MODULES" != "TRUE" ; then
206 cat $FILELISTSDIR/lang_en_US_list.txt >>$FILELISTSDIR/common_list.txt
207 rm $FILELISTSDIR/lang_en_US_list.txt
210 if test -f gid_Module_Root_SDK ; then
211 cp gid_Module_Root_SDK $FILELISTSDIR/sdk_list.txt
214 cd $FILELISTSDIR
216 # gnome subpackage
217 test -f $DESTDIR/gid_Module_Optional_Gnome && cp $DESTDIR/gid_Module_Optional_Gnome gnome_list.txt || :
218 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libevoab2.so
219 mv_file_between_flists gnome_list.txt common_list.txt $INSTALLDIR/program/libvclplug_gtk[0-9]*l..so
220 add_used_directories gnome_list.txt common_list.txt
222 # mono subpackage
223 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll
224 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/cli_.*.dll.config
225 mv_file_between_flists mono_list.txt common_list.txt $INSTALLDIR/program/policy.*.cli_.*.dll
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/libcli_.*.so
230 add_used_directories mono_list.txt common_list.txt
231 # add the files from GAC if it was installed
232 test -f mono_gac && cat mono_gac >>mono_list.txt
234 # postgresql subpackage
235 test -f $DESTDIR/gid_Module_Optional_PostgresqlSdbc && cp $DESTDIR/gid_Module_Optional_PostgresqlSdbc postgresql_list.txt || :
237 # mailmerge
238 if test "$SPLIT_OPT_FEATURES" = "TRUE" ; then
239 if test "z$OOO_VENDOR" = "zMandriva" ; then
240 flist=pyuno_list.txt
241 else
242 flist=mailmerge_list.txt
244 mv_file_between_flists $flist common_list.txt $INSTALLDIR/program/mailmerge.py
245 add_used_directories $flist common_list.txt
248 if test "z$OOO_VENDOR" = "zSUSE" ; then
249 # officebean subpackage
250 test -f $DESTDIR/gid_Module_Optional_Extensions_Script_Provider_For_BS && cp $DESTDIR/gid_Module_Optional_Extensions_Script_Provider_For_BS officebean_list.txt || :
251 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/classes/officebean.jar
252 mv_file_between_flists officebean_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
253 add_used_directories officebean_list.txt common_list.txt
256 if test -f sdk_list.txt ; then
257 # in this case we move all entries including directories
258 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $DOCDIR/sdk/docs.*"
259 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/docs.*"
260 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/examples"
261 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$DOCDIR/sdk/index.html"
262 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "%dir $INSTALLDIR/sdk/examples.*"
263 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/docs"
264 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/examples.*"
265 mv_file_between_flists sdk_doc_list.txt sdk_list.txt "$INSTALLDIR/sdk/index.html"
266 add_used_directories sdk_doc_list.txt sdk_list.txt
270 # Mandriva packaging
271 if test "$OOO_VENDOR" = "Mandriva"; then
272 # Not used
273 remove_file common_list.txt $INSTALLDIR/share/gallery/htmltheme.orig
274 remove_file common_list.txt $INSTALLDIR/share/dict/ooo/dictionary.lst
276 # And these are in -draw package
277 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_filters.xcu
278 mv_file_between_flists draw_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_drawgraphics_types.xcu
280 # And these are in -impress package
281 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Filter/fcfg_impressgraphics_filters.xcu
282 mv_file_between_flists impress_list.txt common_list.txt $INSTALLDIR/share/registry/modules/org/openoffice/TypeDetection/Types/fcfg_impressgraphics_types.xcu
284 # Split out the gallery
285 mv_file_between_flists gallery_list.txt common_list.txt "$INSTALLDIR/share/gallery.*"
286 test -r galleries.txt && cat galleries.txt >> gallery_list.txt
288 # Split out dtd-officedocument1.0
289 mv_file_between_flists dtd_list.txt common_list.txt "$INSTALLDIR/share/dtd/officedocument.*"
291 # Split out java stuff
292 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/JREProperties.class
293 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/program/classes.*"
294 mv_file_between_flists java_common_list.txt common_list.txt $INSTALLDIR/program/libofficebean.so
295 mv_file_between_flists java_common_list.txt common_list.txt "$INSTALLDIR/share/Scripts/java.*"
296 mv_file_between_flists java_common_list.txt writer_list.txt $INSTALLDIR/program/classes/writer2latex.jar
298 # Move arch-dependent/dup files from common to core
299 for f in \
300 ".*\.so" \
301 ".*\.so\..*" \
302 "program/.*\.rdb" \
303 program/configimport.bin \
304 program/javaldx \
305 program/msfontextract \
306 program/oosplash.bin \
307 program/pagein \
308 program/pagein-calc \
309 program/pagein-common \
310 program/pagein-draw \
311 program/pagein-impress \
312 program/pagein-writer \
313 program/pkgchk.bin \
314 program/pluginapp.bin \
315 program/setofficelang.bin \
316 program/soffice.bin \
317 program/uno.bin \
318 program/unopkg.bin \
319 program/uri-encode
321 mv_file_between_flists core_list.txt common_list.txt "$INSTALLDIR/$f"
322 done
324 # themes are included in other packages
325 # don't use remove_file as we don't want them removed from the buildroot.
326 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_crystal.zip
327 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_hicontrast.zip
328 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images_tango.zip
329 mv_file_between_flists /dev/null common_list.txt $INSTALLDIR/share/config/images.zip
332 # remove known duplicities to do not have files packaged in two packages
333 # the Bulgarian fixes can be removed after the issue #54110 is fixed
334 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/arrowhd.soe
335 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/classic.sog
336 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/hatching.soh
337 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/modern.sog
338 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/palette.soc
339 remove_duplicity_from_flists common_list.txt lang_bg_list.txt $INSTALLDIR/presets/config/styles.sod
340 # the British fixes can be removed after the issue #54113 is fixed
341 remove_duplicity_from_flists common_list.txt lang_en-GB_list.txt $INSTALLDIR/presets/config/standard.sog
343 else
345 echo "Creating package directories..."
347 test -d pkg && rm -r pkg || :
349 # Create package tree (needed by Debian's dpkg)
350 # create_package_directory <list_file> <directory_name>
351 create_package_directory()
353 listfile=$1
354 directory="$2"
355 perl -nl \
356 -e " if(/^%dir (.*)/)
357 {system('mkdir', '-p', '-m', '755', \"$directory\".\$1);}
358 else
359 {rename('./'.\$_, \"$directory\".\$_);}
361 $listfile
364 create_package_directory gid_Module_Root_Ure_Hidden pkg/ure
366 create_package_directory gid_Module_Root pkg/libreoffice-common
367 create_package_directory gid_Module_Root_Brand pkg/libreoffice-common
368 create_package_directory gid_Module_Root_Files_Images pkg/libreoffice-common
369 create_package_directory gid_Module_Oo_Linguistic pkg/libreoffice-common
370 create_package_directory gid_Module_Optional_Xsltfiltersamples pkg/libreoffice-common
371 create_package_directory gid_Module_Optional_Grfflt pkg/libreoffice-draw
372 create_package_directory gid_Module_Prg_Calc_Bin pkg/libreoffice-calc
373 create_package_directory gid_Module_Prg_Math_Bin pkg/libreoffice-math
374 create_package_directory gid_Module_Prg_Draw_Bin pkg/libreoffice-draw
375 create_package_directory gid_Module_Prg_Wrt_Bin pkg/libreoffice-writer
376 create_package_directory gid_Module_Prg_Impress_Bin pkg/libreoffice-impress
377 create_package_directory gid_Module_Prg_Base_Bin pkg/libreoffice-base
378 create_package_directory gid_Module_Brand_Prg_Calc pkg/libreoffice-calc
379 create_package_directory gid_Module_Brand_Prg_Math pkg/libreoffice-math
380 create_package_directory gid_Module_Brand_Prg_Draw pkg/libreoffice-draw
381 create_package_directory gid_Module_Brand_Prg_Wrt pkg/libreoffice-writer
382 create_package_directory gid_Module_Brand_Prg_Impress pkg/libreoffice-impress
383 create_package_directory gid_Module_Brand_Prg_Base pkg/libreoffice-base
384 create_package_directory gid_Module_Pyuno pkg/python-uno
385 create_package_directory gid_Module_Optional_Gnome pkg/libreoffice-gnome
387 create_package_directory gid_Module_Root_Files_2 pkg/libreoffice-common
388 create_package_directory gid_Module_Root_Files_3 pkg/libreoffice-common
389 create_package_directory gid_Module_Root_Files_4 pkg/libreoffice-common
390 create_package_directory gid_Module_Root_Files_5 pkg/libreoffice-common
391 create_package_directory gid_Module_Root_Files_6 pkg/libreoffice-common
392 create_package_directory gid_Module_Root_Files_7 pkg/libreoffice-common
393 if [ -e gid_Module_Optional_Pymailmerge ]; then
394 create_package_directory gid_Module_Optional_Pymailmerge pkg/libreoffice-emailmerge
395 else # post m26
396 mkdir -p pkg/libreoffice-emailmerge/$INSTALLDIR/program
397 mv pkg/libreoffice-common/$INSTALLDIR/program/mailmerge.py \
398 pkg/libreoffice-emailmerge/$INSTALLDIR/program/mailmerge.py
400 create_package_directory gid_Module_Optional_OGLTrans pkg/libreoffice-ogltrans
402 create_package_directory gid_Module_Root_SDK pkg/libreoffice-dev
404 for l in `echo $WITH_LANG_LIST`; do
405 for p in Impress Draw Math Calc Base Writer; do
406 create_package_directory gid_Module_Langpack_${p}_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
407 done
408 create_package_directory gid_Module_Langpack_Basis_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
409 create_package_directory gid_Module_Langpack_Brand_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
410 create_package_directory gid_Module_Langpack_Resource_`echo $l | sed -e s/-/_/g` pkg/libreoffice-l10n-$l
411 create_package_directory gid_Module_Helppack_Help_`echo $l | sed -e s/-/_/g` pkg/libreoffice-help-$l
413 # some help files are in _Langpack_{Writer,Impress,...}_<lang>
414 # move them from -l10n to -help
415 if [ "$l" = "en-US" ]; then d=en; else d=$l; fi
416 mv pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d/* \
417 pkg/libreoffice-help-$l/$INSTALLDIR/help/$d && \
418 rmdir pkg/libreoffice-l10n-$l/$INSTALLDIR/help/$d
419 done
421 # move_wrappers <directory_name> <name> [...]
422 move_wrappers()
424 directory=$1
425 shift
426 mkdir -m755 -p "$directory"/usr/bin
427 while test -n "$1"; do
428 mv usr/*bin/"$1$BINSUFFIX" "$directory"/usr/bin
429 shift
430 done
432 move_wrappers pkg/libreoffice-common soffice unopkg
433 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
434 move_wrappers pkg/libreoffice-common ooffice oofromtemplate
435 move_wrappers pkg/libreoffice-base oobase
436 move_wrappers pkg/libreoffice-writer oowriter ooweb
437 move_wrappers pkg/libreoffice-calc oocalc
438 move_wrappers pkg/libreoffice-impress ooimpress
439 move_wrappers pkg/libreoffice-math oomath
440 move_wrappers pkg/libreoffice-draw oodraw
442 move_wrappers pkg/libreoffice-common libreoffice lofromtemplate
443 move_wrappers pkg/libreoffice-base lobase
444 move_wrappers pkg/libreoffice-writer lowriter loweb
445 move_wrappers pkg/libreoffice-calc localc
446 move_wrappers pkg/libreoffice-impress loimpress
447 move_wrappers pkg/libreoffice-math lomath
448 move_wrappers pkg/libreoffice-draw lodraw
450 # Move all libraries, binaries, *.rdb from -common to -core
451 for d in $INSTALLDIR/program $INSTALLDIR/program; do \
452 if [ ! -d $DESTDIR/pkg/libreoffice-core/$d ]; then \
453 mkdir -p $DESTDIR/pkg/libreoffice-core/$d; \
454 fi &&
455 ( cd pkg/libreoffice-common/$d
456 find -maxdepth 1 \
457 -regex '\./\(.*\.so.*\|.*\.bin\|pagein\|msfontextract\|.*\.rdb\|javaldx\|uri-encode\)' \
458 -exec mv {} $DESTDIR/pkg/libreoffice-core/$d \;
459 ); \
460 done
462 # install additional ooo-build scripts & misc stuff
463 mkdir -p pkg/libreoffice-common/usr/share/man/man1
464 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
465 mv usr/share/man/man1/openoffice$BINSUFFIX.1 \
466 pkg/libreoffice-common/usr/share/man/man1
468 mv usr/share/man/man1/libreoffice$BINSUFFIX.1 \
469 pkg/libreoffice-common/usr/share/man/man1
470 mkdir -p pkg/libreoffice-common/etc/bash_completion.d
471 if test "$COMPAT_OOWRAPPERS" = "YES" ; then
472 mv etc/bash_completion.d/ooffice$BINSUFFIX.sh \
473 pkg/libreoffice-common/etc/bash_completion.d
475 mv etc/bash_completion.d/libreoffice$BINSUFFIX.sh \
476 pkg/libreoffice-common/etc/bash_completion.d
477 mv .$INSTALLDIR/program/java-set-classpath \
478 pkg/libreoffice-common/$INSTALLDIR/program
479 if echo $WITH_LANG_LIST | grep -q en-US; then
480 for i in forms/resume.ott officorr/project-proposal.ott; do \
481 mkdir -p pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/`dirname $i`; \
482 mv .$INSTALLDIR/share/template/en-US/$i \
483 pkg/libreoffice-common/$INSTALLDIR/share/template/en-US/$i; \
484 done; \
486 # Warn for any remaining files
487 find . -path './pkg' -prune -o -not -name 'gid_Module_*' -not -type d -exec echo "File not packaged: {}" \;
490 # mark the config files
491 RPM_CONFIG_FILE_TAGS=
492 if test "$OOO_VENDOR" = "SUSE" -o "$OOO_VENDOR" = "RedHat"; then
493 RPM_CONFIG_FILE_TAGS="%config"
494 elif test "$OOO_VENDOR" = "PLD" ; then
495 RPM_CONFIG_FILE_TAGS="%config(noreplace) %verify(not md5 size mtime)"
498 if test "z$RPM_CONFIG_FILE_TAGS" != "z" ; then
499 cd $FILELISTSDIR
500 perl -pi -e "s|^($INSTALLDIR/help/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
501 -e "s|^($INSTALLDIR/help/.*\.css)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
502 -e "s|^($INSTALLDIR/program/[a-zA-Z0-9_\.]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
503 -e "s|^($INSTALLDIR/program/.*\.xsl)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
504 -e "s|^($INSTALLDIR/share/config/[a-zA-Z0-9]*rc)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
505 -e "s|^($INSTALLDIR/share/dict/ooo/.*\.lst)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
506 -e "s|^($INSTALLDIR/share/psprint/.*\.conf)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
507 -e "s|^($INSTALLDIR/share/registry/.*\.xcu)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
508 -e "s|^($INSTALLDIR/share/registry/.*\.properties)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
509 -e "s|^($INSTALLDIR/share/registry/.*\.xcs)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
510 -e "s|^($INSTALLDIR/user/config/.*\.so.)\$|$RPM_CONFIG_FILE_TAGS \\1|;" \
511 *_list.txt
514 mkdir -p $FILELISTSDIR/orig
515 mv -f $DESTDIR/gid_Module_* $FILELISTSDIR/orig