Codice: Seleziona tutto
bash-4.1# ./download_external_sources.sh
Setup:
Source: 'libreoffice-3.3.0.2'
Apply: '/tmp/buildpkgs/libreoffice/libreoffice-build-3.3.0.2/patches/dev300/apply'
Flags: ''
Suffix: ''
Dir: '/tmp/buildpkgs/libreoffice/libreoffice-build-3.3.0.2/build'
DestDir: ''
Path: '/tmp/buildpkgs/libreoffice/libreoffice-build-3.3.0.2/build/bin:/usr/local/sbin:/usr/local/bin:/sbin:/usr/sbin:/bin:/usr/bin:/tmp/buildpkgs/libreoffice/libreoffice-build-3.3.0.2/bin'
Prefix: '/usr'
Mandir: '/usr/man'
Docdir: '/usr/doc/libreoffice-3.3.0.2'
Sysconf: '/etc'
OOInBase: '/usr/lib/libreoffice'
OOInstall: '/usr/lib/libreoffice'
OODestDir: ''
Config: --disable-binfilter --disable-crashdump --with-lang="" --disable-fetch-external --with-vba-package-format=builtin --disable-epm --with-openldap --with-build-version="tag libreoffice-3.3.0.2" --without-fonts --with-system-jpeg --with-system-libxml --with-system-mozilla --with-system-openssl --with-system-python --with-system-stdlibs --with-system-zlib --with-system-poppler --with-unix-wrapper=ooffice --enable-evolution2 --enable-dbus --with-alloc=system --enable-cairo=yes --enable-gtk --enable-kde --enable-kde4 --disable-epm --disable-gconf --disable-gnome-vfs --disable-kde --disable-mono --disable-pam --disable-pam-link --disable-post-install-scripts --enable-binfilter --enable-cairo --enable-crypt-link --enable-dbus --enable-gstreamer --enable-hids --enable-libart --enable-libsn --enable-lockdown --enable-minimizer --enable-odk --enable-ogltrans --enable-opengl --enable-openxml --enable-pdfimport --enable-presenter-console --enable-randr-link --enable-report-builder --enable-systray --enable-wiki-publisher --enable-xrender-link --with-ant-home=/usr/share/ant --with-arch=x86 --with-dict=ALL --with-extension-integration --with-external-dict-dir=/usr/share/hunspell --with-external-hyph-dir=/usr/share/hyphen --with-external-thes-dir=/usr/share/mythes --with-fonts --with-jdk-home=$JAVA_HOME --with-openclipart=/usr/share/openclipart --with-openldap --with-system-boost --with-system-cairo --with-system-curl --with-system-db --with-system-dicts --with-system-expat --with-system-jpeg --with-system-libxml --with-system-libxslt --with-system-mesa-headers --with-system-mozilla=xulrunner --with-system-neon --with-system-openssl --with-system-poppler --with-system-python --with-system-redland --with-system-stdlibs --with-system-zlib --with-vba-package-format=builtin --with-vendor="Slacky.eu" --with-x --without-myspell-dicts --without-junit --without-system-icu --without-system-jars --without-unix-wrapper '--prefix=/usr' '--libdir=/usr/lib' '--sysconfdir=/etc' '--localstatedir=/var' '--mandir=/usr/man' '--docdir=/usr/doc/libreoffice-3.3.0.2' '--with-arch-flags=-O2 -march=i486 -mtune=i686 -DGL_GLEXT_PROTOTYPES' '--with-distro=Slackware' '--with-docdir=/usr/doc/libreoffice-3.3.0.2' '--with-installed-ooo-dirname=libreoffice' '--with-mirror=http://download.go-oo.org' '--without-binsuffix' '--without-git' '--enable-kde4' '--build=i486-slackware-linux' 'build_alias=i486-slackware-linux' 'CFLAGS=-O2 -march=i486 -mtune=i686 -DGL_GLEXT_PROTOTYPES' 'LDFLAGS='
ccache: no
icecream: no
distcc: no
--2010-12-27 19:11:18-- http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=LIBREOFFICE_3_3_0_2
Resolving cgit.freedesktop.org (cgit.freedesktop.org)... 131.252.210.176
Connecting to cgit.freedesktop.org (cgit.freedesktop.org)|131.252.210.176|:80... connected.
HTTP request sent, awaiting response... 404 Not found
2010-12-27 19:11:19 ERROR 404: Not found.
--2010-12-27 19:11:19-- http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=LIBREOFFICE_3_3_0_2
Resolving cgit.freedesktop.org (cgit.freedesktop.org)... 131.252.210.176
Connecting to cgit.freedesktop.org (cgit.freedesktop.org)|131.252.210.176|:80... connected.
HTTP request sent, awaiting response... 404 Not found
2010-12-27 19:11:20 ERROR 404: Not found.
./download_external_sources.sh: line 17: ./fetch_tarballs.sh: Permission denied
rmdir: failed to remove `/tmp/tmp.Y0qh9Y': Directory not emptyCodice: Seleziona tutto
http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=LIBREOFFICE_3_3_0_2
http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=LIBREOFFICE_3_3_0_2Codice: Seleziona tutto
http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=libreoffice-3.3.0.2
http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=libreoffice-3.3.0.2Codice: Seleziona tutto
#!/bin/sh
. ./bin/setup
export TARFILE_LOCATION
export CLONEDIR
if test -e $CLONEDIR/bootstrap/fetch_tarballs.sh -a -e $CLONEDIR/bootstrap/ooo.lst; then
$CLONEDIR/bootstrap/fetch_tarballs.sh $CLONEDIR/bootstrap/ooo.lst
else
GIT_TAG=`echo $OOO_SOURCEDIRNAME | tr "a-z.-" "A-Z__"`
tmp=`mktemp -q -d`
cd $tmp
wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/fetch_tarballs.sh?id=$GIT_TAG -O fetch_tarballs.sh && chmod 755 fetch_tarballs.sh
wget http://cgit.freedesktop.org/libreoffice/bootstrap/plain/ooo.lst?id=$GIT_TAG -O ooo.lst
./fetch_tarballs.sh ooo.lst && rm -f fetch_tarballs.sh ooo.lst
cd ..
rmdir $tmp
fiCodice: Seleziona tutto
GIT_TAG=`echo $OOO_SOURCEDIRNAME | tr "a-z.-" "A-Z__"`Codice: Seleziona tutto
GIT_TAG=`echo $OOO_SOURCEDIRNAME`Esistono tool appositi?
