1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/graphics/xfpovray/files/patch-ab
Thomas Gellekum 0616cc6865 Fix building.
Change @s to %%s, which don't have to be protected for perl5.
2001-04-11 11:53:08 +00:00

29 lines
720 B
Plaintext

--- src/xfpovray.h.orig Wed Aug 20 05:10:37 1997
+++ src/xfpovray.h Mon Nov 24 18:28:57 1997
@@ -16,14 +16,14 @@
/*
** Command to invoke POV-Ray
*/
-#define POV_COMMAND "/usr/local/bin/povray"
+#define POV_COMMAND "%%LOCALBASE%%/bin/povray"
/*
** System or default library path. You can add up to 4 more on
** the widget for a total of 5, even though POV-Ray supports more.
*/
-#define POV_LIB_PATH "/usr/local/include/povray"
+#define POV_LIB_PATH "%%LOCALBASE%%/lib/povray3/include"
/*
@@ -47,7 +47,7 @@
** Editor command. If you use a console editor like vi, execute the
** editor in an xterm, e.g., xterm -e vi
*/
-#define POV_EDITOR "nedit"
+#define POV_EDITOR "xterm -e vi"
/*