man5.sh 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #! /bin/sh
  2. # Copyright (C) 2009-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Make sure to extract the correct mansection from files in man_MANS.
  17. . test-init.sh
  18. cat >> configure.ac <<'END'
  19. AC_OUTPUT
  20. END
  21. cat > Makefile.am << 'END'
  22. man_MANS = foo-1.4.5/foo.2 foo-1.4.5/bar.3 baz-1.4.2
  23. notrans_man_MANS = foo-1.4.5/nfoo.2 foo-1.4.5/nbar.3 nbaz-1.4.2
  24. END
  25. mkdir foo-1.4.5
  26. : > foo-1.4.5/foo.2
  27. : > foo-1.4.5/nfoo.2
  28. : > foo-1.4.5/bar.3
  29. : > foo-1.4.5/nbar.3
  30. : > baz-1.4.2
  31. : > nbaz-1.4.2
  32. $ACLOCAL
  33. $AUTOCONF
  34. $AUTOMAKE
  35. cwd=$(pwd) || fatal_ "getting current working directory"
  36. # Let's play with $DESTDIR too, it shouldn't hurt.
  37. ./configure --mandir=/man
  38. $MAKE DESTDIR="$cwd/_inst" install
  39. test -f _inst/man/man2/foo.2
  40. test -f _inst/man/man2/nfoo.2
  41. test -f _inst/man/man2/baz-1.4.2
  42. test -f _inst/man/man2/nbaz-1.4.2
  43. test -f _inst/man/man3/bar.3
  44. test -f _inst/man/man3/nbar.3
  45. test ! -e _inst/man/man1
  46. test ! -e _inst/man/man4
  47. test ! -e _inst/man/man5
  48. $MAKE DESTDIR="$cwd/_inst" uninstall
  49. test ! -e _inst/man/man2/foo.2
  50. test ! -e _inst/man/man2/nfoo.2
  51. test ! -e _inst/man/man2/baz-1.4.2
  52. test ! -e _inst/man/man2/nbaz-1.4.2
  53. test ! -e _inst/man/man3/bar.3
  54. test ! -e _inst/man/man3/nbar.3
  55. :