prepare_perl_module_files.sh 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. #! /bin/sh
  2. # $Id$
  3. # Regenerate lists of t/ files, used for make dist(check)
  4. # and the Perl modules.
  5. #
  6. # Copyright 2011, 2012, 2013, 2014, 2015 Free Software Foundation, Inc.
  7. #
  8. # This file is free software; as a special exception the author gives
  9. # unlimited permission to copy and/or distribute it, with or without
  10. # modifications, as long as this notice is preserved.
  11. #
  12. # This program is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
  14. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. #
  16. # Originally written by Patrice Dumas.
  17. set -e
  18. # to get a reproducible locales independent sort.
  19. LC_ALL=C; export LC_ALL
  20. # Regenerate files required for perl
  21. ./maintain/change_perl_modules_version.sh auto
  22. # This regenerate files in t/include_dir/
  23. make
  24. # regenerate the list of XSParagraph files
  25. sed 's;^;Texinfo/Convert/XSParagraph/;' < Texinfo/Convert/XSParagraph/MANIFEST > maintain/MANIFEST_XSParagraph_files
  26. PACKAGE=`grep '^PACKAGE = ' Makefile | sed 's/^PACKAGE = //'`
  27. if test z"$PACKAGE" = 'z' ; then
  28. exit 1
  29. fi
  30. # LocaleData are also generated through Makefile.docstr. Here we want
  31. # them to be generated by the Makefile in po*/ to test that it works.
  32. rm -rf LocaleData
  33. for dir in po po_document; do
  34. rm -rf $dir
  35. mkdir $dir
  36. cp maintain/Makefile_perl_po $dir/Makefile
  37. grep '^tp\/' ../$dir/POTFILES.in | sed -e 's/^tp/../' > $dir/POTFILES.in
  38. echo "# File automatically generated from texinfo files"
  39. echo "PACKAGE = $PACKAGE" > $dir/PACKAGE
  40. cat ../$dir/Makevars >> $dir/PACKAGE
  41. linguas_str=
  42. for lingua in `cat ../$dir/LINGUAS`; do
  43. linguas_str="$linguas_str $lingua"
  44. cp -p ../$dir/$lingua.po $dir
  45. done
  46. echo "LINGUAS = $linguas_str" >> $dir/PACKAGE
  47. (cd $dir && make all && make clean)
  48. done
  49. find LocaleData po_document po t/include_dir -type f | sort \
  50. > maintain/MANIFEST_generated_files
  51. make MANIFEST
  52. cp -p ../COPYING .
  53. sed 's/\(my \$hardcoded_version = \).*/\1 undef;/' texi2any.pl > texi2any
  54. chmod a+x texi2any
  55. touch -r texi2any.pl texi2any
  56. # We could imagine using an even more stripped down version, as
  57. # the default paths should be ok in a standalone module.
  58. cp -p Texinfo/ModulePath.pm.in Texinfo/ModulePath.pm