1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
|
#!/bin/bash
#
# Authors:
# Pavel Březina <pbrezina@redhat.com>
#
# Copyright (C) 2018 Red Hat
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# Translate and build manual pages.
#
# Usage: manpages-build.sh prefix exec_prefix
#
prefix=$1
exec_prefix=$2
STAMPFILE="@abs_top_builddir@/src/man/build.stamp"
SCRIPTFILE="@abs_top_builddir@/src/man/build.sh"
# Get last modification time of a file.
# Usage: last-modification-time FILE
last-modification-time() {
local MOD=`stat -c %Y "$1" 2> /dev/null`
if [ $? -ne 0 ] || [ -z $MOD ]; then
echo 0
return 0
fi
echo $MOD
return 0
}
# Print current configuration.
# Usage: print-configuration
print-configuration() {
echo $prefix
echo $exec_prefix
}
# Test if configuration changed.
# Return: 0 if yes, 1 otherwise.
# Usage: configuration-changed
configuration-changed() {
local TIME_STAMP=`last-modification-time "$STAMPFILE"`
local TIME_BUILD=`last-modification-time "$SCRIPTFILE"`
if [ ! -f "$STAMPFILE" ]; then
return 0
fi
if [ $TIME_STAMP -lt $TIME_BUILD ]; then
return 0
fi
if [ "x`cat "$STAMPFILE"`" != "x`print-configuration`" ]; then
return 0
fi
return 1
}
# Check if manual page needs new translation.
# Return: 0 if yes, 1 otherwise.
# Usage: need-translation PATH_SOURCE PATH_PO PATH_TRANSLATION
need-translation() {
local PATH_SOURCE="$1"
local PATH_PO="$2"
local PATH_TRANSLATION="$3"
local TIME_SOURCE=`last-modification-time "$PATH_SOURCE"`
local TIME_PO=`last-modification-time "$PATH_PO"`
local TIME_TRANSLATION=`last-modification-time "$PATH_TRANSLATION"`
if configuration-changed; then
return 0
fi
# Translation does not yet exist.
if [ ! -f "$PATH_TRANSLATION" ] && [ -f "$PATH_PO" ]; then
return 0
fi
# Translation is outdated.
if [ $TIME_TRANSLATION -lt $TIME_PO ]; then
return 0
fi
# Source file is updated.
if [ $TIME_TRANSLATION -lt $TIME_SOURCE ]; then
return 0
fi
return 1
}
# Check if manual page needs new compilation.
# Return: 0 if yes, 1 otherwise.
# Usage: need-compilation PATH_SOURCE PATH_DEST
need-compilation() {
local PATH_SOURCE="$1"
local PATH_DEST="$2"
local TIME_SOURCE=`last-modification-time "$PATH_SOURCE"`
local TIME_DEST=`last-modification-time "$PATH_DEST"`
if configuration-changed; then
return 0
fi
# Build does not yet exist.
if [ ! -f "$PATH_DEST" ] && [ -f "$PATH_SOURCE" ]; then
return 0
fi
# Build is outdated.
if [ $TIME_DEST -lt $TIME_SOURCE ]; then
return 0
fi
return 1
}
# Find files in directories.
# Usage: search-dirs PATTERN DIRECTORIES
search-dirs() {
local PATTERN=$1
shift 1
find $@ -type f -name "$PATTERN" -printf '%d\t%p\n' 2> /dev/null \
| sort -nk1 | cut -f2-
}
# Find asciidoc sources for manual pages.
# Usage: manpages-find
manpages-find() {
search-dirs "*.adoc" "@abs_top_srcdir@/src/man" "@abs_top_builddir@/src/man"
}
# Find asciidoc translation sources for manual pages.
# Usage: manpages-find-translations
manpages-find-translations() {
search-dirs "*.po" "@abs_top_srcdir@/src/man/po"
}
# Translate ascii doc files with po table
# - source man pages are found in: src/man, name: name.section.adoc
# - translations are found in: src/man/po, name: manpage.language.po
# - result is stored in: src/man/translation/$language/name.section.adoc
#
# Usage: manpages-translate
manpages-translate() {
local DIR_MANS="@abs_top_srcdir@/src/man"
local DIR_TRANS="@abs_top_builddir@/src/man/translations"
for pofilepath in `manpages-find-translations`; do
local pofilename=`basename $pofilepath`
local adoc=`echo $pofilename | sed -E 's/(.*)\.adoc\.[^.]+\.po/\1.adoc/'`
local lang=`echo $pofilename | sed -E 's/.*\.adoc\.([^.]+)\.po/\1/'`
local source="$DIR_MANS/$adoc"
local dest="$DIR_TRANS/$lang/$adoc"
if ! need-translation "$source" "$pofilepath" "$dest"
then
continue
fi
echo "Translating $source to $lang"
@PO4A_TRANSLATE@ -f asciidoc \
--master "$source" \
--po "$pofilepath" \
--localized "$dest" \
--keep 70 > /dev/null
if [ $? -ne 0 ]; then
echo "Unable to translate manual page: $adoc, $pofilename"
return 1
fi
done
return 0
}
# Compile ascii doc into manual page format.
# Usage: manpages-compile SOURCE [additional a2x parameters]
manpages-compile() {
local FILE=$1
local DIR=`dirname $FILE`
local MAN=`basename $FILE | sed -E 's/(.*)\.adoc/\1/'`
local LOG="@abs_top_builddir@/translations.log"
if ! need-compilation "$FILE" "$DIR/$MAN"
then
return 0
fi
shift 1
echo "Building manpage: $FILE"
mkdir -p "$DIR"
@A2X@ -D "$DIR" --doctype manpage --format manpage "$FILE" $*
if [ $? -ne 0 ]; then
# Repeat with increased verbosity and save to log
echo ">>> Unable to compile translation \"$FILE\":" &>> $LOG
echo "@A2X@ -D \"$DIR\" --doctype manpage --format manpage \"$FILE\" $* -vv" &>> $LOG
@A2X@ -D "$DIR" --doctype manpage --format manpage "$FILE" $* -vv &>> $LOG
fi
}
ATTR=""
ATTR+=" -a sysconfdir=\"@sysconfdir@\""
ATTR+=" -a AUTHSELECT_CONFIG_DIR=\"@AUTHSELECT_CONFIG_DIR@\""
ATTR+=" -a AUTHSELECT_CUSTOM_DIR=\"@AUTHSELECT_CUSTOM_DIR@\""
ATTR+=" -a AUTHSELECT_DCONF_BIN=\"@AUTHSELECT_DCONF_BIN@\""
ATTR+=" -a AUTHSELECT_DCONF_DIR=\"@AUTHSELECT_DCONF_DIR@\""
ATTR+=" -a AUTHSELECT_DCONF_FILE=\"@AUTHSELECT_DCONF_FILE@\""
ATTR+=" -a AUTHSELECT_NSSWITCH_CONF=\"@AUTHSELECT_NSSWITCH_CONF@\""
ATTR+=" -a AUTHSELECT_PAM_DIR=\"@AUTHSELECT_PAM_DIR@\""
ATTR+=" -a AUTHSELECT_PROFILE_DIR=\"@AUTHSELECT_PROFILE_DIR@/default\""
ATTR+=" -a AUTHSELECT_VENDOR_DIR=\"@AUTHSELECT_PROFILE_DIR@/vendor\""
ATTR+=" -a AUTHSELECT_BACKUP_DIR=\"@AUTHSELECT_BACKUP_DIR@\""
ATTR+=" -a WITH_NIS_PROFILE=\"@WITH_NIS_PROFILE@\""
manpages-translate
rm "@abs_top_builddir@/translations.log" &> /dev/null
for ADOC in `manpages-find` ; do \
manpages-compile $ADOC $ATTR
done
# Create a timestamp file and remember prefix variables so we can use it next
# time to determine whether the manual pages require rebuild or no.
print-configuration > $STAMPFILE
|