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
|
#!/bin/sh
#######################################################################
# dar - disk archive - a backup/restoration program
# Copyright (C) 2002-2025 Denis Corbin
#
# 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 2
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# to contact the author, see the AUTHOR file
#######################################################################
if [ ! -f AUTHORS ] ; then
echo "Script must be ran from the package root directory"
exit 1
fi
# if 'make' fails because of a lack of 'Makefile' in the po subdirectory
# you probably have to tune the following environment variable according
# to your system.
NLSPATH='/usr/share/locale/%L/LC_MESSAGES/%N.cat'
export NLSPATH
# if you can't figure out the problem and can avoid having
# translated messages do the following
#
# cp po/Makefile.sos po/Makefile
#
#
cp src/build/configure.ac .
cp src/build/Makefile.am .
libtoolize --automake || (echo "libtoolize failed" && exit 1)
gettextize --force || (echo "gettextize failed" && exit 1)
po/generate_POTFILES.in || (echo "generate_POTFILES.in failed" && exit 1)
aclocal -I m4 || (echo "aclocal failed" && exit 1)
autoconf || (echo "autoconf failed" && exit 1)
autoheader || (echo "autoheader failed" && exit 1)
automake --add-missing --gnu || (echo "automake failed" && exit 1)
cp src/build/ChangeLog . || (echo "cp failed" && exit 1)
chmod a-w configure.ac Makefile.am ChangeLog || (echo "chmod failed" && exit 1)
if [ ! -e mkinstalldirs ]; then
cp src/build/mkinstalldirs .
fi
|