Blame Automation/Modules/Help/Texinfo/texinfo_updateOutputFilePdf.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# texinfo_updateOutputFilePdf.sh -- This function exports documentation
Alain Reguera Delgado 8f60cb
# manual to PDF format.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function texinfo_updateOutputFilePdf {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify texi2pdf package existence. If this package isn't
Alain Reguera Delgado 8f60cb
    # installed in the system, stop script execution with an error
Alain Reguera Delgado 8f60cb
    # message. texi2pdf isn't a package by itself but a program of
Alain Reguera Delgado 8f60cb
    # texinfo-tex package. So check the correct package.
Alain Reguera Delgado 8f60cb
    cli_checkFiles texinfo-tex --is-installed
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Output action message.
Alain Reguera Delgado 8f60cb
    cli_printMessage "${MANUAL_OUTPUT_BASEFILE}.pdf" --as-creating-line
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Update plaintext output directory.
Alain Reguera Delgado 8f60cb
    /usr/bin/texi2pdf --quiet \
Alain Reguera Delgado 8f60cb
        ${MANUAL_BASEFILE}.${MANUAL_EXTENSION} --output=${MANUAL_OUTPUT_BASEFILE}.pdf
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}