install-info.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * install-info.c - transitional ginstall-info wrapper
  3. *
  4. * Copyright © 2009 Raphaël Hertzog <hertzog@debian.org>
  5. *
  6. * This is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <config.h>
  20. #include <errno.h>
  21. #include <string.h>
  22. #include <unistd.h>
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #define SELF "/usr/sbin/install-info"
  26. #define WRAPPED "/usr/bin/install-info"
  27. #if HAVE_C99
  28. #define warn(...) fprintf(stderr, "install-info: warning: " __VA_ARGS__)
  29. #define error(...) fprintf(stderr, "install-info: error: " __VA_ARGS__)
  30. #else
  31. #define warn(msg...) fprintf(stderr, "install-info: warning: " msg)
  32. #define error(msg...) fprintf(stderr, "install-info: error: " msg)
  33. #endif
  34. int
  35. main(int argc, char **argv)
  36. {
  37. if (strcmp(argv[0], SELF) == 0) {
  38. warn("don't call programs like install-info with an absolute path,\n");
  39. warn("%s provided by dpkg is deprecated and will go away soon;\n",
  40. SELF);
  41. warn("its replacement lives in /usr/bin/.\n");
  42. }
  43. execv(WRAPPED, argv);
  44. if (errno == ENOENT) {
  45. if (getenv("DPKG_RUNNING_VERSION") != NULL) {
  46. const char *pkg;
  47. pkg = getenv("DPKG_MAINTSCRIPT_PACKAGE");
  48. warn("maintainer scripts should not call install-info anymore,\n");
  49. warn("this is handled now by a dpkg trigger provided by the\n");
  50. warn("install-info package; package %s should be updated.\n",
  51. pkg);
  52. } else {
  53. warn("nothing done since %s doesn't exist,\n", WRAPPED);
  54. warn("you might want to install an info-browser package.\n");
  55. }
  56. } else {
  57. error("can't execute %s: %s\n", WRAPPED, strerror(errno));
  58. return 1;
  59. }
  60. return 0;
  61. }