Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
64dec765
Kaydet (Commit)
64dec765
authored
Nis 24, 2011
tarafından
Kalman Szalai - KAMI
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add copy and extract for extras and few extensions
üst
0410b1b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
0 deletions
+43
-0
download
download
+30
-0
set_soenv.in
set_soenv.in
+13
-0
No files found.
download
Dosyayı görüntüle @
64dec765
...
...
@@ -34,6 +34,18 @@ fi
# we want to clone if we are in the bootstrap git repo and clone does not exist yet
# we need to test for a .git in order not to clone after rsync if we are called in
# the inner autogen of the buid-repo based build
check_file
()
{
echo
"Looking for
$1
..."
if
test
-f
$1
;
then
echo
"ok"
else
echo
"missing required archive; run './download' again"
;
exit
1
;
fi
}
if
[
-d
.git
]
;
then
if
[
-z
"
$GIT_LINK_SRC
"
]
;
then
./g
-f
clone
...
...
@@ -276,6 +288,24 @@ if [ "$GUI" = "WNT" -a -n "$md5sum" ]; then
fi
fi
# OxygenOffice extras
echo
"Unpacking OxygenOffice extras ..."
for
pack
in
$OOOP_FONTS_PACK
$OOOP_GALLERY_PACK
$OOOP_SAMPLES_PACK
$OOOP_TEMPLATES_PACK
;
do
check_file
$TARFILE_LOCATION
/
$pack
echo
"Unpacking
$pack
..."
unzip
-o
-q
$TARFILE_LOCATION
/
$pack
-d
$SRC_ROOT
/extras/source
done
# Extensions copy
echo
"Copy extensions to their location ..."
for
pack
in
$BARCODE_EXTENSION_PACK
$DIAGRAM_EXTENSION_PACK
$VALIDATOR_EXTENSION_PACK
$WATCH_WINDOW_EXTENSION_PACK
$NUMBERTEXT_EXTENSION_PACK
$HUNART_EXTENSION_PACK
$TYPO_EXTENSION_PACK
$GOOGLE_DOCS_EXTENSION_PACK
;
do
check_file
$TARFILE_LOCATION
/
$pack
packfilename
=
`
echo
"
$pack
"
|
cut
--only-delimited
--delimiter
=
-
--fields
=
2 |
cut
--delimiter
=
_
--fields
=
1
`
echo
"Copy extension: '
$pack
' as '
$packfilename
.oxt' ..."
mkdir
-p
$SRC_ROOT
/extras/source/extensions/
||
exit
1
cp
$TARFILE_LOCATION
/
$pack
$SRC_ROOT
/extras/source/extensions/
$packfilename
.oxt
||
exit
1
done
[
-x
"post_download"
]
||
{
echo
"'post_download' script not found, run ./autogen.sh."
;
exit
1
;
}
./post_download
||
exit
1
...
...
set_soenv.in
Dosyayı görüntüle @
64dec765
...
...
@@ -1874,6 +1874,19 @@ ToFile( "MOZ_NSPR_CFLAGS", "@MOZ_NSPR_CFLAGS@", "e" );
ToFile
(
"MOZ_NSS_CFLAGS"
,
"@MOZ_NSS_CFLAGS@"
,
"e"
);
ToFile
(
"MOZ_NSS_LIBS"
,
"@MOZ_NSS_LIBS@"
,
"e"
);
ToFile
(
"MOZ_LDAP_CFLAGS"
,
"@MOZ_LDAP_CFLAGS@"
,
"e"
);
ToFile
(
"OOOP_GALLERY_PACK"
,
"@OOOP_GALLERY_PACK@"
,
"e"
);
ToFile
(
"OOOP_TEMPLATES_PACK"
,
"@OOOP_TEMPLATES_PACK@"
,
"e"
);
ToFile
(
"OOOP_FONTS_PACK"
,
"@OOOP_FONTS_PACK@"
,
"e"
);
ToFile
(
"OOOP_SAMPLES_PACK"
,
"@OOOP_SAMPLES_PACK@"
,
"e"
);
ToFile
(
"CT2N_EXTENSION_PACK"
,
"@CT2N_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"BARCODE_EXTENSION_PACK"
,
"@BARCODE_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"DIAGRAM_EXTENSION_PACK"
,
"@DIAGRAM_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"VALIDATOR_EXTENSION_PACK"
,
"@VALIDATOR_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"WATCH_WINDOW_EXTENSION_PACK"
,
"@WATCH_WINDOW_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"NUMBERTEXT_EXTENSION_PACK"
,
"@NUMBERTEXT_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"HUNART_EXTENSION_PACK"
,
"@HUNART_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"TYPO_EXTENSION_PACK"
,
"@TYPO_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"GOOGLE_DOCS_EXTENSION_PACK"
,
"@GOOGLE_DOCS_EXTENSION_PACK@"
,
"e"
);
ToFile
(
"WITH_FONTS"
,
"@WITH_FONTS@"
,
"e"
);
ToFile
(
"WITH_AGFA_MONOTYPE_FONTS"
,
"@WITH_AGFA_MONOTYPE_FONTS@"
,
"e"
);
ToFile
(
"WITHOUT_AFMS"
,
"@WITHOUT_AFMS@"
,
"e"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment