OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.8 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../epplets16/e16conf-path.patch
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- T2-COPYRIGHT-NOTE-END ---
  16. --- epplets-0.7/api/epplet.c.orig 2006-01-08 21:34:51.000000000 +0100
  17. +++ epplets-0.7/api/epplet.c 2006-01-08 21:36:40.000000000 +0100
  18. @@ -5497,7 +5497,7 @@
  19. pid_t pid;
  20. /* make sure basic dir exists */
  21. - Esnprintf(s, sizeof(s), "%s/.enlightenment/epplet_config", getenv("HOME"));
  22. + Esnprintf(s, sizeof(s), "%s/.e16/epplet_config", getenv("HOME"));
  23. if (stat(s, &st) < 0)
  24. {
  25. if (mkdir(s, S_IRWXU) < 0)
  26. @@ -5514,7 +5514,7 @@
  27. }
  28. /* make sure this epplets config dir exists */
  29. - Esnprintf(s, sizeof(s), "%s/.enlightenment/epplet_config/%s",
  30. + Esnprintf(s, sizeof(s), "%s/.e16/epplet_config/%s",
  31. getenv("HOME"), name);
  32. conf_dir = strdup(s);
  33. if (stat(s, &st) < 0)
  34. --- epplets-0.7/epplets/E-Slides.c.orig 2006-01-08 21:35:37.000000000 +0100
  35. +++ epplets-0.7/epplets/E-Slides.c 2006-01-08 21:36:58.000000000 +0100
  36. @@ -569,7 +569,7 @@
  37. path = Epplet_query_config("image_dir");
  38. if (path == NULL) {
  39. - Esnprintf(buff, sizeof(buff), "%s/.enlightenment/backgrounds", getenv("HOME"));
  40. + Esnprintf(buff, sizeof(buff), "%s/.e16/backgrounds", getenv("HOME"));
  41. path = strdup(buff);
  42. Epplet_add_config("image_dir", buff);
  43. } else {