trigger 985 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/bin/sh
  2. # Test whether the current package is a KDE package.
  3. # NLS nuisances: Letter ranges are different in the Estonian locale.
  4. LC_ALL=C
  5. while true; do
  6. configfiles=
  7. if test -f configure.in; then
  8. configfiles="$configfiles configure.in"
  9. fi
  10. if test -f configure.ac; then
  11. configfiles="$configfiles configure.ac"
  12. fi
  13. if test -n "$configfiles"; then
  14. if grep '^KDE_' $configfiles >/dev/null 2>&1 || \
  15. grep '^AC_PATH_KDE' $configfiles >/dev/null 2>&1 || \
  16. grep '^AM_KDE_WITH_NLS' $configfiles >/dev/null 2>&1 ; then
  17. exit 0
  18. fi
  19. exit 1
  20. fi
  21. dir=`basename \`pwd\``
  22. case "$dir" in
  23. i18n)
  24. # This directory name, used in GNU make, is not the top level directory.
  25. ;;
  26. *[A-Za-z]*[0-9]*)
  27. # Reached the top level directory.
  28. exit 1
  29. esac
  30. # Go to parent directory
  31. last=`/bin/pwd`
  32. cd ..
  33. curr=`/bin/pwd`
  34. if test "$last" = "$curr"; then
  35. # Oops, didn't find the top level directory.
  36. exit 1
  37. fi
  38. done