Blame Automation/Scripts/tcar_getLocalizationDir.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 615395
######################################################################
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado eb3010
#   tcar_getLocalizationDir.sh -- This function standardizes the way
Alain Reguera Delgado 615395
#   localization paths are created. The first argument of this
Alain Reguera Delgado 615395
#   function must be a path pointing a directory inside the
Alain Reguera Delgado 615395
#   repository.
Alain Reguera Delgado 615395
#
Alain Reguera Delgado 615395
#   Written by: 
Alain Reguera Delgado 615395
#   * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
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 615395
# the Free Software Foundation; either version 2 of the License, or
Alain Reguera Delgado 615395
# (at 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 615395
######################################################################
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado eb3010
function tcar_getLocalizationDir {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Sanitate non-option arguments to be sure they match the
Alain Reguera Delgado 8f60cb
    # directory conventions established by centos-art.sh script
Alain Reguera Delgado 8f60cb
    # against source directory locations in the working copy.
Alain Reguera Delgado eb3010
    LOCATION=$(tcar_checkRepoDirSource "${1}")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # In case the location specified would be a file, remove the file
Alain Reguera Delgado 8f60cb
    # part from the path so only its parent directory remains.
Alain Reguera Delgado 8f60cb
    if [[ -f ${LOCATION} ]];then
Alain Reguera Delgado 8f60cb
        LOCATION=$(dirname ${LOCATION})
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Make path transformation.
Alain Reguera Delgado 8f60cb
    case "${2}" in
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        '--no-lang' )
Alain Reguera Delgado 8f60cb
            LOCATION=$(echo "${LOCATION}" \
Alain Reguera Delgado 8f60cb
                | sed -r -e "s!(Identity|Scripts|Documentation)!Locales/\1!")
Alain Reguera Delgado 8f60cb
            ;;
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        * )
Alain Reguera Delgado 8f60cb
            LOCATION=$(echo "${LOCATION}" \
Alain Reguera Delgado ddf7d2
                | sed -r -e "s!(Identity|Scripts|Documentation)!Locales/\1!")/${TCAR_SCRIPT_LANG_LC}
Alain Reguera Delgado 8f60cb
            ;;
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    esac 
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Output transformed path.
Alain Reguera Delgado 8f60cb
    echo "${LOCATION}"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}