diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2016-11-24 14:52:34 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-11-25 09:58:48 +0000 |
commit | cca657c8f2031ec88366c52f5e8e10c2e04129f9 (patch) | |
tree | a2273ed56080856d8494ba759b8ed0e435ebba99 /loolwsd-systemplate-setup | |
parent | 4432aba25b6ee68356e0ddfc724afb8373651945 (diff) |
Apply the pre-branch rename script to re-organize the source.
Diffstat (limited to 'loolwsd-systemplate-setup')
-rwxr-xr-x | loolwsd-systemplate-setup | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/loolwsd-systemplate-setup b/loolwsd-systemplate-setup new file mode 100755 index 000000000..0d30524ce --- /dev/null +++ b/loolwsd-systemplate-setup @@ -0,0 +1,97 @@ +#!/bin/bash + +test $# -eq 2 || { echo "Usage: $0 <chroot template directory for system libs to create> <LO installation directory>"; exit 1; } + +# No provision for spaces or other weird characters in pathnames. So sue me. + +CHROOT=$1 +INSTDIR=$2 +POCOLIBDIRS="/usr/local/lib /opt/poco/lib" + +test -d "$INSTDIR" || { echo "No such directory: $INSTDIR"; exit 1; } + +mkdir $CHROOT || exit 1 + +CHROOT=`cd $CHROOT && /bin/pwd` +INSTDIR=`cd $INSTDIR && /bin/pwd` + +cd / || exit 1 + +( +# Produce a list of file names, one per line, that will be copied +# into the template tree of system files for the chroot jails. + +# First essential files and shared objects +find etc/passwd etc/group etc/hosts \ + etc/resolv.conf \ + lib/ld-* lib64/ld-* \ + lib/libcap* lib64/libcap* lib/*-linux-gnu/libcap* \ + lib/libattr* lib/*-linux-gnu/libattr* \ + etc/ld.so.* \ + lib/libnss_* lib64/libnss_* lib/*-linux-gnu/libnss*\ + var/cache/fontconfig \ + etc/fonts \ + etc/localtime \ + usr/lib/locale/en_US.utf8 \ + usr/lib/locale/C.UTF-8 \ + usr/lib/locale/locale_archive \ + usr/share/zoneinfo/* \ + usr/share/liblangtag \ + usr/lib/libpng* usr/lib64/libpng* \ + -type f + +find etc/fonts \ + lib/ld-* lib64/ld-* \ + lib/libnss_* lib64/libnss_* lib/*-linux-gnu/libnss*\ + lib/libcap* lib64/libcap* lib/*-linux-gnu/libcap* \ + lib/libattr* lib/*-linux-gnu/libattr* \ + usr/lib/libpng* usr/lib64/libpng* \ + -type l + +# Go through the LO shared objects and check what system libraries +# they link to. +find $INSTDIR -name '*.so' -o -name '*.so.[0-9]*' | +while read file; do + ldd $file 2>/dev/null +done | +grep -v dynamic | cut -d " " -f 3 | grep -E '^(/lib|/usr)' | sort -u | sed -e 's,^/,,' + +# Poco libraries and their dependencies +find $POCOLIBDIRS -name '*Poco*.so' -o -name '*Poco*.so.[0-9]*' +find $POCOLIBDIRS /usr/lib64 -name '*Poco*.so' -o -name '*Poco*.so.[0-9]*' | +while read file; do + echo $file + ldd $file 2>/dev/null +done | +grep -v dynamic | cut -d " " -f 3 | grep -E '^(/lib|/usr)' | sort -u | sed -e 's,^/,,' +) | + +# Can't use -l because then symlinks won't be handled well enough. +# This will now copy the file a symlink points to, but whatever. +cpio -p -d -L $CHROOT + +mkdir -p $CHROOT/tmp +mkdir -p $CHROOT/usr/bin/ + +# /usr/share/fonts needs to be taken care of separately because the +# directory time stamps must be preserved for fontconfig to trust +# its cache. + +cd $CHROOT || exit 1 + +mkdir -p usr/share || exit 1 +cp -r -p -L /usr/share/fonts usr/share + +if [ -h usr/share/fonts/ghostscript ]; then + mkdir usr/share/ghostscript || exit 1 + cp -r -p -L /usr/share/ghostscript/fonts usr/share/ghostscript +fi + +# Debugging only hackery to avoid confusion. +if test "z$ENABLE_DEBUG" != "z" -a "z$HOME" != "z"; then + echo "Copying development users's fonts into systemplate" + mkdir -p $CHROOT/$HOME + test -d $HOME/.fonts && cp -r -p -L $HOME/.fonts $CHROOT/$HOME +fi + +exit 0 |